Files
RedBear-OS/recipes/tools/gnu-binutils/source/ld/testsuite/ld-mips-elf/compressed-plt-1.ld
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
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.
2026-05-14 10:55:53 +01:00

41 lines
902 B
Plaintext

SECTIONS
{
. = 0x10000000;
.interp : { *(.interp) }
.reginfo : { *(.reginfo) }
.hash : { *(.hash) }
. = ALIGN(0x1000);
.dynsym : { *(.dynsym) }
. = ALIGN(0x1000);
.dynstr : { *(.dynstr) }
. = ALIGN(0x1000);
.dynamic : { *(.dynamic) }
. = ALIGN(0x1000);
.rel.dyn : { *(.rel.dyn) }
. = ALIGN(0x1000);
.rel.plt : { *(.rel.plt) }
. = 0x10100000;
.plt : { *(.plt) }
. = ALIGN(0x1000);
.MIPS.stubs : { *(.MIPS.stubs) }
. = ALIGN(0x1000);
.text.a : { *(.text.a) }
. = ALIGN(0x1000);
.text.b : { *(.text.b) }
. = ALIGN(0x1000);
.text.c : { *(.text.c) }
. = ALIGN(0x1000);
.text.d : { *(.text.d) }
. = 0x10200000;
.got.plt : { *(.got.plt) }
. = ALIGN(0x1000);
.data : { *(.data) }
. = ALIGN(0x1000);
_gp = . + 0x7ff0;
.got : { *(.got) }
. = ALIGN(0x1000);
.rld_map : { *(.rld_map) }
/DISCARD/ : { *(.MIPS.abiflags) *(.gnu.attributes) }
}