blob: 912a2bb4f19778da9ebca43b0afbeeea3fd73e60 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002
3 * Gary Jennejohn, DENX Software Engineering, <gj@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 */
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 {
35 cpu/arm920t/start.o (.text)
wdenkc6097192002-11-03 00:24:07 +000036 lib_arm/_umodsi3.o (.text)
37 lib_generic/zlib.o (.text)
38 lib_generic/crc32.o (.text)
39 lib_generic/string.o (.text)
40
wdenk47cd00f2003-03-06 13:39:27 +000041 . = DEFINED(env_offset) ? env_offset : .;
Jean-Christophe PLAGNIOL-VILLARD0cf4fd32008-09-10 22:48:01 +020042 common/env_embedded.o (.ppcenv)
wdenkc6097192002-11-03 00:24:07 +000043
44 *(.text)
45 }
46
wdenk8bde7f72003-06-27 21:31:46 +000047 . = ALIGN(4);
Trent Piephof62fb992009-02-18 15:22:05 -080048 .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
wdenkc6097192002-11-03 00:24:07 +000049
wdenk8bde7f72003-06-27 21:31:46 +000050 . = ALIGN(4);
51 .data : { *(.data) }
wdenkc6097192002-11-03 00:24:07 +000052
wdenk8bde7f72003-06-27 21:31:46 +000053 . = ALIGN(4);
54 .got : { *(.got) }
55
Wolfgang Denk807d5d72005-08-31 12:28:00 +020056 . = .;
wdenkf6e20fc2004-02-08 19:38:38 +000057 __u_boot_cmd_start = .;
58 .u_boot_cmd : { *(.u_boot_cmd) }
59 __u_boot_cmd_end = .;
wdenkc6097192002-11-03 00:24:07 +000060
wdenk8bde7f72003-06-27 21:31:46 +000061 . = ALIGN(4);
wdenkf6e20fc2004-02-08 19:38:38 +000062 __bss_start = .;
Selvamuthukumar9b827cf2008-10-16 22:54:03 +053063 .bss (NOLOAD) : { *(.bss) . = ALIGN(4); }
wdenkf6e20fc2004-02-08 19:38:38 +000064 _end = .;
wdenkc6097192002-11-03 00:24:07 +000065}