diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2007-10-22 10:55:21 +1000 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2007-10-23 15:49:47 +1000 |
commit | d3d1c4bdf16bd154d9f27f34fca28edca90465eb (patch) | |
tree | d1f7d0c29af89e1ff23bf56defe54f62b1577681 /drivers/lguest/Kconfig | |
parent | 0895e91d60ef9bdef426d1ce14bb94bd5875870d (diff) |
Normalize config options for guest support
1) Group all the "guest OS" support options together, under a PARAVIRT_GUEST
menu.
2) Make those options select CONFIG_PARAVIRT, as suggested by Andi.
3) Make kconfig help titles consistent.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: Andi Kleen <ak@suse.de>
Cc: Zach Amsden <zach@vmware.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Chris Wright <chrisw@sous-sol.org>
Diffstat (limited to 'drivers/lguest/Kconfig')
-rw-r--r-- | drivers/lguest/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/lguest/Kconfig b/drivers/lguest/Kconfig index 41e2250613a1..64e1bb31c5b4 100644 --- a/drivers/lguest/Kconfig +++ b/drivers/lguest/Kconfig @@ -1,7 +1,6 @@ config LGUEST tristate "Linux hypervisor example code" - depends on X86 && PARAVIRT && EXPERIMENTAL && !X86_PAE && FUTEX - select LGUEST_GUEST + depends on X86 && EXPERIMENTAL && !X86_PAE && FUTEX && !(X86_VISWS || X86_VOYAGER) select HVC_DRIVER ---help--- This is a very simple module which allows you to run |