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.
18 lines
460 B
Raku
18 lines
460 B
Raku
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
.text : { *(.text) }
|
|
OVERLAY 0x1000 : AT (0x4000)
|
|
{
|
|
.text1 {*(.text1)}
|
|
.text2 {*(.text2)}
|
|
.silly-name1 { *(.silly-name1) } = 0
|
|
.silly-name2 { *(.silly-name2) } = 0
|
|
} = 0
|
|
.silly-name3 : { *(.silly-name3) } = 0
|
|
.silly-name4 : { *(.silly-name4) } = 0
|
|
/DISCARD/ : { *(*) }
|
|
ASSERT(ADDR(.text1)==ADDR(.text2), "overlay error")
|
|
ASSERT(ADDR(.silly-name1)==ADDR(.silly-name2), "silly overlay error")
|
|
}
|