1 OUTPUT_FORMAT("elf32-powerpc", "elf32-powerpc", "elf32-powerpc")
8 . = 0x200000 + SIZEOF_HEADERS;
12 /* text/read-only data */
13 .text : { *(.text .text.* .gnu.linkonce.t.*) }
15 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
16 .sdata2 : { *(.sdata2) }
19 /* align to the same offset in the next page (for performance reasons
20 (not that it really matters in the boot loader)) */
21 . = ALIGN(0x1000) + 0x1000 + (. & (0x1000 - 1));
24 .ctors : { *(.ctors) }
28 .data : { *(.data .gnu.linkonce.d.*) }
29 .data.rel.ro : { *(.data.rel.ro.local .data.rel.ro*) }
30 .got : { *(.got .got2) }
31 .sdata : { *(.sdata .sdata.* .gnu.linkonce.s.*) }
33 /* uninitialized data (in same segment as writable data) */
35 .sbss : { *(.sbss .sbss.* .gnu.linkonce.sb.*) }
37 *(.bss .bss.* .gnu.linkonce.b.*)
43 /* Strip unnecessary stuff */
44 /DISCARD/ : { *(.comment .note .eh_frame .dtors .debug_*) }