]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/mousse/u-boot.lds.ram
nand: remove CONFIG_SYS_NAND_PAGE_SIZE
[karo-tx-uboot.git] / board / mousse / u-boot.lds.ram
1 /*
2  * (C) Copyright 2000
3  * Rob Taylor, Flying Pig Systems Ltd. robt@flyingpig.com
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 OUTPUT_ARCH(powerpc)
9
10 MEMORY {
11         ram  (!rx) : org = 0x00000000 , LENGTH = 8M
12         code (!rx) : org = 0x00002000 , LENGTH = (4M - 0x2000)
13         rom   (rx) : org = 0xfff00000 , LENGTH = 512K
14 }
15
16 SECTIONS
17 {
18   _f_init = .;
19   PROVIDE(_f_init = .);
20   _f_init_rom = .;
21   PROVIDE(_f_init_rom = .);
22
23   .init : {
24       arch/powerpc/cpu/mpc824x/start.o  (.text)
25       *(.init)
26   } > ram
27   _init_size = SIZEOF(.init);
28   PROVIDE(_init_size = SIZEOF(.init));
29
30   ENTRY(_start)
31
32 /*  _ftext = .;
33   _ftext_rom = .;
34   _text_size = SIZEOF(.text);
35  */
36   .text : {
37       *(.text)
38       *(.got1)
39       } > ram
40   .rodata : { *(.rodata) } > ram
41   .dtors : { *(.dtors) } > ram
42   .data : { *(.data) } > ram
43   .sdata : { *(.sdata) } > ram
44   .sdata2 : { *(.sdata2)
45       *(.got)
46     _GOT2_TABLE_ = .;
47     *(.got2)
48     _FIXUP_TABLE_ = .;
49     *(.fixup)
50     } > ram
51   __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
52   __fixup_entries = (. - _FIXUP_TABLE_)>>2;
53
54   .sbss : { *(.sbss) } > ram
55   .sbss2 : { *(.sbss2) } > ram
56   .bss : { *(.bss) } > ram
57   .debug : { *(.debug) } > ram
58   .line : { *(.line) } > ram
59   .symtab : { *(.symtab) } > ram
60   .shrstrtab : { *(.shstrtab) } > ram
61   .strtab : { *(.strtab) } > ram
62  /* .reloc   :
63   {
64     *(.got)
65     _GOT2_TABLE_ = .;
66     *(.got2)
67     _FIXUP_TABLE_ = .;
68     *(.fixup)
69   } > ram
70   */
71
72
73    __start___ex_table = .;
74     __ex_table : { *(__ex_table) } > ram
75     __stop___ex_table = .;
76
77
78   .ppcenv       :
79   {
80     common/env_embedded.o (.ppcenv)
81   } > ram
82
83   __bss_end = . ;
84   PROVIDE (end = .);
85 }