blob: a4c30321168f12eaa06b16859be466a874d2e695 [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 {
Stefan Roesea47a12b2010-04-15 16:07:28 +020057 arch/powerpc/cpu/mpc8xx/start.o (.text)
wdenkc6097192002-11-03 00:24:07 +000058 *(.text)
wdenkc6097192002-11-03 00:24:07 +000059 *(.got1)
60 }
61 _etext = .;
62 PROVIDE (etext = .);
63 .rodata :
64 {
Wolfgang Denk74812662005-12-12 16:06:05 +010065 *(.eh_frame)
Trent Piephof62fb992009-02-18 15:22:05 -080066 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
wdenkc6097192002-11-03 00:24:07 +000067 }
68 .fini : { *(.fini) } =0
69 .ctors : { *(.ctors) }
70 .dtors : { *(.dtors) }
71
72 /*
73 * Read-write section, merged into data segment:
74 */
75 . = (. + 0x00FF) & 0xFFFFFF00;
76 _erotext = .;
77 PROVIDE (erotext = .);
78 .reloc :
79 {
80 *(.got)
81 _GOT2_TABLE_ = .;
82 *(.got2)
83 _FIXUP_TABLE_ = .;
84 *(.fixup)
85 }
86 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
87 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
88
89 .data :
90 {
91 *(.data)
92 *(.data1)
93 *(.sdata)
94 *(.sdata2)
95 *(.dynamic)
96 CONSTRUCTORS
97 }
98 _edata = .;
99 PROVIDE (edata = .);
100
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200101 . = .;
wdenk8bde7f72003-06-27 21:31:46 +0000102 __u_boot_cmd_start = .;
103 .u_boot_cmd : { *(.u_boot_cmd) }
104 __u_boot_cmd_end = .;
105
106
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200107 . = .;
wdenkc6097192002-11-03 00:24:07 +0000108 __start___ex_table = .;
109 __ex_table : { *(__ex_table) }
110 __stop___ex_table = .;
111
112 . = ALIGN(256);
113 __init_begin = .;
114 .text.init : { *(.text.init) }
115 .data.init : { *(.data.init) }
116 . = ALIGN(256);
117 __init_end = .;
118
119 __bss_start = .;
Wolfgang Denk64134f02008-01-12 20:31:39 +0100120 .bss (NOLOAD) :
wdenkc6097192002-11-03 00:24:07 +0000121 {
122 *(.sbss) *(.scommon)
123 *(.dynbss)
124 *(.bss)
125 *(COMMON)
Selvamuthukumar9b827cf2008-10-16 22:54:03 +0530126 . = ALIGN(4);
wdenkc6097192002-11-03 00:24:07 +0000127 }
wdenkc6097192002-11-03 00:24:07 +0000128 _end = . ;
129 PROVIDE (end = .);
130}