Marek Vasut | 04fe427 | 2011-11-08 23:18:21 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> |
| 3 | * on behalf of DENX Software Engineering GmbH |
| 4 | * |
| 5 | * January 2004 - Changed to support H4 device |
| 6 | * Copyright (c) 2004-2008 Texas Instruments |
| 7 | * |
| 8 | * (C) Copyright 2002 |
| 9 | * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de> |
| 10 | * |
| 11 | * See file CREDITS for list of people who contributed to this |
| 12 | * project. |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or |
| 15 | * modify it under the terms of the GNU General Public License as |
| 16 | * published by the Free Software Foundation; either version 2 of |
| 17 | * the License, or (at your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program; if not, write to the Free Software |
| 26 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 27 | * MA 02111-1307 USA |
| 28 | */ |
| 29 | |
| 30 | OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") |
| 31 | OUTPUT_ARCH(arm) |
| 32 | ENTRY(_start) |
| 33 | SECTIONS |
| 34 | { |
| 35 | . = 0x00000000; |
| 36 | |
| 37 | . = ALIGN(4); |
| 38 | .text : |
| 39 | { |
Otavio Salvador | 3a0398d | 2012-08-05 09:05:29 +0000 | [diff] [blame] | 40 | arch/arm/cpu/arm926ejs/mxs/start.o (.text) |
Marek Vasut | 04fe427 | 2011-11-08 23:18:21 +0000 | [diff] [blame] | 41 | *(.text) |
| 42 | } |
| 43 | |
| 44 | . = ALIGN(4); |
| 45 | .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } |
| 46 | |
| 47 | . = ALIGN(4); |
| 48 | .data : { |
| 49 | *(.data) |
| 50 | } |
| 51 | |
| 52 | . = ALIGN(4); |
Marek Vasut | 04fe427 | 2011-11-08 23:18:21 +0000 | [diff] [blame] | 53 | |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 54 | .u_boot_list : { |
| 55 | #include <u-boot.lst> |
| 56 | } |
| 57 | |
Marek Vasut | 04fe427 | 2011-11-08 23:18:21 +0000 | [diff] [blame] | 58 | . = ALIGN(4); |
| 59 | |
| 60 | .rel.dyn : { |
| 61 | __rel_dyn_start = .; |
| 62 | *(.rel*) |
| 63 | __rel_dyn_end = .; |
| 64 | } |
| 65 | |
| 66 | .dynsym : { |
| 67 | __dynsym_start = .; |
| 68 | *(.dynsym) |
| 69 | } |
| 70 | |
Marek Vasut | 8ba1604 | 2011-12-08 09:46:12 +0000 | [diff] [blame] | 71 | .bss : { |
| 72 | . = ALIGN(4); |
Marek Vasut | 04fe427 | 2011-11-08 23:18:21 +0000 | [diff] [blame] | 73 | __bss_start = .; |
Marek Vasut | 8ba1604 | 2011-12-08 09:46:12 +0000 | [diff] [blame] | 74 | *(.bss*) |
| 75 | . = ALIGN(4); |
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame^] | 76 | __bss_end = .; |
Marek Vasut | 04fe427 | 2011-11-08 23:18:21 +0000 | [diff] [blame] | 77 | } |
| 78 | |
Marek Vasut | 8ba1604 | 2011-12-08 09:46:12 +0000 | [diff] [blame] | 79 | _end = .; |
| 80 | |
Marek Vasut | 04fe427 | 2011-11-08 23:18:21 +0000 | [diff] [blame] | 81 | /DISCARD/ : { *(.dynstr*) } |
| 82 | /DISCARD/ : { *(.dynsym*) } |
| 83 | /DISCARD/ : { *(.dynamic*) } |
| 84 | /DISCARD/ : { *(.hash*) } |
| 85 | /DISCARD/ : { *(.plt*) } |
| 86 | /DISCARD/ : { *(.interp*) } |
| 87 | /DISCARD/ : { *(.gnu*) } |
| 88 | } |