]> git.ipfire.org Git - people/ms/u-boot.git/blob - nand_spl/board/amcc/bamboo/u-boot.lds
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / nand_spl / board / amcc / bamboo / u-boot.lds
1 /*
2 * (C) Copyright 2007
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 OUTPUT_ARCH(powerpc:common)
9 SECTIONS
10 {
11 .resetvec 0x00800FFC :
12 {
13 KEEP(*(.resetvec))
14 } = 0xffff
15
16 .text :
17 {
18 start.o (.text)
19 init.o (.text)
20 nand_boot.o (.text)
21 sdram.o (.text)
22 ndfc.o (.text)
23
24 *(.text)
25 *(.fixup)
26 }
27 _etext = .;
28
29 .data :
30 {
31 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
32 *(.data*)
33 *(.sdata*)
34 __got2_start = .;
35 *(.got2)
36 __got2_end = .;
37 }
38
39 _edata = .;
40
41 __bss_start = .;
42 .bss (NOLOAD) :
43 {
44 *(.sbss)
45 *(.bss)
46 . = ALIGN(4);
47 }
48
49 __bss_end = . ;
50 }