]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/arm920t/ep93xx/u-boot.lds
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / cpu / arm920t / ep93xx / u-boot.lds
CommitLineData
fcfb632b
MK
1/*
2 * (C) Copyright 2002
3 * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
fcfb632b
MK
6 */
7
8OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
9OUTPUT_ARCH(arm)
10ENTRY(_start)
11SECTIONS
12{
13 . = 0x00000000;
14
15 . = ALIGN(4);
16 .text :
17 {
d026dec8 18 *(.__image_copy_start)
1a9a91dc 19 arch/arm/cpu/arm920t/start.o (.text*)
fcfb632b
MK
20 /* the EP93xx expects to find the pattern 'CRUS' at 0x1000 */
21 . = 0x1000;
22 LONG(0x53555243)
1a9a91dc 23 *(.text*)
fcfb632b
MK
24 }
25
26 . = ALIGN(4);
1a9a91dc 27 .rodata : { *(.rodata*) }
fcfb632b
MK
28
29 . = ALIGN(4);
1a9a91dc 30 .data : { *(.data*) }
fcfb632b
MK
31
32 . = ALIGN(4);
33 .got : { *(.got) }
34
35 . = .;
fcfb632b 36
55675142
MV
37 . = ALIGN(4);
38 .u_boot_list : {
ef123c52 39 KEEP(*(SORT(.u_boot_list*)));
55675142
MV
40 }
41
fcfb632b 42 . = ALIGN(4);
7086e91b 43
d026dec8
AA
44 .image_copy_end :
45 {
46 *(.__image_copy_end)
47 }
7086e91b 48
fcfb632b 49 __bss_start = .;
1a9a91dc 50 .bss : { *(.bss*) }
3929fb0a 51 __bss_end = .;
f326cbba
PYC
52
53 _end = .;
fcfb632b 54}