diff options
Diffstat (limited to 'drivers/kvm/Kconfig')
-rw-r--r-- | drivers/kvm/Kconfig | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/kvm/Kconfig b/drivers/kvm/Kconfig index 656920636cb2..c83e1c9b5129 100644 --- a/drivers/kvm/Kconfig +++ b/drivers/kvm/Kconfig | |||
@@ -1,9 +1,12 @@ | |||
1 | # | 1 | # |
2 | # KVM configuration | 2 | # KVM configuration |
3 | # | 3 | # |
4 | config HAVE_KVM | ||
5 | bool | ||
6 | |||
4 | menuconfig VIRTUALIZATION | 7 | menuconfig VIRTUALIZATION |
5 | bool "Virtualization" | 8 | bool "Virtualization" |
6 | depends on X86 | 9 | depends on HAVE_KVM || X86 |
7 | default y | 10 | default y |
8 | ---help--- | 11 | ---help--- |
9 | Say Y here to get to see options for using your Linux host to run other | 12 | Say Y here to get to see options for using your Linux host to run other |
@@ -16,7 +19,7 @@ if VIRTUALIZATION | |||
16 | 19 | ||
17 | config KVM | 20 | config KVM |
18 | tristate "Kernel-based Virtual Machine (KVM) support" | 21 | tristate "Kernel-based Virtual Machine (KVM) support" |
19 | depends on X86 && EXPERIMENTAL | 22 | depends on HAVE_KVM && EXPERIMENTAL |
20 | select PREEMPT_NOTIFIERS | 23 | select PREEMPT_NOTIFIERS |
21 | select ANON_INODES | 24 | select ANON_INODES |
22 | ---help--- | 25 | ---help--- |