]> git.ipfire.org Git - people/ms/u-boot.git/blob - nand_spl/board/amcc/kilauea/u-boot.lds
d7262e6c535bca4e843a7208e14123b6fc4959c5
[people/ms/u-boot.git] / nand_spl / board / amcc / kilauea / 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 nand_boot.o (.text)
20 ndfc.o (.text)
21
22 *(.text)
23 *(.fixup)
24 }
25 _etext = .;
26
27 .data :
28 {
29 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
30 *(.data*)
31 *(.sdata*)
32 __got2_start = .;
33 *(.got2)
34 __got2_end = .;
35 }
36
37 _edata = .;
38
39 __bss_start = .;
40 .bss (NOLOAD) :
41 {
42 *(.sbss)
43 *(.bss)
44 . = ALIGN(4);
45 }
46
47 __bss_end = . ;
48 }