]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/gen860t/u-boot.lds
MX51: Add pin and multiplexer definitions.
[people/ms/u-boot.git] / board / gen860t / u-boot.lds
1 /*
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
26 OUTPUT_ARCH(powerpc)
27 SECTIONS
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) }
38 .rela.text : { *(.rela.text) }
39 .rel.data : { *(.rel.data) }
40 .rela.data : { *(.rela.data) }
41 .rel.rodata : { *(.rel.rodata) }
42 .rela.rodata : { *(.rela.rodata) }
43 .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)
58 *(.text)
59 *(.got1)
60 }
61 _etext = .;
62 PROVIDE (etext = .);
63 .rodata :
64 {
65 *(.eh_frame)
66 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
67 }
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
101 . = .;
102 __u_boot_cmd_start = .;
103 .u_boot_cmd : { *(.u_boot_cmd) }
104 __u_boot_cmd_end = .;
105
106
107 . = .;
108 __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 = .;
120 .bss (NOLOAD) :
121 {
122 *(.sbss) *(.scommon)
123 *(.dynbss)
124 *(.bss)
125 *(COMMON)
126 . = ALIGN(4);
127 }
128 _end = . ;
129 PROVIDE (end = .);
130 }