]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - nand_spl/board/amcc/acadia/u-boot.lds
net/phy: Correct AR8021 phy_mask
[karo-tx-uboot.git] / nand_spl / board / amcc / acadia / 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 0xf8004ffc :
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 }