mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
cb8081cb6b
Fix kconfig warning for LGUEST_GUEST config by selecting TTY: warning: (KVMTOOL_TEST_ENABLE && LGUEST_GUEST) selects VIRTIO_CONSOLE which has unmet direct dependencies (VIRTIO && TTY) Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Joe Millenbach <jmillenbach@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16 lines
460 B
Plaintext
16 lines
460 B
Plaintext
config LGUEST_GUEST
|
|
bool "Lguest guest support"
|
|
select PARAVIRT
|
|
depends on X86_32
|
|
select TTY
|
|
select VIRTUALIZATION
|
|
select VIRTIO
|
|
select VIRTIO_CONSOLE
|
|
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.
|
|
|
|
If you say Y here, make sure you say Y (or M) to the virtio block
|
|
and net drivers which lguest needs.
|