summaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorLinus Torvalds2014-08-14 02:21:35 +0200
committerLinus Torvalds2014-08-14 02:21:35 +0200
commitd27c0d90184a13e9e9f28c38e84f889a259f6b5f (patch)
treea933c7b9c9ac96af1787fa11317842557358bf86 /arch/x86
parentMerge branch 'x86-xsave-for-linus' of git://git.kernel.org/pub/scm/linux/kern... (diff)
parentMerge tag 'efi-urgent' into x86/efi (diff)
downloadkernel-qcow2-linux-d27c0d90184a13e9e9f28c38e84f889a259f6b5f.tar.gz
kernel-qcow2-linux-d27c0d90184a13e9e9f28c38e84f889a259f6b5f.tar.xz
kernel-qcow2-linux-d27c0d90184a13e9e9f28c38e84f889a259f6b5f.zip
Merge branch 'x86-efi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86/efix fixes from Peter Anvin: "Two EFI-related Kconfig changes, which happen to touch immediately adjacent lines in Kconfig and thus collapse to a single patch" * 'x86-efi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/efi: Enforce CONFIG_RELOCATABLE for EFI boot stub x86/efi: Fix 3DNow optimization build failure in EFI stub
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/Kconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 4aafd322e21e..7a7208f16ec3 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -1541,7 +1541,8 @@ config EFI
config EFI_STUB
bool "EFI stub support"
- depends on EFI
+ depends on EFI && !X86_USE_3DNOW
+ select RELOCATABLE
---help---
This kernel feature allows a bzImage to be loaded directly
by EFI firmware without the use of a bootloader.