blob: c8319610c2fe20d21b1a27f4290cc40ef68ecd04 [file] [log] [blame]
Mark Jonas3313e0e2008-03-10 11:37:10 +01001/*
2 * Copyright (C) 2007
3 * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4 *
5 * Copyright (C) 2007
6 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7 *
8 * Copyright (C) 2008
9 * Mark Jonas <mark.jonas@de.bosch.com>
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -070010 *
Mark Jonas3313e0e2008-03-10 11:37:10 +010011 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * MA 02111-1307 USA
28 */
29
30OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux")
31OUTPUT_ARCH(sh)
32ENTRY(_start)
33
34SECTIONS
35{
36 /*
Jean-Christophe PLAGNIOL-VILLARD236aad82009-06-04 12:06:44 +020037 * entry and reloct_dst will be provided via ldflags
38 */
39 . = .;
Mark Jonas3313e0e2008-03-10 11:37:10 +010040
41 PROVIDE (_ftext = .);
42 PROVIDE (_fcode = .);
43 PROVIDE (_start = .);
44
45 .text :
46 {
Nobuhiro Iwamatsub52da2a2011-03-07 16:36:21 +090047 KEEP(arch/sh/cpu/sh3/start.o (.text))
Mark Jonas3313e0e2008-03-10 11:37:10 +010048 . = ALIGN(8192);
Jean-Christophe PLAGNIOL-VILLARD0cf4fd32008-09-10 22:48:01 +020049 common/env_embedded.o (.ppcenv)
Mark Jonas3313e0e2008-03-10 11:37:10 +010050 . = ALIGN(8192);
Jean-Christophe PLAGNIOL-VILLARD0cf4fd32008-09-10 22:48:01 +020051 common/env_embedded.o (.ppcenvr)
Mark Jonas3313e0e2008-03-10 11:37:10 +010052 . = ALIGN(8192);
53 *(.text)
54 . = ALIGN(4);
55 } =0xFF
56 PROVIDE (_ecode = .);
57 .rodata :
58 {
Trent Piephof62fb992009-02-18 15:22:05 -080059 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
Mark Jonas3313e0e2008-03-10 11:37:10 +010060 . = ALIGN(4);
61 }
62 PROVIDE (_etext = .);
63
64
65 PROVIDE (_fdata = .);
66 .data :
67 {
68 *(.data)
69 . = ALIGN(4);
70 }
71 PROVIDE (_edata = .);
72
73 PROVIDE (_fgot = .);
74 .got :
75 {
76 *(.got)
77 . = ALIGN(4);
78 }
79 PROVIDE (_egot = .);
80
Mark Jonas3313e0e2008-03-10 11:37:10 +010081
Marek Vasut55675142012-10-12 10:27:03 +000082 .u_boot_list : {
83 #include <u-boot.lst>
84 }
85
Mark Jonas3313e0e2008-03-10 11:37:10 +010086 PROVIDE (reloc_dst_end = .);
87 /* _reloc_dst_end = .; */
88
89 PROVIDE (bss_start = .);
90 PROVIDE (__bss_start = .);
91 .bss :
92 {
93 *(.bss)
94 . = ALIGN(4);
95 }
96 PROVIDE (bss_end = .);
97
Po-Yu Chuang44c6e652011-03-01 22:59:59 +000098 PROVIDE (__bss_end__ = .);
Mark Jonas3313e0e2008-03-10 11:37:10 +010099}