3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
9 /* Do we need any of these for elf?
13 /* Read-only sections, merged into text segment: */
15 .interp : { *(.interp) }
17 .dynsym : { *(.dynsym) }
18 .dynstr : { *(.dynstr) }
19 .rel.text : { *(.rel.text) }
20 .rela.text : { *(.rela.text) }
21 .rel.data : { *(.rel.data) }
22 .rela.data : { *(.rela.data) }
23 .rel.rodata : { *(.rel.rodata) }
24 .rela.rodata : { *(.rela.rodata) }
25 .rel.got : { *(.rel.got) }
26 .rela.got : { *(.rela.got) }
27 .rel.ctors : { *(.rel.ctors) }
28 .rela.ctors : { *(.rela.ctors) }
29 .rel.dtors : { *(.rel.dtors) }
30 .rela.dtors : { *(.rela.dtors) }
31 .rel.bss : { *(.rel.bss) }
32 .rela.bss : { *(.rela.bss) }
33 .rel.plt : { *(.rel.plt) }
34 .rela.plt : { *(.rela.plt) }
39 /* WARNING - the following is hand-optimized to fit within */
40 /* the sector layout of our flash chips! XXX FIXME XXX */
42 arch/powerpc/cpu/mpc8xx/start.o (.text)
43 arch/powerpc/lib/ppcstring.o (.text)
44 arch/powerpc/cpu/mpc8xx/interrupts.o (.text)
45 arch/powerpc/lib/time.o (.text)
46 arch/powerpc/lib/ticks.o (.text)
48 common/env_embedded.o(.text)
62 .fini : { *(.fini) } =0
63 .ctors : { *(.ctors) }
64 .dtors : { *(.dtors) }
66 /* Read-write section, merged into data segment: */
67 . = (. + 0x0FFF) & 0xFFFFF000;
69 PROVIDE (erotext = .);
78 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
79 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
96 KEEP(*(SORT(.u_boot_list*)));
100 __start___ex_table = .;
101 __ex_table : { *(__ex_table) }
102 __stop___ex_table = .;
106 .text.init : { *(.text.init) }
107 .data.init : { *(.data.init) }