2 * Linker script for linux powerpc64 replacement vdso.
4 * Copyright 2023 Linaro, Ltd.
6 * SPDX-License-Identifier: GPL-2.0-or-later
12 __kernel_gettimeofday;
13 __kernel_clock_gettime;
14 __kernel_clock_getres;
15 __kernel_sync_dicache;
16 __kernel_sigtramp_rt64;
24 phdr PT_PHDR FLAGS(4) PHDRS;
25 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */
26 dynamic PT_DYNAMIC FLAGS(4);
27 eh_frame_hdr PT_GNU_EH_FRAME;
28 note PT_NOTE FLAGS(4);
35 * The following, including the FILEHDRS and PHDRS, are modified
36 * when we relocate the binary. We want them to be initially
37 * writable for the relocation; we'll force them read-only after.
39 .note : { *(.note*) } :load :note
40 .dynamic : { *(.dynamic) } :load :dynamic
41 .dynsym : { *(.dynsym) } :load
44 * There ought not be any real read-write data.
45 * But since we manipulated the segment layout,
46 * we have to put these sections somewhere.
57 .rodata : { *(.rodata*) }
59 .gnu.hash : { *(.gnu.hash) }
60 .dynstr : { *(.dynstr) }
61 .gnu.version : { *(.gnu.version) }
62 .gnu.version_d : { *(.gnu.version_d) }
63 .gnu.version_r : { *(.gnu.version_r) }
64 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
65 .eh_frame : { *(.eh_frame) } :load
67 .text : { *(.text*) } :load