I had the same problem with xconfig when I rolled 2.5.9. A bit more
looking into it made me wonder about the conditional of Config.in on that
line. Currently shows:
if [ "$CONFIG_ISDN_BOOL" == "y" ]; then
I reversed this condition to make it != "y", and it worked. See below
for patch. I'm not sure if this is correct, because I'm not that familiar with
it (though I should!) but it made make xconfig work for me again. YMMV.
BL.
--- linux/drivers/isdn/Config.in.borked Tue Apr 23 20:12:58 2002
+++ linux/drivers/isdn/Config.in Mon Apr 22 18:46:45 2002
@@ -7,7 +7,7 @@
if [ "$CONFIG_NET" != "n" ]; then
bool 'ISDN support' CONFIG_ISDN_BOOL
- if [ "$CONFIG_ISDN_BOOL" == "y" ]; then
+ if [ "$CONFIG_ISDN_BOOL" != "y" ]; then
mainmenu_option next_comment
comment 'Old ISDN4Linux'
-- Brad Littlejohn | Email: tyketto@wizard.com Unix Systems Administrator, | tyketto@ozemail.com.au Web + NewsMaster, BOFH.. Smeghead! :) | http://www.wizard.com/~tyketto PGP: 1024D/E319F0BF 6980 AAD6 7329 E9E6 D569 F620 C819 199A E319 F0BF- 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/