1 OUTPUT_FORMAT(elf64-powerpc)
2 OUTPUT_ARCH(powerpc:common64)
4 /* Initial load address
6 BASE_ADDR = 0xfff00000;
8 /* As NVRAM is at 0xfff04000, the .text needs to be after that
10 TEXT_ADDR = 0xfff08000;
12 /* Hard reset vector address
14 HRESET_ADDR = 0xfffffffc;
16 CSTACK_SIZE = 32768; /* client stack size */
22 _start = BASE_ADDR + 0x0100;
23 .text.vectors ALIGN(4096): {
34 .rodata ALIGN(4096): {
69 .romentry : { *(.romentry) }
74 /* We discard .note sections other than .note.ELFBoot,
75 * because some versions of GCC generates useless ones. */
77 /DISCARD/ : { *(.comment*) *(.note.*) }