]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/davinci/da8xxevm/u-boot-spl-da850evm.lds
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / board / davinci / da8xxevm / u-boot-spl-da850evm.lds
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
3d2c8e6c
CR
2/*
3 * (C) Copyright 2002
4 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
5 *
6 * (C) Copyright 2008
7 * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
3d2c8e6c
CR
8 */
9
10MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
b7b5f1a1 11 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
3d2c8e6c
CR
12
13OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
14OUTPUT_ARCH(arm)
15ENTRY(_start)
16SECTIONS
17{
18 . = 0x00000000;
19
20 . = ALIGN(4);
21 .text :
22 {
23 __start = .;
eeadd3fe 24 *(.vectors)
1a9a91dc 25 arch/arm/cpu/arm926ejs/start.o (.text*)
3d2c8e6c
CR
26 *(.text*)
27 } >.sram
28
29 . = ALIGN(4);
30 .rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram
31
32 . = ALIGN(4);
33 .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
55675142 34
5d7cdf3a
FP
35 . = ALIGN(4);
36 .u_boot_list : { KEEP(*(SORT(.u_boot_list*))); } >.sram
37
3d2c8e6c
CR
38 . = ALIGN(4);
39 .rel.dyn : {
40 __rel_dyn_start = .;
41 *(.rel*)
42 __rel_dyn_end = .;
43 } >.sram
44
3d2c8e6c
CR
45 .bss :
46 {
47 . = ALIGN(4);
48 __bss_start = .;
49 *(.bss*)
50 . = ALIGN(4);
3929fb0a 51 __bss_end = .;
3d2c8e6c
CR
52 } >.sram
53
54 __image_copy_end = .;
d0b5d9da
AA
55
56 .end :
57 {
58 *(.__end)
59 }
3d2c8e6c 60}