blob: c9bf2af35d359550238ea83cf1de05246875eb80 [file] [log] [blame]
Paul Mundt19f9a342006-09-27 18:33:49 +09001/*
2 * Linker script for vsyscall DSO. The vsyscall page is an ELF shared
3 * object prelinked to its virtual address, and with only one read-only
4 * segment (that fits in one page). This script controls its layout.
5 */
6#include <asm/asm-offsets.h>
7
8#ifdef CONFIG_CPU_LITTLE_ENDIAN
9OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux")
10#else
11OUTPUT_FORMAT("elf32-shbig-linux", "elf32-shbig-linux", "elf32-shbig-linux")
12#endif
13OUTPUT_ARCH(sh)
14
15/* The ELF entry point can be used to set the AT_SYSINFO value. */
16ENTRY(__kernel_vsyscall);
17
18SECTIONS
19{
Roland McGrathc4eecc92007-10-15 20:42:02 -070020 . = SIZEOF_HEADERS;
Paul Mundt19f9a342006-09-27 18:33:49 +090021
Roland McGrathc4eecc92007-10-15 20:42:02 -070022 .hash : { *(.hash) } :text
23 .gnu.hash : { *(.gnu.hash) }
24 .dynsym : { *(.dynsym) }
25 .dynstr : { *(.dynstr) }
26 .gnu.version : { *(.gnu.version) }
27 .gnu.version_d : { *(.gnu.version_d) }
28 .gnu.version_r : { *(.gnu.version_r) }
Paul Mundt19f9a342006-09-27 18:33:49 +090029
Roland McGrathc4eecc92007-10-15 20:42:02 -070030 /*
31 * This linker script is used both with -r and with -shared.
32 * For the layouts to match, we need to skip more than enough
33 * space for the dynamic symbol table et al. If this amount
34 * is insufficient, ld -shared will barf. Just increase it here.
35 */
36 . = 0x400;
Paul Mundt19f9a342006-09-27 18:33:49 +090037
Roland McGrathc4eecc92007-10-15 20:42:02 -070038 .text : { *(.text) } :text =0x90909090
39 .note : { *(.note.*) } :text :note
40 .eh_frame_hdr : { *(.eh_frame_hdr ) } :text :eh_frame_hdr
41 .eh_frame : { KEEP (*(.eh_frame)) } :text
42 .dynamic : { *(.dynamic) } :text :dynamic
43 .useless : {
44 *(.got.plt) *(.got)
45 *(.data .data.* .gnu.linkonce.d.*)
46 *(.dynbss)
47 *(.bss .bss.* .gnu.linkonce.b.*)
48 } :text
Paul Mundt19f9a342006-09-27 18:33:49 +090049}
50
51/*
Roland McGrathc4eecc92007-10-15 20:42:02 -070052 * Very old versions of ld do not recognize this name token; use the constant.
53 */
54#define PT_GNU_EH_FRAME 0x6474e550
55
56/*
Paul Mundt19f9a342006-09-27 18:33:49 +090057 * We must supply the ELF program headers explicitly to get just one
58 * PT_LOAD segment, and set the flags explicitly to make segments read-only.
59 */
60PHDRS
61{
Roland McGrathc4eecc92007-10-15 20:42:02 -070062 text PT_LOAD FILEHDR PHDRS FLAGS(5); /* PF_R|PF_X */
63 dynamic PT_DYNAMIC FLAGS(4); /* PF_R */
64 note PT_NOTE FLAGS(4); /* PF_R */
65 eh_frame_hdr PT_GNU_EH_FRAME;
Paul Mundt19f9a342006-09-27 18:33:49 +090066}
67
68/*
69 * This controls what symbols we export from the DSO.
70 */
71VERSION
72{
Roland McGrathc4eecc92007-10-15 20:42:02 -070073 LINUX_2.6 {
74 global:
75 __kernel_vsyscall;
76 __kernel_sigreturn;
77 __kernel_rt_sigreturn;
Paul Mundt19f9a342006-09-27 18:33:49 +090078
Roland McGrathc4eecc92007-10-15 20:42:02 -070079 local: *;
80 };
Paul Mundt19f9a342006-09-27 18:33:49 +090081}