License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6-block.git] / arch / sh / include / asm / vmlinux.lds.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
bd353861
MF
2#ifndef __ASM_SH_VMLINUX_LDS_H
3#define __ASM_SH_VMLINUX_LDS_H
4
5#include <asm-generic/vmlinux.lds.h>
6
7#ifdef CONFIG_DWARF_UNWINDER
8#define DWARF_EH_FRAME \
9 .eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) { \
10 VMLINUX_SYMBOL(__start_eh_frame) = .; \
11 *(.eh_frame) \
12 VMLINUX_SYMBOL(__stop_eh_frame) = .; \
13 }
14#else
15#define DWARF_EH_FRAME
16#endif
17
19f6b8b4
PM
18#ifdef CONFIG_SUPERH64
19#define EXTRA_TEXT \
20 *(.text64) \
21 *(.text..SHmedia32)
22#else
23#define EXTRA_TEXT
24#endif
25
bd353861 26#endif /* __ASM_SH_VMLINUX_LDS_H */