Kconfig 1.9 KB
Newer Older
A
Avi Kivity 已提交
1 2 3
#
# KVM configuration
#
4

5
source "virt/kvm/Kconfig"
A
Avi Kivity 已提交
6

7 8
menuconfig VIRTUALIZATION
	bool "Virtualization"
9
	depends on HAVE_KVM || X86
10
	default y
11
	---help---
12 13
	  Say Y here to get to see options for using your Linux host to run other
	  operating systems inside virtual machines (guests).
14 15 16
	  This option alone does not add any kernel code.

	  If you say N, all options in this submenu will be skipped and disabled.
17 18

if VIRTUALIZATION
19

A
Avi Kivity 已提交
20 21
config KVM
	tristate "Kernel-based Virtual Machine (KVM) support"
A
Avi Kivity 已提交
22
	depends on HAVE_KVM
A
Avi Kivity 已提交
23 24
	# for device assignment:
	depends on PCI
25
	select PREEMPT_NOTIFIERS
A
Andrea Arcangeli 已提交
26
	select MMU_NOTIFIER
A
Avi Kivity 已提交
27
	select ANON_INODES
28
	select HAVE_KVM_IRQCHIP
G
Gregory Haskins 已提交
29
	select HAVE_KVM_EVENTFD
30
	select KVM_APIC_ARCHITECTURE
A
Avi Kivity 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
	---help---
	  Support hosting fully virtualized guest machines using hardware
	  virtualization extensions.  You will need a fairly recent
	  processor equipped with virtualization extensions. You will also
	  need to select one or more of the processor modules below.

	  This module provides access to the hardware capabilities through
	  a character device node named /dev/kvm.

	  To compile this as a module, choose M here: the module
	  will be called kvm.

	  If unsure, say N.

config KVM_INTEL
	tristate "KVM for Intel processors support"
	depends on KVM
	---help---
	  Provides support for KVM on Intel processors equipped with the VT
	  extensions.

52 53 54
	  To compile this as a module, choose M here: the module
	  will be called kvm-intel.

A
Avi Kivity 已提交
55 56 57 58 59 60
config KVM_AMD
	tristate "KVM for AMD processors support"
	depends on KVM
	---help---
	  Provides support for KVM on AMD processors equipped with the AMD-V
	  (SVM) extensions.
61

62 63 64
	  To compile this as a module, choose M here: the module
	  will be called kvm-amd.

65 66 67
# OK, it's a little counter-intuitive to do this, but it puts it neatly under
# the virtualization menu.
source drivers/lguest/Kconfig
68
source drivers/virtio/Kconfig
69

70
endif # VIRTUALIZATION