blob: 2f661e5f0dae67f37209879e34bbf50546d4486b [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001#
2# KVM configuration
3#
Jan Engelhardtde062062007-05-23 14:22:11 -07004menuconfig VIRTUALIZATION
5 bool "Virtualization"
Martin Schwidefskyeeca7a32007-05-10 15:45:56 +02006 depends on X86
Jan Engelhardtde062062007-05-23 14:22:11 -07007 default y
8
9if VIRTUALIZATION
Avi Kivityfd24dc42006-12-13 00:33:44 -080010
Avi Kivity6aa8b732006-12-10 02:21:36 -080011config KVM
12 tristate "Kernel-based Virtual Machine (KVM) support"
13 depends on X86 && EXPERIMENTAL
14 ---help---
15 Support hosting fully virtualized guest machines using hardware
16 virtualization extensions. You will need a fairly recent
17 processor equipped with virtualization extensions. You will also
18 need to select one or more of the processor modules below.
19
20 This module provides access to the hardware capabilities through
21 a character device node named /dev/kvm.
22
23 To compile this as a module, choose M here: the module
24 will be called kvm.
25
26 If unsure, say N.
27
28config KVM_INTEL
29 tristate "KVM for Intel processors support"
30 depends on KVM
31 ---help---
32 Provides support for KVM on Intel processors equipped with the VT
33 extensions.
34
35config KVM_AMD
36 tristate "KVM for AMD processors support"
37 depends on KVM
38 ---help---
39 Provides support for KVM on AMD processors equipped with the AMD-V
40 (SVM) extensions.
Avi Kivityfd24dc42006-12-13 00:33:44 -080041
Jan Engelhardtde062062007-05-23 14:22:11 -070042endif # VIRTUALIZATION