facf0c92e0
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.
16 lines
422 B
ArmAsm
16 lines
422 B
ArmAsm
/* Place bss_in_mbind0 in .mbind.bss section with sh_info == 0. */
|
|
.globl bss_in_mbind0
|
|
.section .mbind.bss,"adw",%nobits,0
|
|
.type bss_in_mbind0, %object
|
|
.size bss_in_mbind0, 1
|
|
bss_in_mbind0:
|
|
.zero 1
|
|
|
|
/* Place data_in_mbind3 in .mbind.data section with sh_info == 3. */
|
|
.globl data_in_mbind3
|
|
.section .mbind.data,"adw",%progbits,0x3
|
|
.type data_in_mbind3, %object
|
|
.size data_in_mbind3, 1
|
|
data_in_mbind3:
|
|
.byte 0
|