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