cxgbe/t4_tom: Read the chip's DDP page sizes and save them in a
[freebsd-src.git] / sys / i386 / linux / linux_vdso.lds.s
blobdcb61cf5e06f49db07255c86b4e2c7ae856ce8e4
1 /*
2 * Linker script for 32-bit vDSO.
3 * Copied from Linux kernel arch/x86/vdso/vdso-layout.lds.S
4 * and arch/x86/vdso/vdso32/vdso32.lds.S
6 * $FreeBSD$
7 */
9 SECTIONS
11 . = . + SIZEOF_HEADERS;
13 .hash : { *(.hash) } :text
14 .gnu.hash : { *(.gnu.hash) }
15 .dynsym : { *(.dynsym) }
16 .dynstr : { *(.dynstr) }
17 .gnu.version : { *(.gnu.version) }
18 .gnu.version_d : { *(.gnu.version_d) }
19 .gnu.version_r : { *(.gnu.version_r) }
21 .note : { *(.note.*) } :text :note
23 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
24 .eh_frame : { KEEP (*(.eh_frame)) } :text
26 .dynamic : { *(.dynamic) } :text :dynamic
28 .rodata : { *(.rodata*) } :text
29 .data : {
30 *(.data*)
31 *(.sdata*)
32 *(.got.plt) *(.got)
33 *(.gnu.linkonce.d.*)
34 *(.bss*)
35 *(.dynbss*)
36 *(.gnu.linkonce.b.*)
39 .altinstructions : { *(.altinstructions) }
40 .altinstr_replacement : { *(.altinstr_replacement) }
42 . = ALIGN(0x100);
43 .text : { *(.text*) } :text =0x90909090
46 PHDRS
48 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
49 dynamic PT_DYNAMIC FLAGS(4); /* PF_R */
50 note PT_NOTE FLAGS(4); /* PF_R */
51 eh_frame_hdr PT_GNU_EH_FRAME;
54 ENTRY(linux_vsyscall);
56 VERSION
58 LINUX_2.5 {
59 global:
60 linux_vsyscall;
61 linux_sigcode;
62 linux_rt_sigcode;
63 local: *;