aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'board/Barix/ipam390/u-boot-spl-ipam390.lds')
-rw-r--r--board/Barix/ipam390/u-boot-spl-ipam390.lds57
1 files changed, 0 insertions, 57 deletions
diff --git a/board/Barix/ipam390/u-boot-spl-ipam390.lds b/board/Barix/ipam390/u-boot-spl-ipam390.lds
deleted file mode 100644
index cf13e0a41c..0000000000
--- a/board/Barix/ipam390/u-boot-spl-ipam390.lds
+++ /dev/null
@@ -1,57 +0,0 @@
1/* SPDX-License-Identifier: GPL-2.0+ */
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>
8 */
9
10MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
11 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
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 = .;
24 *(.vectors)
25 arch/arm/cpu/arm926ejs/start.o (.text*)
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
34
35 . = ALIGN(4);
36 .rel.dyn : {
37 __rel_dyn_start = .;
38 *(.rel*)
39 __rel_dyn_end = .;
40 } >.sram
41
42 .bss :
43 {
44 . = ALIGN(4);
45 __bss_start = .;
46 *(.bss*)
47 . = ALIGN(4);
48 __bss_end = .;
49 } >.sram
50
51 __image_copy_end = .;
52
53 .end :
54 {
55 *(.__end)
56 } >.sram
57}