]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/freescale/m54418twr/u-boot.lds
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / freescale / m54418twr / u-boot.lds
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(m68k)
9
10 SECTIONS
11 {
12 /* Read-only sections, merged into text segment: */
13 .text :
14 {
15 arch/m68k/cpu/mcf5445x/start.o (.text*)
16
17 *(.text*)
18 }
19 _etext = .;
20 PROVIDE (etext = .);
21 .rodata :
22 {
23 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
24 }
25
26 /* Read-write section, merged into data segment: */
27 . = (. + 0x00FF) & 0xFFFFFF00;
28 _erotext = .;
29 PROVIDE (erotext = .);
30
31 .reloc :
32 {
33 __got_start = .;
34 KEEP(*(.got))
35 __got_end = .;
36 _GOT2_TABLE_ = .;
37 KEEP(*(.got2))
38 _FIXUP_TABLE_ = .;
39 KEEP(*(.fixup))
40 }
41 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
42 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
43
44 .data :
45 {
46 *(.data*)
47 *(.sdata*)
48 }
49 _edata = .;
50 PROVIDE (edata = .);
51
52 . = .;
53
54 . = ALIGN(4);
55 .u_boot_list : {
56 KEEP(*(SORT(.u_boot_list*)));
57 }
58
59 . = .;
60 __start___ex_table = .;
61 __ex_table : { *(__ex_table) }
62 __stop___ex_table = .;
63
64 . = ALIGN(256);
65 __init_begin = .;
66 .text.init : { *(.text.init) }
67 .data.init : { *(.data.init) }
68 . = ALIGN(256);
69 __init_end = .;
70
71 __bss_start = .;
72 .bss (NOLOAD) :
73 {
74 _sbss = .;
75 *(.bss*)
76 *(.sbss*)
77 *(COMMON)
78 . = ALIGN(4);
79 _ebss = .;
80 }
81 __bss_end = . ;
82 PROVIDE (end = .);
83 }