2007-10-22 03:01:54 +02:00
|
|
|
config LGUEST_GUEST
|
|
|
|
bool "Lguest guest support"
|
|
|
|
select PARAVIRT
|
2008-01-30 13:33:32 +01:00
|
|
|
depends on X86_32
|
2007-10-22 03:01:54 +02:00
|
|
|
depends on !X86_PAE
|
lguest: prevent VISWS or VOYAGER randconfigs
Keep lguest from being enabled on VISWS or VOYAGER configs, just as is
already done for VMI and XEN. Otherwise randconfigs with VISWS and LGUEST
have this problem:
In file included from arch/x86/kernel/setup_32.c:61:
include/asm-x86/mach-visws/setup_arch.h:8:1: warning: "ARCH_SETUP" redefined
In file included from include/asm/msr.h:80,
from include/asm/processor_32.h:17,
from include/asm/processor.h:2,
from include/asm/thread_info_32.h:16,
from include/asm/thread_info.h:2,
from include/linux/thread_info.h:21,
from include/linux/preempt.h:9,
from include/linux/spinlock.h:49,
from include/linux/seqlock.h:29,
from include/linux/time.h:8,
from include/linux/timex.h:57,
from include/linux/sched.h:53,
from arch/x86/kernel/setup_32.c:24:
include/asm/paravirt.h:458:1: warning: this is the location of the previous definition
(and of course, this happens because kconfig does not follow dependencies
when [evil] select is used...)
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-11-29 01:22:09 +01:00
|
|
|
depends on !(X86_VISWS || X86_VOYAGER)
|
2007-10-22 03:24:21 +02:00
|
|
|
select VIRTIO
|
2007-10-22 03:03:40 +02:00
|
|
|
select VIRTIO_RING
|
2007-10-22 03:24:21 +02:00
|
|
|
select VIRTIO_CONSOLE
|
2007-10-22 03:01:54 +02:00
|
|
|
help
|
|
|
|
Lguest is a tiny in-kernel hypervisor. Selecting this will
|
|
|
|
allow your kernel to boot under lguest. This option will increase
|
|
|
|
your kernel size by about 6k. If in doubt, say N.
|
2007-10-22 03:24:21 +02:00
|
|
|
|
|
|
|
If you say Y here, make sure you say Y (or M) to the virtio block
|
|
|
|
and net drivers which lguest needs.
|