]>
Commit | Line | Data |
---|---|---|
652a10c0 WD |
1 | /* |
2 | * (C) Copyright 2000, 2001 | |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
4 | * | |
5 | * See file CREDITS for list of people who contributed to this | |
6 | * project. | |
7 | * | |
8 | * This program is free software; you can redistribute it and/or | |
9 | * modify it under the terms of the GNU General Public License as | |
10 | * published by the Free Software Foundation; either version 2 of | |
11 | * the License, or (at your option) any later version. | |
12 | * | |
13 | * This program is distributed in the hope that it will be useful, | |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | * GNU General Public License for more details. | |
17 | * | |
18 | * You should have received a copy of the GNU General Public License | |
19 | * along with this program; if not, write to the Free Software | |
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, | |
21 | * MA 02111-1307 USA | |
22 | */ | |
23 | ||
24 | OUTPUT_ARCH(powerpc) | |
652a10c0 WD |
25 | /* Do we need any of these for elf? |
26 | __DYNAMIC = 0; */ | |
27 | SECTIONS | |
28 | { | |
29 | .resetvec 0xFFFFFFFC : | |
30 | { | |
31 | *(.resetvec) | |
32 | } = 0xffff | |
33 | ||
34 | /* Read-only sections, merged into text segment: */ | |
35 | . = + SIZEOF_HEADERS; | |
36 | .interp : { *(.interp) } | |
37 | .hash : { *(.hash) } | |
38 | .dynsym : { *(.dynsym) } | |
39 | .dynstr : { *(.dynstr) } | |
40 | .rel.text : { *(.rel.text) } | |
53677ef1 | 41 | .rela.text : { *(.rela.text) } |
652a10c0 | 42 | .rel.data : { *(.rel.data) } |
53677ef1 WD |
43 | .rela.data : { *(.rela.data) } |
44 | .rel.rodata : { *(.rel.rodata) } | |
45 | .rela.rodata : { *(.rela.rodata) } | |
652a10c0 WD |
46 | .rel.got : { *(.rel.got) } |
47 | .rela.got : { *(.rela.got) } | |
48 | .rel.ctors : { *(.rel.ctors) } | |
49 | .rela.ctors : { *(.rela.ctors) } | |
50 | .rel.dtors : { *(.rel.dtors) } | |
51 | .rela.dtors : { *(.rela.dtors) } | |
52 | .rel.bss : { *(.rel.bss) } | |
53 | .rela.bss : { *(.rela.bss) } | |
54 | .rel.plt : { *(.rel.plt) } | |
55 | .rela.plt : { *(.rela.plt) } | |
56 | .init : { *(.init) } | |
57 | .plt : { *(.plt) } | |
58 | .text : | |
59 | { | |
60 | /* WARNING - the following is hand-optimized to fit within */ | |
61 | /* the sector layout of our flash chips! XXX FIXME XXX */ | |
62 | ||
63 | cpu/ppc4xx/start.o (.text) | |
64 | cpu/ppc4xx/traps.o (.text) | |
65 | cpu/ppc4xx/interrupts.o (.text) | |
882ae412 | 66 | cpu/ppc4xx/4xx_uart.o (.text) |
652a10c0 WD |
67 | cpu/ppc4xx/cpu_init.o (.text) |
68 | cpu/ppc4xx/speed.o (.text) | |
d6c61aab | 69 | cpu/ppc4xx/4xx_enet.o (.text) |
652a10c0 WD |
70 | common/dlmalloc.o (.text) |
71 | lib_generic/crc32.o (.text) | |
72 | lib_ppc/extable.o (.text) | |
73 | lib_generic/zlib.o (.text) | |
74 | ||
75 | /* . = env_offset;*/ | |
76 | /* common/environment.o(.text)*/ | |
77 | ||
78 | *(.text) | |
79 | *(.fixup) | |
80 | *(.got1) | |
81 | } | |
82 | _etext = .; | |
83 | PROVIDE (etext = .); | |
84 | .rodata : | |
85 | { | |
86 | *(.rodata) | |
87 | *(.rodata1) | |
88 | *(.rodata.str1.4) | |
7481266e | 89 | *(.eh_frame) |
652a10c0 WD |
90 | } |
91 | .fini : { *(.fini) } =0 | |
92 | .ctors : { *(.ctors) } | |
93 | .dtors : { *(.dtors) } | |
94 | ||
95 | /* Read-write section, merged into data segment: */ | |
96 | . = (. + 0x00FF) & 0xFFFFFF00; | |
97 | _erotext = .; | |
98 | PROVIDE (erotext = .); | |
99 | .reloc : | |
100 | { | |
101 | *(.got) | |
102 | _GOT2_TABLE_ = .; | |
103 | *(.got2) | |
104 | _FIXUP_TABLE_ = .; | |
105 | *(.fixup) | |
106 | } | |
107 | __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2; | |
108 | __fixup_entries = (. - _FIXUP_TABLE_)>>2; | |
109 | ||
110 | .data : | |
111 | { | |
112 | *(.data) | |
113 | *(.data1) | |
114 | *(.sdata) | |
115 | *(.sdata2) | |
116 | *(.dynamic) | |
117 | CONSTRUCTORS | |
118 | } | |
119 | _edata = .; | |
120 | PROVIDE (edata = .); | |
121 | ||
807d5d73 | 122 | . = .; |
652a10c0 WD |
123 | __u_boot_cmd_start = .; |
124 | .u_boot_cmd : { *(.u_boot_cmd) } | |
125 | __u_boot_cmd_end = .; | |
126 | ||
807d5d73 | 127 | . = .; |
652a10c0 WD |
128 | __start___ex_table = .; |
129 | __ex_table : { *(__ex_table) } | |
130 | __stop___ex_table = .; | |
131 | ||
132 | . = ALIGN(256); | |
133 | __init_begin = .; | |
134 | .text.init : { *(.text.init) } | |
135 | .data.init : { *(.data.init) } | |
136 | . = ALIGN(256); | |
137 | __init_end = .; | |
138 | ||
139 | __bss_start = .; | |
64134f01 | 140 | .bss (NOLOAD) : |
652a10c0 WD |
141 | { |
142 | *(.sbss) *(.scommon) | |
143 | *(.dynbss) | |
144 | *(.bss) | |
145 | *(COMMON) | |
146 | } | |
147 | _end = . ; | |
148 | PROVIDE (end = .); | |
149 | } |