]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/esteem192e/u-boot.lds
karo: tx6: add support for TX6 HW Rev. 3
[karo-tx-uboot.git] / board / esteem192e / 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
19     arch/powerpc/cpu/mpc8xx/start.o     (.text*)
20     arch/powerpc/cpu/mpc8xx/traps.o     (.text*)
21     net/libnet.o                        (.text*)
22     board/esteem192e/libesteem192e.o    (.text*)
23
24     . = env_offset;
25     common/env_embedded.o               (.text*)
26
27     *(.text*)
28   }
29   _etext = .;
30   PROVIDE (etext = .);
31   .rodata    :
32   {
33     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
34   }
35
36   /* Read-write section, merged into data segment: */
37   . = (. + 0x00FF) & 0xFFFFFF00;
38   _erotext = .;
39   PROVIDE (erotext = .);
40   .reloc   :
41   {
42     _GOT2_TABLE_ = .;
43     KEEP(*(.got2))
44     KEEP(*(.got))
45     PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
46     _FIXUP_TABLE_ = .;
47     KEEP(*(.fixup))
48   }
49   __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
50   __fixup_entries = (. - _FIXUP_TABLE_)>>2;
51
52   .data    :
53   {
54     *(.data*)
55     *(.sdata*)
56   }
57   _edata  =  .;
58   PROVIDE (edata = .);
59
60   . = .;
61
62   . = ALIGN(4);
63   .u_boot_list : {
64         KEEP(*(SORT(.u_boot_list*)));
65   }
66
67
68   . = .;
69   __start___ex_table = .;
70   __ex_table : { *(__ex_table) }
71   __stop___ex_table = .;
72
73   . = ALIGN(256);
74   __init_begin = .;
75   .text.init : { *(.text.init) }
76   .data.init : { *(.data.init) }
77   . = ALIGN(256);
78   __init_end = .;
79
80   __bss_start = .;
81   .bss (NOLOAD)       :
82   {
83    *(.bss*)
84    *(.sbss*)
85    *(COMMON)
86    . = ALIGN(4);
87   }
88   __bss_end = . ;
89   PROVIDE (end = .);
90 }