]> git.ipfire.org Git - people/ms/u-boot.git/blame - nand_spl/board/amcc/acadia/u-boot.lds
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / nand_spl / board / amcc / acadia / u-boot.lds
CommitLineData
c440bfe6
SR
1/*
2 * (C) Copyright 2007
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
c440bfe6
SR
6 */
7
8OUTPUT_ARCH(powerpc:common)
9SECTIONS
10{
df8a24cd 11 .resetvec 0xf8004ffc :
c440bfe6 12 {
ee8028b7 13 KEEP(*(.resetvec))
c440bfe6
SR
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 {
f62fb999 29 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
c440bfe6
SR
30 *(.data*)
31 *(.sdata*)
32 __got2_start = .;
33 *(.got2)
34 __got2_end = .;
35 }
36
37 _edata = .;
38
39 __bss_start = .;
64134f01 40 .bss (NOLOAD) :
c440bfe6
SR
41 {
42 *(.sbss)
43 *(.bss)
9b827cf1 44 . = ALIGN(4);
c440bfe6
SR
45 }
46
3929fb0a 47 __bss_end = . ;
c440bfe6 48}