]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/svm_sc8xx/u-boot.lds
karo: tx6: add support for TX6 HW Rev. 3
[karo-tx-uboot.git] / board / svm_sc8xx / u-boot.lds
1 /*
2  * (C) Copyright 2000-2010
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 OUTPUT_ARCH(powerpc)
9
10 SECTIONS
11 {
12   /* Read-only sections, merged into text segment: */
13   . = + SIZEOF_HEADERS;
14   .text      :
15   {
16     /* WARNING - the following is hand-optimized to fit within  */
17     /* the sector layout of our flash chips!    XXX FIXME XXX   */
18     arch/powerpc/cpu/mpc8xx/start.o     (.text*)
19     arch/powerpc/cpu/mpc8xx/traps.o     (.text*)
20     lib/libgeneric.o                    (.text*)
21     net/libnet.o                        (.text*)
22     arch/powerpc/cpu/mpc8xx/libmpc8xx.o (.text*)
23     arch/powerpc/lib/libpowerpc.o       (.text*)
24     board/svm_sc8xx/libsvm_sc8xx.o      (.text*)
25     *(.text.*printf)
26     *(.text.do_mem_*)
27     *(.text.flash*)
28     *(.text.run_command)
29     *(.text.main_loop)
30     *(.text.srec_decode)
31
32     . = env_offset;
33     common/env_embedded.o               (.ppcenv*)
34
35     *(.text*)
36   }
37   _etext = .;
38   PROVIDE (etext = .);
39   .rodata    :
40   {
41     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
42   }
43
44   /* Read-write section, merged into data segment: */
45   . = (. + 0x00FF) & 0xFFFFFF00;
46   _erotext = .;
47   PROVIDE (erotext = .);
48   .reloc   :
49   {
50     _GOT2_TABLE_ = .;
51     KEEP(*(.got2))
52     KEEP(*(.got))
53     PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
54     _FIXUP_TABLE_ = .;
55     KEEP(*(.fixup))
56   }
57   __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
58   __fixup_entries = (. - _FIXUP_TABLE_)>>2;
59
60   .data    :
61   {
62     *(.data*)
63     *(.sdata*)
64   }
65   _edata  =  .;
66   PROVIDE (edata = .);
67
68
69   . = .;
70
71   . = ALIGN(4);
72   .u_boot_list : {
73         KEEP(*(SORT(.u_boot_list*)));
74   }
75
76
77   . = .;
78   __start___ex_table = .;
79   __ex_table : { *(__ex_table) }
80   __stop___ex_table = .;
81
82   . = ALIGN(256);
83   __init_begin = .;
84   .text.init : { *(.text.init) }
85   .data.init : { *(.data.init) }
86   . = ALIGN(256);
87   __init_end = .;
88
89   __bss_start = .;
90   .bss (NOLOAD)       :
91   {
92    *(.bss*)
93    *(.sbss*)
94    *(COMMON)
95    . = ALIGN(4);
96   }
97   __bss_end = . ;
98   PROVIDE (end = .);
99 }