]> git.ipfire.org Git - people/ms/u-boot.git/blame - nand_spl/board/amcc/canyonlands/u-boot.lds
net/phy: Correct AR8021 phy_mask
[people/ms/u-boot.git] / nand_spl / board / amcc / canyonlands / u-boot.lds
CommitLineData
71665ebf
SR
1/*
2 * (C) Copyright 2008
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
71665ebf
SR
6 */
7
8OUTPUT_ARCH(powerpc:common)
9SECTIONS
10{
11 .resetvec 0xE3003FFC :
12 {
ee8028b7 13 KEEP(*(.resetvec))
71665ebf
SR
14 } = 0xffff
15
16 .text :
17 {
18 start.o (.text)
19 init.o (.text)
20 nand_boot.o (.text)
21 ddr2_fixed.o (.text)
22 ndfc.o (.text)
23
24 *(.text)
25 *(.fixup)
26 }
27 _etext = .;
28
29 .data :
30 {
f62fb999 31 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
71665ebf
SR
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)
9b827cf1 46 . = ALIGN(4);
71665ebf
SR
47 }
48
3929fb0a 49 __bss_end = . ;
71665ebf 50}