]> git.ipfire.org Git - thirdparty/u-boot.git/blob - board/renesas/sh7757lcr/u-boot.lds
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / board / renesas / sh7757lcr / u-boot.lds
1 /*
2 * Copyright (C) 2007
3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 *
5 * Copyright (C) 2011
6 * Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11 OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux")
12 OUTPUT_ARCH(sh)
13 ENTRY(_start)
14
15 SECTIONS
16 {
17 /*
18 * entry and reloct_dst will be provided via ldflags
19 */
20 . = .;
21
22 PROVIDE (_ftext = .);
23 PROVIDE (_fcode = .);
24 PROVIDE (_start = .);
25
26 .text :
27 {
28 KEEP(arch/sh/cpu/sh4/start.o (.text))
29 *(.spiboot1.text)
30 *(.spiboot2.text)
31 . = ALIGN(8192);
32 common/env_embedded.o (.ppcenv)
33 . = ALIGN(8192);
34 common/env_embedded.o (.ppcenvr)
35 . = ALIGN(8192);
36 *(.text)
37 . = ALIGN(4);
38 } =0xFF
39 PROVIDE (_ecode = .);
40 .rodata :
41 {
42 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
43 . = ALIGN(4);
44 }
45 PROVIDE (_etext = .);
46
47
48 PROVIDE (_fdata = .);
49 .data :
50 {
51 *(.data)
52 . = ALIGN(4);
53 }
54 PROVIDE (_edata = .);
55
56 PROVIDE (_fgot = .);
57 .got :
58 {
59 *(.got)
60 . = ALIGN(4);
61 }
62 PROVIDE (_egot = .);
63
64
65 .u_boot_list : {
66 KEEP(*(SORT(.u_boot_list*)));
67 }
68
69 PROVIDE (reloc_dst_end = .);
70 /* _reloc_dst_end = .; */
71
72 PROVIDE (bss_start = .);
73 PROVIDE (__bss_start = .);
74 .bss (NOLOAD) :
75 {
76 *(.bss)
77 . = ALIGN(4);
78 }
79 PROVIDE (bss_end = .);
80
81 PROVIDE (__bss_end = .);
82 }