]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/ait/cam_enc_4xx/u-boot-spl.lds
usb: dwc2: Rename to dwc2_usb
[karo-tx-uboot.git] / board / ait / cam_enc_4xx / u-boot-spl.lds
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  *
8  * SPDX-License-Identifier:     GPL-2.0+
9  */
10
11 MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
12                 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
13
14 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
15 OUTPUT_ARCH(arm)
16 ENTRY(_start)
17 SECTIONS
18 {
19         . = CONFIG_SPL_TEXT_BASE;
20
21         . = ALIGN(4);
22         .text      :
23         {
24         __start = .;
25           *(.vectors)
26           arch/arm/cpu/arm926ejs/start.o        (.text*)
27           *(.text*)
28         } >.sram
29
30         . = ALIGN(4);
31         .rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram
32
33         . = ALIGN(4);
34         .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
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         }
57 }