There's a small glitch when configuring 2.4.20-pre7-ac1. The
problem is in drivers/mtd/devices/Config.in. menuconfig prints
out an error when configuring the kernel due to the following ...
if [ "$CONFIG_DECSTATION" = "y" ];
dep_tristate ' DEC MS02-NV NVRAM module support' CONFIG_MTD_MS02NV
$CONFIG_MTD $CONFIG_DECSTATION
fi
The word "then" is missing. The line should look like ...
if [ "$CONFIG_DECSTATION" = "y" ]; then
dep_tristate ' DEC MS02-NV NVRAM module support' CONFIG_MTD_MS02NV
$CONFIG_MTD $CONFIG_DECSTATION
fi
Art Haas
-- They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety. -- Benjamin Franklin, Historical Review of Pennsylvania, 1759 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/