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