Staging
v0.5.2
https://github.com/torvalds/linux
Raw File
Tip revision: 693d92a1bbc9e42681c42ed190bd42b636ca876f authored by Linus Torvalds on 10 May 2011, 02:33:54 UTC
Linux 2.6.39-rc7
Tip revision: 693d92a
Kconfig
#
# This Kconfig describes xen/ia64 options
#

config XEN
	bool "Xen hypervisor support"
	default y
	depends on PARAVIRT && MCKINLEY && IA64_PAGE_SIZE_16KB && EXPERIMENTAL
	select XEN_XENCOMM
	select NO_IDLE_HZ
	# followings are required to save/restore.
	select ARCH_SUSPEND_POSSIBLE
	select SUSPEND
	select PM_SLEEP
	help
	  Enable Xen hypervisor support.  Resulting kernel runs
	  both as a guest OS on Xen and natively on hardware.

config XEN_XENCOMM
	depends on XEN
	bool

config NO_IDLE_HZ
	depends on XEN
	bool
back to top