diff options
Diffstat (limited to 'drivers/kvm/Kconfig')
-rw-r--r-- | drivers/kvm/Kconfig | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/drivers/kvm/Kconfig b/drivers/kvm/Kconfig new file mode 100644 index 000000000000..36412e90f09b --- /dev/null +++ b/drivers/kvm/Kconfig | |||
@@ -0,0 +1,33 @@ | |||
1 | # | ||
2 | # KVM configuration | ||
3 | # | ||
4 | config KVM | ||
5 | tristate "Kernel-based Virtual Machine (KVM) support" | ||
6 | depends on X86 && EXPERIMENTAL | ||
7 | ---help--- | ||
8 | Support hosting fully virtualized guest machines using hardware | ||
9 | virtualization extensions. You will need a fairly recent | ||
10 | processor equipped with virtualization extensions. You will also | ||
11 | need to select one or more of the processor modules below. | ||
12 | |||
13 | This module provides access to the hardware capabilities through | ||
14 | a character device node named /dev/kvm. | ||
15 | |||
16 | To compile this as a module, choose M here: the module | ||
17 | will be called kvm. | ||
18 | |||
19 | If unsure, say N. | ||
20 | |||
21 | config KVM_INTEL | ||
22 | tristate "KVM for Intel processors support" | ||
23 | depends on KVM | ||
24 | ---help--- | ||
25 | Provides support for KVM on Intel processors equipped with the VT | ||
26 | extensions. | ||
27 | |||
28 | config KVM_AMD | ||
29 | tristate "KVM for AMD processors support" | ||
30 | depends on KVM | ||
31 | ---help--- | ||
32 | Provides support for KVM on AMD processors equipped with the AMD-V | ||
33 | (SVM) extensions. | ||