blob: 6cfddea2d4ac3c90a8aa57525ca965a78c8290ac [file] [log] [blame]
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001/*
Wolfgang Denk452e8e72005-08-08 00:47:14 +02002 * (C) Copyright 2005 Wolfgang Denk <wd@denx.de>
3 * (C) Copyright 2002,2003, Motorola,Inc.
Wolfgang Denkb20d0032005-08-05 12:19:30 +02004 * Xianghua Xiao, X.Xiao@motorola.com.
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25OUTPUT_ARCH(powerpc)
26SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/powerpc-any-elf/lib);
27/* Do we need any of these for elf?
28 __DYNAMIC = 0; */
29SECTIONS
30{
31 .resetvec 0xFFFFFFFC :
32 {
33 *(.resetvec)
34 } = 0xffff
35
36 .bootpg 0xFFFFF000 :
37 {
38 cpu/mpc85xx/start.o (.bootpg)
Wolfgang Denkb20d0032005-08-05 12:19:30 +020039 } = 0xffff
40
41 /* Read-only sections, merged into text segment: */
42 . = + SIZEOF_HEADERS;
43 .interp : { *(.interp) }
44 .hash : { *(.hash) }
45 .dynsym : { *(.dynsym) }
46 .dynstr : { *(.dynstr) }
47 .rel.text : { *(.rel.text) }
48 .rela.text : { *(.rela.text) }
49 .rel.data : { *(.rel.data) }
50 .rela.data : { *(.rela.data) }
51 .rel.rodata : { *(.rel.rodata) }
52 .rela.rodata : { *(.rela.rodata) }
53 .rel.got : { *(.rel.got) }
54 .rela.got : { *(.rela.got) }
55 .rel.ctors : { *(.rel.ctors) }
56 .rela.ctors : { *(.rela.ctors) }
57 .rel.dtors : { *(.rel.dtors) }
58 .rela.dtors : { *(.rela.dtors) }
59 .rel.bss : { *(.rel.bss) }
60 .rela.bss : { *(.rela.bss) }
61 .rel.plt : { *(.rel.plt) }
62 .rela.plt : { *(.rela.plt) }
63 .init : { *(.init) }
64 .plt : { *(.plt) }
65 .text :
66 {
67 cpu/mpc85xx/start.o (.text)
Wolfgang Denkb20d0032005-08-05 12:19:30 +020068 cpu/mpc85xx/traps.o (.text)
69 cpu/mpc85xx/interrupts.o (.text)
Wolfgang Denkb20d0032005-08-05 12:19:30 +020070 cpu/mpc85xx/cpu_init.o (.text)
71 cpu/mpc85xx/cpu.o (.text)
Wolfgang Denkb20d0032005-08-05 12:19:30 +020072 cpu/mpc85xx/speed.o (.text)
Wolfgang Denkb20d0032005-08-05 12:19:30 +020073 common/dlmalloc.o (.text)
74 lib_generic/crc32.o (.text)
75 lib_ppc/extable.o (.text)
76 lib_generic/zlib.o (.text)
77 *(.text)
78 *(.fixup)
79 *(.got1)
80 }
81 _etext = .;
82 PROVIDE (etext = .);
83 .rodata :
84 {
85 *(.rodata)
86 *(.rodata1)
87 *(.rodata.str1.4)
Wolfgang Denk74812662005-12-12 16:06:05 +010088 *(.eh_frame)
Wolfgang Denkb20d0032005-08-05 12:19:30 +020089 }
90 .fini : { *(.fini) } =0
91 .ctors : { *(.ctors) }
92 .dtors : { *(.dtors) }
93
94 /* Read-write section, merged into data segment: */
95 . = (. + 0x00FF) & 0xFFFFFF00;
96 _erotext = .;
97 PROVIDE (erotext = .);
98 .reloc :
99 {
100 *(.got)
101 _GOT2_TABLE_ = .;
102 *(.got2)
103 _FIXUP_TABLE_ = .;
104 *(.fixup)
105 }
106 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >> 2;
107 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
108
109 .data :
110 {
111 *(.data)
112 *(.data1)
113 *(.sdata)
114 *(.sdata2)
115 *(.dynamic)
116 CONSTRUCTORS
117 }
118 _edata = .;
119 PROVIDE (edata = .);
120
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200121 . = .;
Wolfgang Denkb20d0032005-08-05 12:19:30 +0200122 __u_boot_cmd_start = .;
123 .u_boot_cmd : { *(.u_boot_cmd) }
124 __u_boot_cmd_end = .;
125
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200126 . = .;
Wolfgang Denkb20d0032005-08-05 12:19:30 +0200127 __start___ex_table = .;
128 __ex_table : { *(__ex_table) }
129 __stop___ex_table = .;
130
131 . = ALIGN(256);
132 __init_begin = .;
133 .text.init : { *(.text.init) }
134 .data.init : { *(.data.init) }
135 . = ALIGN(256);
136 __init_end = .;
137
138 __bss_start = .;
Wolfgang Denk64134f02008-01-12 20:31:39 +0100139 .bss (NOLOAD) :
Wolfgang Denkb20d0032005-08-05 12:19:30 +0200140 {
141 *(.sbss) *(.scommon)
142 *(.dynbss)
143 *(.bss)
144 *(COMMON)
145 }
146 _end = . ;
147 PROVIDE (end = .);
148}