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.
47 lines
832 B
Plaintext
47 lines
832 B
Plaintext
/* Script for ld testsuite */
|
|
OUTPUT_ARCH(msp430)
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
PROVIDE (_start = .);
|
|
. = ALIGN(2);
|
|
*(.text .stub .text.* .gnu.linkonce.t.* .text:*)
|
|
}
|
|
|
|
.rodata :
|
|
{
|
|
*(.rodata.* .rodata)
|
|
. = ALIGN(2);
|
|
PROVIDE (__preinit_array_start = .);
|
|
KEEP (*(SORT(.preinit_array.*)))
|
|
KEEP (*(.preinit_array))
|
|
PROVIDE (__preinit_array_end = .);
|
|
. = ALIGN(2);
|
|
PROVIDE (__init_array_start = .);
|
|
KEEP (*(SORT(.init_array.*)))
|
|
KEEP (*(.init_array))
|
|
PROVIDE (__init_array_end = .);
|
|
. = ALIGN(2);
|
|
. += 1;
|
|
PROVIDE (__fini_array_start = .);
|
|
KEEP (*(SORT(.fini_array.*)))
|
|
KEEP (*(.fini_array))
|
|
PROVIDE (__fini_array_end = .);
|
|
}
|
|
|
|
.data :
|
|
{
|
|
. = ALIGN(2);
|
|
*(.data.* .data)
|
|
}
|
|
|
|
.bss :
|
|
{
|
|
. = ALIGN(2);
|
|
*(.bss.* .bss)
|
|
}
|
|
}
|