2 **=====================================================================
4 ** Copyright (C) 2000, 2001, 2002, 2003
5 ** The LEOX team <team@leox.org>, http://www.leox.org
7 ** LEOX.org is about the development of free hardware and software resources
10 ** Description: U-Boot port on the LEOX's ELPT860 CPU board
13 **=====================================================================
15 * SPDX-License-Identifier: GPL-2.0+
17 **=====================================================================
21 /* Do we need any of these for elf?
25 /* Read-only sections, merged into text segment: */
27 .interp : { *(.interp) }
29 .dynsym : { *(.dynsym) }
30 .dynstr : { *(.dynstr) }
31 .rel.text : { *(.rel.text) }
32 .rela.text : { *(.rela.text) }
33 .rel.data : { *(.rel.data) }
34 .rela.data : { *(.rela.data) }
35 .rel.rodata : { *(.rel.rodata) }
36 .rela.rodata : { *(.rela.rodata) }
37 .rel.got : { *(.rel.got) }
38 .rela.got : { *(.rela.got) }
39 .rel.ctors : { *(.rel.ctors) }
40 .rela.ctors : { *(.rela.ctors) }
41 .rel.dtors : { *(.rel.dtors) }
42 .rela.dtors : { *(.rela.dtors) }
43 .rel.bss : { *(.rel.bss) }
44 .rela.bss : { *(.rela.bss) }
45 .rel.plt : { *(.rel.plt) }
46 .rela.plt : { *(.rela.plt) }
51 /* WARNING - the following is hand-optimized to fit within */
52 /* the sector layout of our flash chips! XXX FIXME XXX */
54 arch/powerpc/cpu/mpc8xx/start.o (.text)
55 common/dlmalloc.o (.text)
56 lib/vsprintf.o (.text)
60 common/env_embedded.o (.text)
74 .fini : { *(.fini) } =0
75 .ctors : { *(.ctors) }
76 .dtors : { *(.dtors) }
78 /* Read-write section, merged into data segment: */
79 . = (. + 0x0FFF) & 0xFFFFF000;
81 PROVIDE (erotext = .);
90 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
91 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
105 __start___ex_table = .;
106 __ex_table : { *(__ex_table) }
107 __stop___ex_table = .;
111 .text.init : { *(.text.init) }
112 .data.init : { *(.data.init) }