]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/renesas/sh7752evb/u-boot.lds
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / renesas / sh7752evb / u-boot.lds
CommitLineData
1a2621ba
YS
1/*
2 * Copyright (C) 2007
3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 *
5 * Copyright (C) 2012
6 * Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
7 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
1a2621ba
YS
9 */
10
11OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux")
12OUTPUT_ARCH(sh)
13ENTRY(_start)
14
15SECTIONS
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 .u_boot_list : {
ef123c52 65 KEEP(*(SORT(.u_boot_list*)));
1a2621ba
YS
66 }
67
68 PROVIDE (reloc_dst_end = .);
69 /* _reloc_dst_end = .; */
70
71 PROVIDE (bss_start = .);
72 PROVIDE (__bss_start = .);
73 .bss (NOLOAD) :
74 {
75 *(.bss)
76 . = ALIGN(4);
77 }
78 PROVIDE (bss_end = .);
79
3929fb0a 80 PROVIDE (__bss_end = .);
1a2621ba 81}