]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/mpl/pip405/u-boot.lds.debug
drivers, block: remove sil680 driver
[people/ms/u-boot.git] / board / mpl / pip405 / u-boot.lds.debug
CommitLineData
efee1709
WD
1/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
efee1709
WD
6 */
7
8OUTPUT_ARCH(powerpc)
efee1709
WD
9/* Do we need any of these for elf?
10 __DYNAMIC = 0; */
11SECTIONS
12{
13 /* Read-only sections, merged into text segment: */
14 . = + SIZEOF_HEADERS;
15 .interp : { *(.interp) }
16 .hash : { *(.hash) }
17 .dynsym : { *(.dynsym) }
18 .dynstr : { *(.dynstr) }
19 .rel.text : { *(.rel.text) }
53677ef1 20 .rela.text : { *(.rela.text) }
efee1709 21 .rel.data : { *(.rel.data) }
53677ef1
WD
22 .rela.data : { *(.rela.data) }
23 .rel.rodata : { *(.rel.rodata) }
24 .rela.rodata : { *(.rela.rodata) }
efee1709
WD
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) }
35 .init : { *(.init) }
36 .plt : { *(.plt) }
37 .text :
38 {
39 /* WARNING - the following is hand-optimized to fit within */
40 /* the sector layout of our flash chips! XXX FIXME XXX */
41
42 mpc8xx/start.o (.text)
43 common/dlmalloc.o (.text)
78acc472
PT
44 lib/vsprintf.o (.text)
45 lib/crc32.o (.text)
a47a12be 46 arch/powerpc/lib/extable.o (.text)
efee1709 47
0cf4fd3c 48 common/env_embedded.o(.text)
efee1709
WD
49
50 *(.text)
efee1709
WD
51 *(.got1)
52 }
53 _etext = .;
54 PROVIDE (etext = .);
55 .rodata :
56 {
57 *(.rodata)
58 *(.rodata1)
7481266e
WD
59 *(.rodata.str1.4)
60 *(.eh_frame)
efee1709
WD
61 }
62 .fini : { *(.fini) } =0
63 .ctors : { *(.ctors) }
64 .dtors : { *(.dtors) }
65
66 /* Read-write section, merged into data segment: */
67 . = (. + 0x0FFF) & 0xFFFFF000;
68 _erotext = .;
69 PROVIDE (erotext = .);
70 .reloc :
71 {
72 *(.got)
73 _GOT2_TABLE_ = .;
74 *(.got2)
75 _FIXUP_TABLE_ = .;
76 *(.fixup)
77 }
78 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
79 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
80
81 .data :
82 {
83 *(.data)
84 *(.data1)
85 *(.sdata)
86 *(.sdata2)
87 *(.dynamic)
88 CONSTRUCTORS
89 }
90 _edata = .;
91 PROVIDE (edata = .);
92
8bde7f77 93
55675142
MV
94 . = ALIGN(4);
95 .u_boot_list : {
ef123c52 96 KEEP(*(SORT(.u_boot_list*)));
55675142
MV
97 }
98
8bde7f77 99
efee1709
WD
100 __start___ex_table = .;
101 __ex_table : { *(__ex_table) }
102 __stop___ex_table = .;
103
104 . = ALIGN(4096);
105 __init_begin = .;
106 .text.init : { *(.text.init) }
107 .data.init : { *(.data.init) }
108 . = ALIGN(4096);
109 __init_end = .;
110
111 __bss_start = .;
112 .bss :
113 {
114 *(.sbss) *(.scommon)
115 *(.dynbss)
116 *(.bss)
117 *(COMMON)
118 }
5993053f 119 __bss_end = . ;
efee1709
WD
120 PROVIDE (end = .);
121}