2 * (C) Copyright 2002-2004
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/ppc4xx/start.o (.text)
43 board/xes/xpedite1000/init.o (.text)
44 arch/powerpc/cpu/ppc4xx/kgdb.o (.text)
45 arch/powerpc/cpu/ppc4xx/traps.o (.text)
46 arch/powerpc/cpu/ppc4xx/interrupts.o (.text)
47 arch/powerpc/cpu/ppc4xx/4xx_uart.o (.text)
48 arch/powerpc/cpu/ppc4xx/cpu_init.o (.text)
49 arch/powerpc/cpu/ppc4xx/speed.o (.text)
50 common/dlmalloc.o (.text)
52 arch/powerpc/lib/extable.o (.text)
55 /* common/env_embedded.o(.text) */
65 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
67 .fini : { *(.fini) } =0
68 .ctors : { *(.ctors) }
69 .dtors : { *(.dtors) }
71 /* Read-write section, merged into data segment: */
72 . = (. + 0x0FFF) & 0xFFFFF000;
74 PROVIDE (erotext = .);
83 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
84 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
101 KEEP(*(SORT(.u_boot_list*)));
105 __start___ex_table = .;
106 __ex_table : { *(__ex_table) }
107 __stop___ex_table = .;
111 .text.init : { *(.text.init) }
112 .data.init : { *(.data.init) }