blob: 423400ac665169a59734d6fa8416ad25145033bd [file] [log] [blame]
Stefan Roesed8731332009-05-11 13:46:14 +02001/*
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;
Stefan Roesed8731332009-05-11 13:46:14 +020029 .text :
30 {
Wolfgang Denkee8028b2010-11-21 20:55:42 +010031 arch/powerpc/cpu/ppc4xx/start.o (.text*)
32 board/amcc/sequoia/init.o (.text*)
Stefan Roesed8731332009-05-11 13:46:14 +020033
Wolfgang Denkee8028b2010-11-21 20:55:42 +010034 *(.text*)
Stefan Roesed8731332009-05-11 13:46:14 +020035 }
36 _etext = .;
37 PROVIDE (etext = .);
38 .rodata :
39 {
40 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
41 }
Stefan Roesed8731332009-05-11 13:46:14 +020042
43 /* Read-write section, merged into data segment: */
44 . = (. + 0x00FF) & 0xFFFFFF00;
45 _erotext = .;
46 PROVIDE (erotext = .);
47 .reloc :
48 {
Wolfgang Denkee8028b2010-11-21 20:55:42 +010049 KEEP(*(.got))
Stefan Roesed8731332009-05-11 13:46:14 +020050 _GOT2_TABLE_ = .;
Wolfgang Denkee8028b2010-11-21 20:55:42 +010051 KEEP(*(.got2))
Stefan Roesed8731332009-05-11 13:46:14 +020052 _FIXUP_TABLE_ = .;
Wolfgang Denkee8028b2010-11-21 20:55:42 +010053 KEEP(*(.fixup))
Stefan Roesed8731332009-05-11 13:46:14 +020054 }
55 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
56 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
57
58 .data :
59 {
Wolfgang Denkee8028b2010-11-21 20:55:42 +010060 *(.data*)
61 *(.sdata*)
Stefan Roesed8731332009-05-11 13:46:14 +020062 }
63 _edata = .;
64 PROVIDE (edata = .);
65
66 . = .;
67 __u_boot_cmd_start = .;
68 .u_boot_cmd : { *(.u_boot_cmd) }
69 __u_boot_cmd_end = .;
70
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 {
Wolfgang Denkee8028b2010-11-21 20:55:42 +010087 *(.bss*)
88 *(.sbss*)
Stefan Roesed8731332009-05-11 13:46:14 +020089 *(COMMON)
90 . = ALIGN(4);
91 }
92
Po-Yu Chuang44c6e652011-03-01 22:59:59 +000093 __bss_end__ = . ;
Stefan Roesed8731332009-05-11 13:46:14 +020094 PROVIDE (end = .);
95}