ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
23 lines
414 B
ArmAsm
23 lines
414 B
ArmAsm
.text
|
|
.globl _start, foo
|
|
.type _start,@function
|
|
_start:
|
|
pushl %ebp
|
|
movl %esp, %ebp
|
|
pushl %ebx
|
|
call 1f
|
|
1: popl %ebx
|
|
addl $_GLOBAL_OFFSET_TABLE_+[.-1b], %ebx
|
|
movl _start@GOT(%ebx), %eax
|
|
movl (%eax), %eax
|
|
call foo@PLT
|
|
movl (%esp), %ebx
|
|
leave
|
|
foo: ret
|
|
.data
|
|
.long _start
|
|
.section "__libc_subfreeres", "aw", @progbits
|
|
.long _start
|
|
.section "__libc_atexit", "aw", @progbits
|
|
.long _start
|