1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * GNU linker script for the VDSO library.
5 * Copyright (C) 2012 ARM Limited
7 * Author: Will Deacon <will.deacon@arm.com>
8 * Heavily based on the vDSO linker scripts for other archs.
11 #include <linux/const.h>
15 OUTPUT_FORMAT("elf64-littleaarch64", "elf64-bigaarch64", "elf64-littleaarch64")
20 PROVIDE(_vdso_data = . - __VVAR_PAGES * PAGE_SIZE);
22 PROVIDE(_timens_data = _vdso_data + PAGE_SIZE);
24 . = VDSO_LBASE + SIZEOF_HEADERS;
26 .hash : { *(.hash) } :text
27 .gnu.hash : { *(.gnu.hash) }
28 .dynsym : { *(.dynsym) }
29 .dynstr : { *(.dynstr) }
30 .gnu.version : { *(.gnu.version) }
31 .gnu.version_d : { *(.gnu.version_d) }
32 .gnu.version_r : { *(.gnu.version_r) }
34 .note : { *(.note.*) } :text :note
38 .text : { *(.text*) } :text =0xd503201f
39 PROVIDE (__etext = .);
43 .dynamic : { *(.dynamic) } :text :dynamic
45 .rodata : { *(.rodata*) } :text
52 *(.data .data.* .gnu.linkonce.d.* .sdata*)
53 *(.bss .sbss .dynbss .dynsbss)
54 *(.eh_frame .eh_frame_hdr)
59 * We must supply the ELF program headers explicitly to get just one
60 * PT_LOAD segment, and set the flags explicitly to make segments read-only.
64 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
65 dynamic PT_DYNAMIC FLAGS(4); /* PF_R */
66 note PT_NOTE FLAGS(4); /* PF_R */
70 * This controls what symbols we export from the DSO.
76 __kernel_rt_sigreturn;
77 __kernel_gettimeofday;
78 __kernel_clock_gettime;
79 __kernel_clock_getres;
85 * Make the sigreturn code visible to the kernel.
87 VDSO_sigtramp = __kernel_rt_sigreturn;