diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:12:13 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:12:13 -0400 |
commit | cde82b404831aecccf2a1828b2dc643e0ac0e7ce (patch) | |
tree | 2bd60ad7abcc9689ffcab3c4617a9b5d2b6cd534 | |
parent | a60b778b5a813c6b3663db9244f5a886f0f91027 (diff) |
i386: prepare shared kernel/vsyscall.S
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/i386/kernel/Makefile | 6 | ||||
-rw-r--r-- | arch/i386/kernel/vsyscall_32.S (renamed from arch/i386/kernel/vsyscall.S) | 0 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/i386/kernel/Makefile b/arch/i386/kernel/Makefile index 1f82d76447d6..f502c141c1df 100644 --- a/arch/i386/kernel/Makefile +++ b/arch/i386/kernel/Makefile | |||
@@ -31,7 +31,7 @@ obj-$(CONFIG_X86_NUMAQ) += numaq.o | |||
31 | obj-$(CONFIG_X86_SUMMIT_NUMA) += summit.o | 31 | obj-$(CONFIG_X86_SUMMIT_NUMA) += summit.o |
32 | obj-$(CONFIG_KPROBES) += kprobes.o | 32 | obj-$(CONFIG_KPROBES) += kprobes.o |
33 | obj-$(CONFIG_MODULES) += module_32.o | 33 | obj-$(CONFIG_MODULES) += module_32.o |
34 | obj-y += sysenter.o vsyscall.o | 34 | obj-y += sysenter.o vsyscall_32.o |
35 | obj-$(CONFIG_ACPI_SRAT) += srat_32.o | 35 | obj-$(CONFIG_ACPI_SRAT) += srat_32.o |
36 | obj-$(CONFIG_EFI) += efi_32.o efi_stub_32.o | 36 | obj-$(CONFIG_EFI) += efi_32.o efi_stub_32.o |
37 | obj-$(CONFIG_DOUBLEFAULT) += doublefault.o | 37 | obj-$(CONFIG_DOUBLEFAULT) += doublefault.o |
@@ -47,10 +47,10 @@ obj-y += pcspeaker.o | |||
47 | 47 | ||
48 | obj-$(CONFIG_SCx200) += scx200.o | 48 | obj-$(CONFIG_SCx200) += scx200.o |
49 | 49 | ||
50 | # vsyscall.o contains the vsyscall DSO images as __initdata. | 50 | # vsyscall_32.o contains the vsyscall DSO images as __initdata. |
51 | # We must build both images before we can assemble it. | 51 | # We must build both images before we can assemble it. |
52 | # Note: kbuild does not track this dependency due to usage of .incbin | 52 | # Note: kbuild does not track this dependency due to usage of .incbin |
53 | $(obj)/vsyscall.o: $(obj)/vsyscall-int80.so $(obj)/vsyscall-sysenter.so | 53 | $(obj)/vsyscall_32.o: $(obj)/vsyscall-int80.so $(obj)/vsyscall-sysenter.so |
54 | targets += $(foreach F,int80 sysenter,vsyscall-$F.o vsyscall-$F.so) | 54 | targets += $(foreach F,int80 sysenter,vsyscall-$F.o vsyscall-$F.so) |
55 | targets += vsyscall-note.o vsyscall_32.lds | 55 | targets += vsyscall-note.o vsyscall_32.lds |
56 | 56 | ||
diff --git a/arch/i386/kernel/vsyscall.S b/arch/i386/kernel/vsyscall_32.S index b403890fe39b..b403890fe39b 100644 --- a/arch/i386/kernel/vsyscall.S +++ b/arch/i386/kernel/vsyscall_32.S | |||