]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - board/freescale/mx25_3stack/u-boot.lds
merged current version of git://git.denx.de/u-boot
[karo-tx-uboot.git] / board / freescale / mx25_3stack / u-boot.lds
1 /*
2  * (c) Copyright 2009 Freescale Semiconductor
3  *
4  * January 2004 - Changed to support H4 device
5  * Copyright (c) 2004 Texas Instruments
6  *
7  * (C) Copyright 2002
8  * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
9  *
10  * See file CREDITS for list of people who contributed to this
11  * project.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License as
15  * published by the Free Software Foundation; either version 2 of
16  * the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26  * MA 02111-1307 USA
27  */
28
29 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
30 OUTPUT_ARCH(arm)
31 ENTRY(_start)
32 SECTIONS
33 {
34         . = 0x00000000;
35
36         . = ALIGN(4);
37         .text      :
38         {
39           board/freescale/mx25_3stack/dcdheader.o (.text)
40           cpu/arm926ejs/start.o (.text)
41           *(.text)
42         }
43
44         . = ALIGN(4);
45         .rodata : { *(.rodata) }
46
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 = .;
60         .bss : { *(.bss) }
61         _end = .;
62 }