blob: 4e82bcaa6a16d90ee46db3eaa2214bb523374239 [file] [log] [blame]
Stelian Pop6afcabf2008-02-07 16:37:54 +00001/*
2 * (C) Copyright 2002
Stelian Pop567fb852008-05-08 22:52:09 +02003 * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
Stelian Pop6afcabf2008-02-07 16:37:54 +00004 *
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
Ilko Ilievf0a2c7b2009-04-16 21:30:48 +020024#include <config.h>
25
Stelian Pop6afcabf2008-02-07 16:37:54 +000026OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
27/*OUTPUT_FORMAT("elf32-arm", "elf32-arm", "elf32-arm")*/
28OUTPUT_ARCH(arm)
29ENTRY(_start)
30SECTIONS
31{
32 . = 0x00000000;
33
34 . = ALIGN(4);
35 .text :
36 {
Ilko Ilievf0a2c7b2009-04-16 21:30:48 +020037 cpu/arm926ejs/start.o (.text)
38#ifndef CONFIG_SKIP_LOWLEVEL_INIT
39 board/CONFIG_BOARDDIR/lowlevel_init.o (.text)
40#endif
41 *(.text)
Stelian Pop6afcabf2008-02-07 16:37:54 +000042 }
43
44 . = ALIGN(4);
Trent Piephof62fb992009-02-18 15:22:05 -080045 .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
Stelian Pop6afcabf2008-02-07 16:37:54 +000046
47 . = ALIGN(4);
48 .data : { *(.data) }
49
50 . = ALIGN(4);
51 .got : { *(.got) }
52
53 . = .;
54 __u_boot_cmd_start = .;
55 .u_boot_cmd : { *(.u_boot_cmd) }
56 __u_boot_cmd_end = .;
57
58 . = ALIGN(4);
59 __bss_start = .;
Selvamuthukumar9b827cf2008-10-16 22:54:03 +053060 .bss : { *(.bss) . = ALIGN(4); }
Stelian Pop6afcabf2008-02-07 16:37:54 +000061 _end = .;
62}