diff options
author | Al Viro <viro@www.linux.org.uk> | 2005-04-24 12:28:35 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-24 12:28:35 -0700 |
commit | e3b9ab1a6da339312bb23747693805fa63e2ffd0 (patch) | |
tree | 7e7e7264c6f8c8de4fed96d29fb789992353e936 | |
parent | fa732f556896836e88cd662ee7a664c4db6d080d (diff) | |
download | kernel_samsung_espresso10-e3b9ab1a6da339312bb23747693805fa63e2ffd0.zip kernel_samsung_espresso10-e3b9ab1a6da339312bb23747693805fa63e2ffd0.tar.gz kernel_samsung_espresso10-e3b9ab1a6da339312bb23747693805fa63e2ffd0.tar.bz2 |
[PATCH] missing dependency on sparc64
CONFIG_HW_CONSOLE selects vt.c; without the stuff pulled by CONFIG_VT it
will not build. Normally we get both in drivers/char/Kconfig and there
HW_CONSOLE depends on VT. sparc64 does not pull drivers/char/Kconfig
and has that sutff in arch/sparc64/Kconfig instead. However, it forgets
to add the same dependency. As the result, turning VT off [which is
possible] will end up with broken build. For no good reason...
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/sparc64/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sparc64/Kconfig b/arch/sparc64/Kconfig index fb11896..a72fd15 100644 --- a/arch/sparc64/Kconfig +++ b/arch/sparc64/Kconfig @@ -118,6 +118,7 @@ config VT_CONSOLE config HW_CONSOLE bool + depends on VT default y config SMP |