blob: fbe3c7044bd427df5c8940246841553a981f886c [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * Linker command file for the GEN860T board.
3 *
4 * (C) Copyright 2000
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26OUTPUT_ARCH(powerpc)
wdenkc6097192002-11-03 00:24:07 +000027SECTIONS
28{
29 /*
30 * Read-only sections, merged into text segment:
31 */
32 . = + SIZEOF_HEADERS;
33 .interp : { *(.interp) }
34 .hash : { *(.hash) }
35 .dynsym : { *(.dynsym) }
36 .dynstr : { *(.dynstr) }
37 .rel.text : { *(.rel.text) }
Wolfgang Denk53677ef2008-05-20 16:00:29 +020038 .rela.text : { *(.rela.text) }
wdenkc6097192002-11-03 00:24:07 +000039 .rel.data : { *(.rel.data) }
Wolfgang Denk53677ef2008-05-20 16:00:29 +020040 .rela.data : { *(.rela.data) }
41 .rel.rodata : { *(.rel.rodata) }
42 .rela.rodata : { *(.rela.rodata) }
wdenkc6097192002-11-03 00:24:07 +000043 .rel.got : { *(.rel.got) }
44 .rela.got : { *(.rela.got) }
45 .rel.ctors : { *(.rel.ctors) }
46 .rela.ctors : { *(.rela.ctors) }
47 .rel.dtors : { *(.rel.dtors) }
48 .rela.dtors : { *(.rela.dtors) }
49 .rel.bss : { *(.rel.bss) }
50 .rela.bss : { *(.rela.bss) }
51 .rel.plt : { *(.rel.plt) }
52 .rela.plt : { *(.rela.plt) }
53 .init : { *(.init) }
54 .plt : { *(.plt) }
55 .text :
56 {
57 cpu/mpc8xx/start.o (.text)
wdenkc6097192002-11-03 00:24:07 +000058 *(.text)
59 *(.fixup)
60 *(.got1)
61 }
62 _etext = .;
63 PROVIDE (etext = .);
64 .rodata :
65 {
Wolfgang Denk74812662005-12-12 16:06:05 +010066 *(.eh_frame)
Trent Piephof62fb992009-02-18 15:22:05 -080067 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
wdenkc6097192002-11-03 00:24:07 +000068 }
69 .fini : { *(.fini) } =0
70 .ctors : { *(.ctors) }
71 .dtors : { *(.dtors) }
72
73 /*
74 * Read-write section, merged into data segment:
75 */
76 . = (. + 0x00FF) & 0xFFFFFF00;
77 _erotext = .;
78 PROVIDE (erotext = .);
79 .reloc :
80 {
81 *(.got)
82 _GOT2_TABLE_ = .;
83 *(.got2)
84 _FIXUP_TABLE_ = .;
85 *(.fixup)
86 }
87 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
88 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
89
90 .data :
91 {
92 *(.data)
93 *(.data1)
94 *(.sdata)
95 *(.sdata2)
96 *(.dynamic)
97 CONSTRUCTORS
98 }
99 _edata = .;
100 PROVIDE (edata = .);
101
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200102 . = .;
wdenk8bde7f72003-06-27 21:31:46 +0000103 __u_boot_cmd_start = .;
104 .u_boot_cmd : { *(.u_boot_cmd) }
105 __u_boot_cmd_end = .;
106
107
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200108 . = .;
wdenkc6097192002-11-03 00:24:07 +0000109 __start___ex_table = .;
110 __ex_table : { *(__ex_table) }
111 __stop___ex_table = .;
112
113 . = ALIGN(256);
114 __init_begin = .;
115 .text.init : { *(.text.init) }
116 .data.init : { *(.data.init) }
117 . = ALIGN(256);
118 __init_end = .;
119
120 __bss_start = .;
Wolfgang Denk64134f02008-01-12 20:31:39 +0100121 .bss (NOLOAD) :
wdenkc6097192002-11-03 00:24:07 +0000122 {
123 *(.sbss) *(.scommon)
124 *(.dynbss)
125 *(.bss)
126 *(COMMON)
Selvamuthukumar9b827cf2008-10-16 22:54:03 +0530127 . = ALIGN(4);
wdenkc6097192002-11-03 00:24:07 +0000128 }
wdenkc6097192002-11-03 00:24:07 +0000129 _end = . ;
130 PROVIDE (end = .);
131}