Commit 1b963953 authored by Tom Rini's avatar Tom Rini

[PATCH] Don't always ask about Intel RNGs

 Hello.  The following patch hides the option for Intel (i8x0) RNG
 support when it's not a useful option.  This is based off of a patch
 That was accepted in 2.4.19-pre6.  While I suspect this is an ia32-only
 option, it is possible that it's used on ia64 as well, so we test for
 both before offering Intel i8x0 RNG support.
parent 38ef6e5b
......@@ -171,7 +171,9 @@ if [ "$CONFIG_ARCH_NETWINDER" = "y" ]; then
tristate 'NetWinder flash support' CONFIG_NWFLASH
fi
dep_tristate 'Intel i8x0 Random Number Generator support' CONFIG_INTEL_RNG $CONFIG_PCI
if [ "$CONFIG_X86" = "y" -o "$CONFIG_IA64" = "y" ]; then
dep_tristate 'Intel i8x0 Random Number Generator support' CONFIG_INTEL_RNG $CONFIG_PCI
fi
tristate '/dev/nvram support' CONFIG_NVRAM
tristate 'Enhanced Real Time Clock Support' CONFIG_RTC
if [ "$CONFIG_IA64" = "y" ]; then
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment