blob: f8ef00c32d53fc95b95c9cf83850390192809d4b [file] [log] [blame]
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +02001/*
2 * January 2004 - Changed to support H4 device
3 * Copyright (c) 2004 Texas Instruments
4 *
5 * (C) Copyright 2002
Detlev Zundel792a09e2009-05-13 10:54:10 +02006 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +02007 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
28OUTPUT_ARCH(arm)
29ENTRY(_start)
30SECTIONS
31{
32 . = 0x00000000;
33
34 . = ALIGN(4);
35 .text :
36 {
Albert ARIBAUDd026dec2013-06-11 14:17:33 +020037 *(.__image_copy_start)
Guennadi Liakhovetskid23ff682008-04-03 17:04:22 +020038 /* WARNING - the following is hand-optimized to fit within */
39 /* the sector layout of our flash chips! XXX FIXME XXX */
40
Benoît Thébaudeau1a9a91d2013-04-11 09:36:03 +000041 arch/arm/cpu/arm1136/start.o (.text*)
42 board/freescale/mx31ads/libmx31ads.o (.text*)
43 arch/arm/lib/libarm.o (.text*)
44 net/libnet.o (.text*)
45 drivers/mtd/libmtd.o (.text*)
Guennadi Liakhovetskid23ff682008-04-03 17:04:22 +020046
47 . = DEFINED(env_offset) ? env_offset : .;
Benoît Thébaudeau1a9a91d2013-04-11 09:36:03 +000048 common/env_embedded.o(.text*)
Guennadi Liakhovetskid23ff682008-04-03 17:04:22 +020049
Benoît Thébaudeau1a9a91d2013-04-11 09:36:03 +000050 *(.text*)
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +020051 }
Fabio Estevam4ac2e2d2011-06-05 06:26:49 +000052 . = ALIGN(4);
Benoît Thébaudeau1a9a91d2013-04-11 09:36:03 +000053 .rodata : { *(.rodata*) }
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +020054
55 . = ALIGN(4);
Fabio Estevam4ac2e2d2011-06-05 06:26:49 +000056 .data : {
Benoît Thébaudeau1a9a91d2013-04-11 09:36:03 +000057 *(.data*)
Fabio Estevam4ac2e2d2011-06-05 06:26:49 +000058 }
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +020059
60 . = ALIGN(4);
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +020061
62 . = ALIGN(4);
Marek Vasut55675142012-10-12 10:27:03 +000063 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000064 KEEP(*(SORT(.u_boot_list*)));
Marek Vasut55675142012-10-12 10:27:03 +000065 }
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +020066
67 . = ALIGN(4);
Fabio Estevam4ac2e2d2011-06-05 06:26:49 +000068
Albert ARIBAUDd026dec2013-06-11 14:17:33 +020069 .image_copy_end :
70 {
71 *(.__image_copy_end)
72 }
Stefano Babicb736e4b2012-10-10 21:11:41 +000073
Fabio Estevam4ac2e2d2011-06-05 06:26:49 +000074 .rel.dyn : {
75 __rel_dyn_start = .;
76 *(.rel*)
77 __rel_dyn_end = .;
78 }
79
Fabio Estevam4ac2e2d2011-06-05 06:26:49 +000080 _end = .;
81
Albert ARIBAUDf84a7b82013-04-11 05:43:21 +000082/*
83 * Compiler-generated __bss_start and __bss_end, see arch/arm/lib/bss.c
84 * __bss_base and __bss_limit are for linker only (overlay ordering)
85 */
86
Albert ARIBAUD3ebd1cb2013-02-25 00:58:59 +000087 .bss_start __rel_dyn_start (OVERLAY) : {
88 KEEP(*(.__bss_start));
Albert ARIBAUDf84a7b82013-04-11 05:43:21 +000089 __bss_base = .;
Albert ARIBAUD3ebd1cb2013-02-25 00:58:59 +000090 }
91
Albert ARIBAUDf84a7b82013-04-11 05:43:21 +000092 .bss __bss_base (OVERLAY) : {
Albert ARIBAUD3ebd1cb2013-02-25 00:58:59 +000093 *(.bss*)
Fabio Estevam4ac2e2d2011-06-05 06:26:49 +000094 . = ALIGN(4);
Albert ARIBAUDf84a7b82013-04-11 05:43:21 +000095 __bss_limit = .;
Albert ARIBAUD3ebd1cb2013-02-25 00:58:59 +000096 }
Albert ARIBAUDf84a7b82013-04-11 05:43:21 +000097 .bss_end __bss_limit (OVERLAY) : {
98 KEEP(*(.__bss_end));
Fabio Estevam4ac2e2d2011-06-05 06:26:49 +000099 }
100
101 /DISCARD/ : { *(.bss*) }
Albert ARIBAUD09d81182013-06-11 14:17:31 +0200102 /DISCARD/ : { *(.dynsym) }
Fabio Estevam4ac2e2d2011-06-05 06:26:49 +0000103 /DISCARD/ : { *(.dynstr*) }
104 /DISCARD/ : { *(.dynsym*) }
105 /DISCARD/ : { *(.dynamic*) }
106 /DISCARD/ : { *(.hash*) }
107 /DISCARD/ : { *(.plt*) }
108 /DISCARD/ : { *(.interp*) }
109 /DISCARD/ : { *(.gnu*) }
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +0200110}