diff options
Diffstat (limited to 'arch/i386/kernel/vsyscall.lds.S')
-rw-r--r-- | arch/i386/kernel/vsyscall.lds.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/i386/kernel/vsyscall.lds.S b/arch/i386/kernel/vsyscall.lds.S index 3a8329d6536e..a7977707c8e5 100644 --- a/arch/i386/kernel/vsyscall.lds.S +++ b/arch/i386/kernel/vsyscall.lds.S | |||
@@ -23,7 +23,7 @@ SECTIONS | |||
23 | . = VSYSCALL_BASE + 0x400; | 23 | . = VSYSCALL_BASE + 0x400; |
24 | 24 | ||
25 | .text : { *(.text) } :text =0x90909090 | 25 | .text : { *(.text) } :text =0x90909090 |
26 | 26 | .note : { *(.note.*) } :text :note | |
27 | .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr | 27 | .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr |
28 | .eh_frame : { KEEP (*(.eh_frame)) } :text | 28 | .eh_frame : { KEEP (*(.eh_frame)) } :text |
29 | .dynamic : { *(.dynamic) } :text :dynamic | 29 | .dynamic : { *(.dynamic) } :text :dynamic |
@@ -43,6 +43,7 @@ PHDRS | |||
43 | { | 43 | { |
44 | text PT_LOAD FILEHDR PHDRS FLAGS(5); /* PF_R|PF_X */ | 44 | text PT_LOAD FILEHDR PHDRS FLAGS(5); /* PF_R|PF_X */ |
45 | dynamic PT_DYNAMIC FLAGS(4); /* PF_R */ | 45 | dynamic PT_DYNAMIC FLAGS(4); /* PF_R */ |
46 | note PT_NOTE FLAGS(4); /* PF_R */ | ||
46 | eh_frame_hdr 0x6474e550; /* PT_GNU_EH_FRAME, but ld doesn't match the name */ | 47 | eh_frame_hdr 0x6474e550; /* PT_GNU_EH_FRAME, but ld doesn't match the name */ |
47 | } | 48 | } |
48 | 49 | ||