]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/hymod/u-boot.lds
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / board / hymod / u-boot.lds
CommitLineData
efee1709
WD
1/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
efee1709
WD
6 */
7
8OUTPUT_ARCH(powerpc)
efee1709
WD
9/* Do we need any of these for elf?
10 __DYNAMIC = 0; */
11SECTIONS
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) }
53677ef1 20 .rela.text : { *(.rela.text) }
efee1709 21 .rel.data : { *(.rel.data) }
53677ef1
WD
22 .rela.data : { *(.rela.data) }
23 .rel.rodata : { *(.rel.rodata) }
24 .rela.rodata : { *(.rela.rodata) }
efee1709
WD
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
a47a12be 42 arch/powerpc/cpu/mpc8260/start.o (.text)
efee1709
WD
43/*
44 common/dlmalloc.o (.text)
a47a12be 45 arch/powerpc/lib/ppcstring.o (.text)
78acc472
PT
46 lib/vsprintf.o (.text)
47 lib/crc32.o (.text)
48 lib/zlib.o (.text)
efee1709
WD
49
50 . = env_offset;
51*/
0cf4fd3c 52 common/env_embedded.o(.text)
efee1709
WD
53
54 *(.text)
efee1709
WD
55 *(.got1)
56 }
57 _etext = .;
58 PROVIDE (etext = .);
59 .rodata :
60 {
7481266e 61 *(.eh_frame)
f62fb999 62 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
efee1709
WD
63 }
64 .fini : { *(.fini) } =0
65 .ctors : { *(.ctors) }
66 .dtors : { *(.dtors) }
67
68 /* Read-write section, merged into data segment: */
69 . = (. + 0x0FFF) & 0xFFFFF000;
70 _erotext = .;
71 PROVIDE (erotext = .);
72 .reloc :
73 {
efee1709 74 _GOT2_TABLE_ = .;
9e2b5176
WD
75 KEEP(*(.got2))
76 KEEP(*(.got))
77 PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
efee1709
WD
78 _FIXUP_TABLE_ = .;
79 *(.fixup)
80 }
9d8fbd1b 81 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
efee1709
WD
82 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
83
84 .data :
85 {
86 *(.data)
87 *(.data1)
88 *(.sdata)
89 *(.sdata2)
90 *(.dynamic)
91 CONSTRUCTORS
92 }
93 _edata = .;
94 PROVIDE (edata = .);
95
807d5d73 96 . = .;
8bde7f77 97
55675142
MV
98 . = ALIGN(4);
99 .u_boot_list : {
ef123c52 100 KEEP(*(SORT(.u_boot_list*)));
55675142
MV
101 }
102
8bde7f77 103
807d5d73 104 . = .;
efee1709
WD
105 __start___ex_table = .;
106 __ex_table : { *(__ex_table) }
107 __stop___ex_table = .;
108
109 . = ALIGN(4096);
110 __init_begin = .;
111 .text.init : { *(.text.init) }
112 .data.init : { *(.data.init) }
113 . = ALIGN(4096);
114 __init_end = .;
115
116 __bss_start = .;
64134f01 117 .bss (NOLOAD) :
efee1709
WD
118 {
119 *(.sbss) *(.scommon)
120 *(.dynbss)
121 *(.bss)
122 *(COMMON)
123 }
124 . = ALIGN(256 * 1024);
125 .ppcenv :
126 {
0cf4fd3c 127 common/env_embedded.o (.ppcenv)
efee1709 128 }
9b827cf1 129 . = ALIGN(4);
3929fb0a 130 __bss_end = . ;
efee1709
WD
131 PROVIDE (end = .);
132}