]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/glsdk-u-boot.git/blob - arch/sh/cpu/sh4/u-boot.lds
Merge remote-tracking branch 'u-boot-ti/master'
[glsdk/glsdk-u-boot.git] / arch / sh / cpu / sh4 / u-boot.lds
1 /*
2  * Copyright (C) 2007
3  * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4  *
5  * Copyright (C) 2008-2009
6  * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
7  *
8  * See file CREDITS for list of people who contributed to this
9  * project.
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License as
13  * published by the Free Software Foundation; either version 2 of
14  * the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24  * MA 02111-1307 USA
25  */
27 OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux")
28 OUTPUT_ARCH(sh)
29 ENTRY(_start)
31 SECTIONS
32 {
33         /*
34          * entry and reloct_dst will be provided via ldflags
35          */
36         . = .;
38         PROVIDE (_ftext = .);
39         PROVIDE (_fcode = .);
40         PROVIDE (_start = .);
42         .text :
43         {
44                 KEEP(arch/sh/cpu/sh4/start.o            (.text))
45                 . = ALIGN(8192);
46                 common/env_embedded.o   (.ppcenv)
47                 . = ALIGN(8192);
48                 common/env_embedded.o   (.ppcenvr)
49                 . = ALIGN(8192);
50                 *(.text)
51                 . = ALIGN(4);
52         } =0xFF
53         PROVIDE (_ecode = .);
54         .rodata :
55         {
56                 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
57                 . = ALIGN(4);
58         }
59         PROVIDE (_etext = .);
62         PROVIDE (_fdata = .);
63         .data :
64         {
65                 *(.data)
66                 . = ALIGN(4);
67         }
68         PROVIDE (_edata = .);
70         PROVIDE (_fgot = .);
71         .got :
72         {
73                 *(.got)
74                 . = ALIGN(4);
75         }
76         PROVIDE (_egot = .);
79         .u_boot_list : {
80                 #include <u-boot.lst>
81         }
83         PROVIDE (reloc_dst_end = .);
84         /* _reloc_dst_end = .; */
86         PROVIDE (bss_start = .);
87         PROVIDE (__bss_start = .);
88         .bss (NOLOAD) :
89         {
90                 *(.bss)
91                 . = ALIGN(4);
92         }
93         PROVIDE (bss_end = .);
95         PROVIDE (__bss_end__ = .);
96 }