]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/mvblue/u-boot.lds
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / mvblue / u-boot.lds
CommitLineData
de550d6b
WD
1/*
2 * (C) Copyright 2001-2007
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
de550d6b
WD
6 */
7
8OUTPUT_ARCH(powerpc)
9/* Do we need any of these for elf?
10 __DYNAMIC = 0; */
11SECTIONS
12{
13 /* Read-only sections, merged into text segment: */
14 .text :
15 {
16 arch/powerpc/cpu/mpc824x/start.o (.text*)
17 lib/libgeneric.o (.text*)
18 net/libnet.o (.text*)
19 drivers/pci/libpci.o (.text*)
20 arch/powerpc/cpu/mpc824x/libmpc824x.o (.text*)
21 board/mvblue/libmvblue.o (.text*)
22 arch/powerpc/lib/libpowerpc.o (.text*)
23
24 . = DEFINED(env_offset) ? env_offset : .;
25 common/env_embedded.o (.ppcenv*)
26
27 *(.text*)
28 . = ALIGN(16);
29 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
30 }
31
32 /* Read-write section, merged into data segment: */
33 . = (. + 0x0FFF) & 0xFFFFF000;
34 _erotext = .;
35 PROVIDE (erotext = .);
36 .reloc :
37 {
de550d6b
WD
38 _GOT2_TABLE_ = .;
39 KEEP(*(.got2))
9d8fbd1b
JT
40 KEEP(*(.got))
41 PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
de550d6b
WD
42 _FIXUP_TABLE_ = .;
43 KEEP(*(.fixup))
44 }
9d8fbd1b 45 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
de550d6b
WD
46 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
47
48 .data :
49 {
50 *(.data*)
51 *(.sdata*)
52 }
53 _edata = .;
54 PROVIDE (edata = .);
55
56 . = .;
de550d6b 57
55675142
MV
58 . = ALIGN(4);
59 .u_boot_list : {
ef123c52 60 KEEP(*(SORT(.u_boot_list*)));
55675142
MV
61 }
62
de550d6b
WD
63
64 . = .;
65 __start___ex_table = .;
66 __ex_table : { *(__ex_table) }
67 __stop___ex_table = .;
68
69 . = ALIGN(4096);
70 __init_begin = .;
71 .text.init : { *(.text.init) }
72 .data.init : { *(.data.init) }
73 . = ALIGN(4096);
74 __init_end = .;
75
76 __bss_start = .;
77 .bss (NOLOAD) :
78 {
79 *(.bss*)
80 *(.sbss*)
81 *(COMMON)
82 . = ALIGN(4);
83 }
3929fb0a 84 __bss_end = . ;
de550d6b
WD
85 PROVIDE (end = .);
86}