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.
13 lines
342 B
Raku
13 lines
342 B
Raku
OUTPUT_ARCH(i386)
|
|
PHDRS {
|
|
text PT_LOAD FLAGS(5); /* R_E */
|
|
}
|
|
SECTIONS
|
|
{
|
|
. = 0xC0000000 + ((0x100000 + (0x100000 - 1)) & ~(0x100000 - 1));
|
|
.bar : AT(ADDR(.bar) - 0xC0000000) { *(.bar) } :text
|
|
.bss : AT(ADDR(.bss) - 0xC0000000) { *(.bss) }
|
|
.foo 0 : AT(ADDR(.bss) + SIZEOF(.bss) - 0xC0000000) { *(.foo) } :text
|
|
/DISCARD/ : { *(*) }
|
|
}
|