Messages in this thread Patch in this message |  | | From | Andrzej Krzysztofowicz <> | Subject | Re: Linux 2.4.3ac13 | Date | Wed, 25 Apr 2001 03:10:27 +0200 (CEST) |
| |
> > Also, I initially built ac13 with: > > make mrproper > make menuconfig > > and it doesn't ask whether I want to build the normal USHI USB driver either as > a module or builtin to the kernel, only whether I want to build the alternative > USHI USB dirver (the JE driver). Make xconfig asks whether you want to build > both drivers. I'm not sure whether this was a bug in previous versions or > not.
It is an old problem, probably caused by ugly hack in drivers/usb/Config.in (using a variable before it is defined). The following patch should fix it in some way...
diff -u drivers/usb/Config.in~ drivers/usb/Config.in --- drivers/usb/Config.in~ Sat Feb 10 23:16:30 2001 +++ drivers/usb/Config.in Sat Feb 17 00:06:34 2001 @@ -22,6 +22,8 @@ fi if [ "$CONFIG_USB_UHCI" != "y" ]; then dep_tristate ' UHCI Alternate Driver (JE) support' CONFIG_USB_UHCI_ALT $CONFIG_USB + else + define_bool CONFIG_USB_UHCI_ALT n fi dep_tristate ' OHCI (Compaq, iMacs, OPTi, SiS, ALi, ...) support' CONFIG_USB_OHCI $CONFIG_USB Andrzej -- ======================================================================= Andrzej M. Krzysztofowicz ankry@mif.pg.gda.pl phone (48)(58) 347 14 61 Faculty of Applied Phys. & Math., Technical University of Gdansk - 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/
|  |