]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/glsdk-u-boot.git/blob - board/amcc/sequoia/u-boot-ram.lds
6b02784926f741b6fea77b24a9816038762664d3
[glsdk/glsdk-u-boot.git] / board / amcc / sequoia / u-boot-ram.lds
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  */
24 OUTPUT_ARCH(powerpc)
25 SECTIONS
26 {
27   /* Read-only sections, merged into text segment: */
28   . = + SIZEOF_HEADERS;
29   .text      :
30   {
31     arch/powerpc/cpu/ppc4xx/start.o     (.text*)
32     board/amcc/sequoia/init.o           (.text*)
34     *(.text*)
35   }
36   _etext = .;
37   PROVIDE (etext = .);
38   .rodata    :
39   {
40     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
41   }
43   /* Read-write section, merged into data segment: */
44   . = (. + 0x00FF) & 0xFFFFFF00;
45   _erotext = .;
46   PROVIDE (erotext = .);
47   .reloc   :
48   {
49     KEEP(*(.got))
50     _GOT2_TABLE_ = .;
51     KEEP(*(.got2))
52     _FIXUP_TABLE_ = .;
53     KEEP(*(.fixup))
54   }
55   __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
56   __fixup_entries = (. - _FIXUP_TABLE_)>>2;
58   .data    :
59   {
60     *(.data*)
61     *(.sdata*)
62   }
63   _edata  =  .;
64   PROVIDE (edata = .);
66   . = .;
68   .u_boot_list : {
69         #include <u-boot.lst>
70   }
72   . = .;
73   __start___ex_table = .;
74   __ex_table : { *(__ex_table) }
75   __stop___ex_table = .;
77   . = ALIGN(256);
78   __init_begin = .;
79   .text.init : { *(.text.init) }
80   .data.init : { *(.data.init) }
81   . = ALIGN(256);
82   __init_end = .;
84   __bss_start = .;
85   .bss (NOLOAD)       :
86   {
87    *(.bss*)
88    *(.sbss*)
89    *(COMMON)
90    . = ALIGN(4);
91   }
93   __bss_end__ = . ;
94   PROVIDE (end = .);
95 }