]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/davinci/da8xxevm/u-boot-spl-da850evm.lds
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / davinci / da8xxevm / u-boot-spl-da850evm.lds
CommitLineData
3d2c8e6c
CR
1/*
2 * (C) Copyright 2002
3 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
4 *
5 * (C) Copyright 2008
6 * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
7 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
3d2c8e6c
CR
9 */
10
11MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
b7b5f1a1 12 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
3d2c8e6c
CR
13
14OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
15OUTPUT_ARCH(arm)
16ENTRY(_start)
17SECTIONS
18{
19 . = 0x00000000;
20
21 . = ALIGN(4);
22 .text :
23 {
24 __start = .;
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
3d2c8e6c
CR
35 . = ALIGN(4);
36 .rel.dyn : {
37 __rel_dyn_start = .;
38 *(.rel*)
39 __rel_dyn_end = .;
40 } >.sram
41
3d2c8e6c
CR
42 .bss :
43 {
44 . = ALIGN(4);
45 __bss_start = .;
46 *(.bss*)
47 . = ALIGN(4);
3929fb0a 48 __bss_end = .;
3d2c8e6c
CR
49 } >.sram
50
51 __image_copy_end = .;
52 _end = .;
53}