Hi all. Here is the test of the Makefile patch I posted a couple of days ago. --- Makefile 2004-02-16 16:50:40.000000000 -0500 +++ /usr/src/linux/drivers/Makefile 2004-02-03 22:44:19.000000000 -0500 @@ -11,8 +11,6 @@ # PnP must come after ACPI since it will eventually need to check if acpi # was used and do nothing if so obj-$(CONFIG_PNP) += pnp/ -obj-$(CONFIG_SERIO) += input/serio/ -obj-$(CONFIG_INPUT) += input/ # char/ comes before serial/ etc so that the VT console is the boot-time # default. @@ -39,9 +37,10 @@ obj-$(CONFIG_TC) += tc/ obj-$(CONFIG_USB) += usb/ obj-$(CONFIG_USB_GADGET) += usb/gadget/ -#obj-$(CONFIG_GAMEPORT) += input/gameport - -obj-$(CONFIG_FIG_I2O) += message/ +obj-$(CONFIG_INPUT) += input/ +obj-$(CONFIG_GAMEPORT) += input/gameport/ +obj-$(CONFIG_SERIO) += input/serio/ +obj-$(CONFIG_I2O) += message/ obj-$(CONFIG_I2C) += i2c/ obj-$(CONFIG_PHONE) += telephony/ +++ /usr/src/linux/drivers/Makefile 2004-02-03 22:44:19.000000000 -0500 @@ -11,8 +11,6 @@ # PnP must come after ACPI since it will eventually need to check if acpi # was used and do nothing if so obj-$(CONFIG_PNP) += pnp/ -obj-$(CONFIG_SERIO) += input/serio/ -obj-$(CONFIG_INPUT) += input/ # char/ comes before serial/ etc so that the VT console is the boot-time # default. @@ -39,9 +37,10 @@ obj-$(CONFIG_TC) += tc/ obj-$(CONFIG_USB) += usb/ obj-$(CONFIG_USB_GADGET) += usb/gadget/ -#obj-$(CONFIG_GAMEPORT) += input/gameport - -obj-$(CONFIG_FIG_I2O) += message/ +obj-$(CONFIG_INPUT) += input/ +obj-$(CONFIG_GAMEPORT) += input/gameport/ +obj-$(CONFIG_SERIO) += input/serio/ +obj-$(CONFIG_I2O) += message/ obj-$(CONFIG_I2C) += i2c/ obj-$(CONFIG_PHONE) += telephony/ obj-$(CONFIG_MD) += md/ Patch this to drivers/Makefile in your kernel directory.