Merge branch 'drm-patches' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied...
[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         ---help---
9           Say Y here to get to see options for virtualization guest drivers.
10           This option alone does not add any kernel code.
11
12           If you say N, all options in this submenu will be skipped and disabled.
13
14 if VIRTUALIZATION
15
16 config KVM
17         tristate "Kernel-based Virtual Machine (KVM) support"
18         depends on X86 && EXPERIMENTAL
19         select ANON_INODES
20         ---help---
21           Support hosting fully virtualized guest machines using hardware
22           virtualization extensions.  You will need a fairly recent
23           processor equipped with virtualization extensions. You will also
24           need to select one or more of the processor modules below.
25
26           This module provides access to the hardware capabilities through
27           a character device node named /dev/kvm.
28
29           To compile this as a module, choose M here: the module
30           will be called kvm.
31
32           If unsure, say N.
33
34 config KVM_INTEL
35         tristate "KVM for Intel processors support"
36         depends on KVM
37         ---help---
38           Provides support for KVM on Intel processors equipped with the VT
39           extensions.
40
41 config KVM_AMD
42         tristate "KVM for AMD processors support"
43         depends on KVM
44         ---help---
45           Provides support for KVM on AMD processors equipped with the AMD-V
46           (SVM) extensions.
47
48 endif # VIRTUALIZATION