annoying, coldboot.bin getting too big to fit into 0x8000 SRAM
[ls2.git] / coldboot / powerpc.lds.S
1 SECTIONS
2 {
3 . = BOOT_INIT_BASE;
4 _start = .;
5 .head : {
6 KEEP(*(.head))
7 }
8 . = ALIGN(0x1000);
9 .text : { *(.text) *(.text.*) *(.rodata) *(.rodata.*) }
10 . = ALIGN(0x10);
11 .data : { *(.data) *(.data.*) *(.got) *(.toc) }
12 . = ALIGN(0x10);
13 __bss_start = .;
14 .bss : {
15 *(.dynsbss)
16 *(.sbss)
17 *(.scommon)
18 *(.dynbss)
19 *(.bss)
20 *(.common)
21 *(.bss.*)
22 }
23 . = ALIGN(0x10);
24 __bss_end = .;
25 . = . + 0x5000;
26 __stack_top = .;
27 }