]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/mousse/u-boot.lds.rom
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / mousse / u-boot.lds.rom
1 /*
2 * (C) Copyright 2001
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 arch/powerpc/cpu/mpc824x/start.o (.text)
40 common/board.o (.text)
41 arch/powerpc/lib/ppcstring.o (.text)
42 lib/vsprintf.o (.text)
43 lib/crc32.o (.text)
44 lib/zlib.o (.text)
45
46 . = env_offset;
47 common/env_embedded.o (.text)
48
49 *(.text)
50
51 *(.got1)
52 . = ALIGN(16);
53 *(.rodata)
54 *(.rodata1)
55 *(.rodata.str1.4)
56 *(.eh_frame)
57 }
58 .fini : { *(.fini) } =0
59 .ctors : { *(.ctors) }
60 .dtors : { *(.dtors) }
61
62 /* Read-write section, merged into data segment: */
63 . = (. + 0x0FF) & 0xFFFFFF00;
64 _erotext = .;
65 PROVIDE (erotext = .);
66 .reloc :
67 {
68 *(.got)
69 _GOT2_TABLE_ = .;
70 *(.got2)
71 _FIXUP_TABLE_ = .;
72 *(.fixup)
73 }
74 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >> 2;
75 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
76
77 .data :
78 {
79 *(.data)
80 *(.data1)
81 *(.sdata)
82 *(.sdata2)
83 *(.dynamic)
84 CONSTRUCTORS
85 }
86 _edata = .;
87 PROVIDE (edata = .);
88
89
90 __start___ex_table = .;
91 __ex_table : { *(__ex_table) }
92 __stop___ex_table = .;
93
94 . = ALIGN(4096);
95 __init_begin = .;
96 .text.init : { *(.text.init) }
97 .data.init : { *(.data.init) }
98 . = ALIGN(4096);
99 __init_end = .;
100
101 __bss_start = .;
102 .bss :
103 {
104 *(.sbss) *(.scommon)
105 *(.dynbss)
106 *(.bss)
107 *(COMMON)
108 }
109
110 __bss_end = . ;
111 PROVIDE (end = .);
112 }