]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/amcc/sequoia/u-boot-ram.lds
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[people/ms/u-boot.git] / board / amcc / sequoia / u-boot-ram.lds
CommitLineData
d873133f
SR
1/*
2 * (C) Copyright 2009
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
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
24OUTPUT_ARCH(powerpc)
25SECTIONS
26{
27 /* Read-only sections, merged into text segment: */
28 . = + SIZEOF_HEADERS;
d873133f
SR
29 .text :
30 {
ee8028b7
WD
31 arch/powerpc/cpu/ppc4xx/start.o (.text*)
32 board/amcc/sequoia/init.o (.text*)
d873133f 33
ee8028b7 34 *(.text*)
d873133f
SR
35 }
36 _etext = .;
37 PROVIDE (etext = .);
38 .rodata :
39 {
40 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
41 }
d873133f
SR
42
43 /* Read-write section, merged into data segment: */
44 . = (. + 0x00FF) & 0xFFFFFF00;
45 _erotext = .;
46 PROVIDE (erotext = .);
47 .reloc :
48 {
ee8028b7 49 KEEP(*(.got))
d873133f 50 _GOT2_TABLE_ = .;
ee8028b7 51 KEEP(*(.got2))
d873133f 52 _FIXUP_TABLE_ = .;
ee8028b7 53 KEEP(*(.fixup))
d873133f
SR
54 }
55 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
56 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
57
58 .data :
59 {
ee8028b7
WD
60 *(.data*)
61 *(.sdata*)
d873133f
SR
62 }
63 _edata = .;
64 PROVIDE (edata = .);
65
66 . = .;
d873133f 67
55675142 68 .u_boot_list : {
ef123c52 69 KEEP(*(SORT(.u_boot_list*)));
55675142 70 }
d873133f
SR
71
72 . = .;
73 __start___ex_table = .;
74 __ex_table : { *(__ex_table) }
75 __stop___ex_table = .;
76
77 . = ALIGN(256);
78 __init_begin = .;
79 .text.init : { *(.text.init) }
80 .data.init : { *(.data.init) }
81 . = ALIGN(256);
82 __init_end = .;
83
84 __bss_start = .;
85 .bss (NOLOAD) :
86 {
ee8028b7
WD
87 *(.bss*)
88 *(.sbss*)
d873133f
SR
89 *(COMMON)
90 . = ALIGN(4);
91 }
92
3929fb0a 93 __bss_end = . ;
d873133f
SR
94 PROVIDE (end = .);
95}