diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2013-02-14 10:55:06 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-14 16:01:55 -0800 |
commit | cb8081cb6bfbdb867d17cafaaf3509ee31140f7f (patch) | |
tree | 1cb34bc46b623820c81d1a1cd07116d3b9094a7c /arch/x86/lguest | |
parent | 56cc6cb707fedd897d391f6e50e3b56d62d6683f (diff) | |
download | linux-cb8081cb6bfbdb867d17cafaaf3509ee31140f7f.tar.gz linux-cb8081cb6bfbdb867d17cafaaf3509ee31140f7f.tar.bz2 linux-cb8081cb6bfbdb867d17cafaaf3509ee31140f7f.zip |
lguest: select CONFIG_TTY to build properly.
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>
Diffstat (limited to 'arch/x86/lguest')
-rw-r--r-- | arch/x86/lguest/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/lguest/Kconfig b/arch/x86/lguest/Kconfig index 7872a3330fb5..29043d2048a0 100644 --- a/arch/x86/lguest/Kconfig +++ b/arch/x86/lguest/Kconfig @@ -2,6 +2,7 @@ config LGUEST_GUEST bool "Lguest guest support" select PARAVIRT depends on X86_32 + select TTY select VIRTUALIZATION select VIRTIO select VIRTIO_CONSOLE |