diff options
| author | Nicolas Thill <nico@openwrt.org> | 2005-09-04 21:09:40 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2005-09-04 21:09:40 +0000 |
| commit | 40cb3c6f70a6fb89fb8539efe0ea1c59829bd0c1 (patch) | |
| tree | d9a67c8a7dda428c997834f6e3ab88bf1597363a /openwrt/target/linux/linux-2.4/Makefile | |
| parent | f7335d465b90c38ebd55fac19c8380e032dbb547 (diff) | |
| download | mtk-20170518-40cb3c6f70a6fb89fb8539efe0ea1c59829bd0c1.zip mtk-20170518-40cb3c6f70a6fb89fb8539efe0ea1c59829bd0c1.tar.gz mtk-20170518-40cb3c6f70a6fb89fb8539efe0ea1c59829bd0c1.tar.bz2 | |
add initial support for some USB-to-serial converters
SVN-Revision: 1848
Diffstat (limited to 'openwrt/target/linux/linux-2.4/Makefile')
| -rw-r--r-- | openwrt/target/linux/linux-2.4/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/openwrt/target/linux/linux-2.4/Makefile b/openwrt/target/linux/linux-2.4/Makefile index 9f95d72..35349d2 100644 --- a/openwrt/target/linux/linux-2.4/Makefile +++ b/openwrt/target/linux/linux-2.4/Makefile @@ -111,6 +111,23 @@ $(eval $(call KMOD_template,USB_OHCI,usb-ohci,\ $(eval $(call KMOD_template,USB2,usb2,\ $(MODULES_DIR)/kernel/drivers/usb/host/ehci-hcd.o \ ,CONFIG_USB_EHCI_HCD,kmod-usb-core,60,ehci-hcd)) + +$(eval $(call KMOD_template,USB_SERIAL,usb-serial,\ + $(MODULES_DIR)/kernel/drivers/usb/serial/usbserial.o \ +,CONFIG_USB_SERIAL,kmod-usb-core,60,usbserial)) +$(eval $(call KMOD_template,USB_SERIAL_BELKIN,usb-serial-belkin,\ + $(MODULES_DIR)/kernel/drivers/usb/serial/belkin_sa.o \ +,CONFIG_USB_SERIAL_BELKIN,kmod-usb-serial,61,belkin_sa)) +$(eval $(call KMOD_template,USB_SERIAL_FTDI,usb-serial-ftdi,\ + $(MODULES_DIR)/kernel/drivers/usb/serial/ftdi_sio.o \ +,CONFIG_USB_SERIAL_IR,kmod-usb-serial,61,ftdi_usb)) +$(eval $(call KMOD_template,USB_SERIAL_MCT_U232,usb-serial-mct-u232,\ + $(MODULES_DIR)/kernel/drivers/usb/serial/mct_u232.o \ +,CONFIG_USB_SERIAL_MCT_U232,kmod-usb-serial,61,mct_u232)) +$(eval $(call KMOD_template,USB_SERIAL_PL2303,usb-serial-pl2303,\ + $(MODULES_DIR)/kernel/drivers/usb/serial/pl2303.o \ +,CONFIG_USB_SERIAL_PL2303,kmod-usb-serial,61,pl2303)) + $(eval $(call KMOD_template,USB_STORAGE,usb-storage,\ $(MODULES_DIR)/kernel/drivers/scsi/*.o \ $(MODULES_DIR)/kernel/drivers/usb/storage/*.o \ |
