#
# KVM configuration
#
source "virt/kvm/Kconfig"

menuconfig VIRTUALIZATION
	bool "Virtualization"
	---help---
	  Say Y here to get to see options for using your Linux host to run
	  other operating systems inside virtual machines (guests).
	  This option alone does not add any kernel code.

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

if VIRTUALIZATION

config KVM
	tristate "Kernel-based Virtual Machine (KVM) support"
	select KVM_SW_HOST
	select PREEMPT_NOTIFIERS
	depends on NET
	select HAVE_KVM_EVENTFD
	select TUN
	---help---
	  Support for hosting Guest kernels.
	  We don't support KVM with 3-level page tables yet.

	  If unsure, say N.

config KVM_SW_HOST
	bool
	help
	  Provides host support for SW processors

config SW_GUEST
	bool "SW para-virtualization guest kernel support"
	depends on !KVM_SW_HOST
	select VIRTIO
	select VIRTIO_RING
	select VIRTIO_BLK
	select VIRTIO_NET
	select FB
	select FB_SYS_FILLRECT
	select FB_SYS_COPYAREA
	select FB_SYS_IMAGEBLIT
	select FB_SYS_FOPS
	select TUN
	help
	  Say Y here to run your kernel as guest under the KVM hypervisor.

#source drivers/vhost/Kconfig

endif # VIRTUALIZATION
