blob: 72f45f80040cf1fe644349edda6f187da7cc3698 [file] [log] [blame]
Alessandro Rubinibb930d12009-01-24 18:10:37 +01001/*
Jean-Christophe PLAGNIOL-VILLARD7580b862009-05-08 20:24:12 +02002 * (C) Copyright 2002-2004
3 * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
Alessandro Rubinibb930d12009-01-24 18:10:37 +01004 *
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")
25OUTPUT_ARCH(arm)
26ENTRY(_start)
27SECTIONS
28{
29 . = 0x00000000;
Jean-Christophe PLAGNIOL-VILLARD7580b862009-05-08 20:24:12 +020030
Alessandro Rubinibb930d12009-01-24 18:10:37 +010031 . = ALIGN(4);
Jean-Christophe PLAGNIOL-VILLARD7580b862009-05-08 20:24:12 +020032 .text :
Alessandro Rubinibb930d12009-01-24 18:10:37 +010033 {
Peter Tyserf7c67372010-04-12 22:28:11 -050034 arch/arm/cpu/arm926ejs/start.o (.text)
Alessandro Rubinibb930d12009-01-24 18:10:37 +010035 *(.text)
36 }
Jean-Christophe PLAGNIOL-VILLARD7580b862009-05-08 20:24:12 +020037
Alessandro Rubinibb930d12009-01-24 18:10:37 +010038 . = ALIGN(4);
Trent Piepho4438e5e2009-02-18 15:22:05 -080039 .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
Jean-Christophe PLAGNIOL-VILLARD7580b862009-05-08 20:24:12 +020040
Alessandro Rubinibb930d12009-01-24 18:10:37 +010041 . = ALIGN(4);
Heiko Schocher0e2412a2010-09-17 13:10:42 +020042 .data : {
43 *(.data)
Heiko Schocher0e2412a2010-09-17 13:10:42 +020044 }
Jean-Christophe PLAGNIOL-VILLARD7580b862009-05-08 20:24:12 +020045
Alessandro Rubinibb930d12009-01-24 18:10:37 +010046 . = ALIGN(4);
Alessandro Rubinibb930d12009-01-24 18:10:37 +010047
Albert Aribaud6d1fcb12010-10-11 13:13:28 +020048 __rel_dyn_start = .;
49 .rel.dyn : { *(.rel.dyn) }
50 __rel_dyn_end = .;
51
52 __dynsym_start = .;
53 .dynsym : { *(.dynsym) }
54
55 . = ALIGN(4);
56
Jean-Christophe PLAGNIOL-VILLARD7580b862009-05-08 20:24:12 +020057 . = .;
Alessandro Rubinibb930d12009-01-24 18:10:37 +010058 __u_boot_cmd_start = .;
59 .u_boot_cmd : { *(.u_boot_cmd) }
60 __u_boot_cmd_end = .;
61
62 . = ALIGN(4);
63 __bss_start = .;
64 .bss (NOLOAD) : { *(.bss) . = ALIGN(4); }
65 _end = .;
Albert Aribaud6d1fcb12010-10-11 13:13:28 +020066
67 /DISCARD/ : { *(.dynstr*) }
68 /DISCARD/ : { *(.dynamic*) }
69 /DISCARD/ : { *(.plt*) }
70 /DISCARD/ : { *(.interp*) }
71 /DISCARD/ : { *(.gnu*) }
Alessandro Rubinibb930d12009-01-24 18:10:37 +010072}