blob: cd50e85242c4af99b43ef11f65a08e57ed95cb4b [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002
Detlev Zundel792a09e2009-05-13 10:54:10 +02003 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
wdenkc6097192002-11-03 00:24:07 +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
24OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
25/*OUTPUT_FORMAT("elf32-arm", "elf32-arm", "elf32-arm")*/
26OUTPUT_ARCH(arm)
27ENTRY(_start)
28SECTIONS
29{
wdenk8bde7f72003-06-27 21:31:46 +000030 . = 0x00000000;
wdenkc6097192002-11-03 00:24:07 +000031
wdenk8bde7f72003-06-27 21:31:46 +000032 . = ALIGN(4);
wdenkc6097192002-11-03 00:24:07 +000033 .text :
34 {
Peter Tyser84ad6882010-04-12 22:28:11 -050035 arch/arm/cpu/arm920t/start.o (.text)
Peter Tyser78acc472010-04-12 22:28:05 -050036 lib/zlib.o (.text)
37 lib/crc32.o (.text)
38 lib/string.o (.text)
wdenkc6097192002-11-03 00:24:07 +000039
wdenk47cd00f2003-03-06 13:39:27 +000040 . = DEFINED(env_offset) ? env_offset : .;
Jean-Christophe PLAGNIOL-VILLARD0cf4fd32008-09-10 22:48:01 +020041 common/env_embedded.o (.ppcenv)
wdenkc6097192002-11-03 00:24:07 +000042
43 *(.text)
44 }
45
wdenk8bde7f72003-06-27 21:31:46 +000046 . = ALIGN(4);
Trent Piephof62fb992009-02-18 15:22:05 -080047 .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
wdenkc6097192002-11-03 00:24:07 +000048
wdenk8bde7f72003-06-27 21:31:46 +000049 . = ALIGN(4);
50 .data : { *(.data) }
wdenkc6097192002-11-03 00:24:07 +000051
wdenk8bde7f72003-06-27 21:31:46 +000052 . = ALIGN(4);
53 .got : { *(.got) }
54
Wolfgang Denk807d5d72005-08-31 12:28:00 +020055 . = .;
wdenkf6e20fc2004-02-08 19:38:38 +000056 __u_boot_cmd_start = .;
57 .u_boot_cmd : { *(.u_boot_cmd) }
58 __u_boot_cmd_end = .;
wdenkc6097192002-11-03 00:24:07 +000059
wdenk8bde7f72003-06-27 21:31:46 +000060 . = ALIGN(4);
wdenkf6e20fc2004-02-08 19:38:38 +000061 __bss_start = .;
Selvamuthukumar9b827cf2008-10-16 22:54:03 +053062 .bss (NOLOAD) : { *(.bss) . = ALIGN(4); }
wdenkf6e20fc2004-02-08 19:38:38 +000063 _end = .;
wdenkc6097192002-11-03 00:24:07 +000064}