]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/RPXClassic/u-boot.lds.debug
nand: remove CONFIG_SYS_NAND_PAGE_SIZE
[karo-tx-uboot.git] / board / RPXClassic / u-boot.lds.debug
1 /*
2  * (C) Copyright 2000
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 OUTPUT_ARCH(powerpc)
9 /* Do we need any of these for elf?
10    __DYNAMIC = 0;    */
11 SECTIONS
12 {
13   /* Read-only sections, merged into text segment: */
14   . = + SIZEOF_HEADERS;
15   .interp : { *(.interp) }
16   .hash          : { *(.hash)           }
17   .dynsym        : { *(.dynsym)         }
18   .dynstr        : { *(.dynstr)         }
19   .rel.text      : { *(.rel.text)               }
20   .rela.text     : { *(.rela.text)      }
21   .rel.data      : { *(.rel.data)               }
22   .rela.data     : { *(.rela.data)      }
23   .rel.rodata    : { *(.rel.rodata)     }
24   .rela.rodata   : { *(.rela.rodata)    }
25   .rel.got       : { *(.rel.got)                }
26   .rela.got      : { *(.rela.got)               }
27   .rel.ctors     : { *(.rel.ctors)      }
28   .rela.ctors    : { *(.rela.ctors)     }
29   .rel.dtors     : { *(.rel.dtors)      }
30   .rela.dtors    : { *(.rela.dtors)     }
31   .rel.bss       : { *(.rel.bss)                }
32   .rela.bss      : { *(.rela.bss)               }
33   .rel.plt       : { *(.rel.plt)                }
34   .rela.plt      : { *(.rela.plt)               }
35   .init          : { *(.init)   }
36   .plt : { *(.plt) }
37   .text      :
38   {
39     /* WARNING - the following is hand-optimized to fit within  */
40     /* the sector layout of our flash chips!    XXX FIXME XXX   */
41
42     arch/powerpc/cpu/mpc8xx/start.o     (.text)
43     common/dlmalloc.o   (.text)
44     lib/vsprintf.o      (.text)
45     lib/crc32.o         (.text)
46
47     . = env_offset;
48     common/env_embedded.o(.text)
49
50     *(.text)
51     *(.got1)
52   }
53   _etext = .;
54   PROVIDE (etext = .);
55   .rodata    :
56   {
57     *(.rodata)
58     *(.rodata1)
59     *(.rodata.str1.4)
60     *(.eh_frame)
61   }
62   .fini      : { *(.fini)    } =0
63   .ctors     : { *(.ctors)   }
64   .dtors     : { *(.dtors)   }
65
66   /* Read-write section, merged into data segment: */
67   . = (. + 0x0FFF) & 0xFFFFF000;
68   _erotext = .;
69   PROVIDE (erotext = .);
70   .reloc   :
71   {
72     *(.got)
73     _GOT2_TABLE_ = .;
74     *(.got2)
75     _FIXUP_TABLE_ = .;
76     *(.fixup)
77   }
78   __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
79   __fixup_entries = (. - _FIXUP_TABLE_)>>2;
80
81   .data    :
82   {
83     *(.data)
84     *(.data1)
85     *(.sdata)
86     *(.sdata2)
87     *(.dynamic)
88     CONSTRUCTORS
89   }
90   _edata  =  .;
91   PROVIDE (edata = .);
92
93
94   . = ALIGN(4);
95   .u_boot_list : {
96         KEEP(*(SORT(.u_boot_list*)));
97   }
98
99
100   __start___ex_table = .;
101   __ex_table : { *(__ex_table) }
102   __stop___ex_table = .;
103
104   . = ALIGN(4096);
105   __init_begin = .;
106   .text.init : { *(.text.init) }
107   .data.init : { *(.data.init) }
108   . = ALIGN(4096);
109   __init_end = .;
110
111   __bss_start = .;
112   .bss       :
113   {
114    *(.sbss) *(.scommon)
115    *(.dynbss)
116    *(.bss)
117    *(COMMON)
118   }
119   __bss_end = . ;
120   PROVIDE (end = .);
121 }