Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild
[sfrench/cifs-2.6.git] / drivers / kvm / Kconfig
1 #
2 # KVM configuration
3 #
4 menuconfig VIRTUALIZATION
5         bool "Virtualization"
6         depends on X86
7         default y
8
9 if VIRTUALIZATION
10
11 config KVM
12         tristate "Kernel-based Virtual Machine (KVM) support"
13         depends on X86 && EXPERIMENTAL
14         depends on X86_CMPXCHG64 || 64BIT
15         ---help---
16           Support hosting fully virtualized guest machines using hardware
17           virtualization extensions.  You will need a fairly recent
18           processor equipped with virtualization extensions. You will also
19           need to select one or more of the processor modules below.
20
21           This module provides access to the hardware capabilities through
22           a character device node named /dev/kvm.
23
24           To compile this as a module, choose M here: the module
25           will be called kvm.
26
27           If unsure, say N.
28
29 config KVM_INTEL
30         tristate "KVM for Intel processors support"
31         depends on KVM
32         ---help---
33           Provides support for KVM on Intel processors equipped with the VT
34           extensions.
35
36 config KVM_AMD
37         tristate "KVM for AMD processors support"
38         depends on KVM
39         ---help---
40           Provides support for KVM on AMD processors equipped with the AMD-V
41           (SVM) extensions.
42
43 endif # VIRTUALIZATION