diff options
| author | Florian Fainelli <florian@openwrt.org> | 2006-01-06 11:50:47 +0000 |
|---|---|---|
| committer | Florian Fainelli <florian@openwrt.org> | 2006-01-06 11:50:47 +0000 |
| commit | e8344ee792716436941cde0bd8e0e6afe4d5f044 (patch) | |
| tree | cb949f31d9b74c174dc1b869f8c047d001ed6fd8 /openwrt | |
| parent | 463861ee5f91526010c6fa41131c52691c2df82d (diff) | |
| download | mtk-20170518-e8344ee792716436941cde0bd8e0e6afe4d5f044.zip mtk-20170518-e8344ee792716436941cde0bd8e0e6afe4d5f044.tar.gz mtk-20170518-e8344ee792716436941cde0bd8e0e6afe4d5f044.tar.bz2 | |
Added support for USB_SERIAL_VISOR, closes #180
SVN-Revision: 2844
Diffstat (limited to 'openwrt')
| -rw-r--r-- | openwrt/target/linux/Config.in | 6 | ||||
| -rw-r--r-- | openwrt/target/linux/control/kmod-usb-serial-visor.control | 7 | ||||
| -rw-r--r-- | openwrt/target/linux/linux-2.4/Makefile | 4 | ||||
| -rw-r--r-- | openwrt/target/linux/linux-2.4/config/brcm | 2 |
4 files changed, 18 insertions, 1 deletions
diff --git a/openwrt/target/linux/Config.in b/openwrt/target/linux/Config.in index 9ccb11b..a0fc804 100644 --- a/openwrt/target/linux/Config.in +++ b/openwrt/target/linux/Config.in @@ -750,6 +750,12 @@ config BR2_PACKAGE_KMOD_USB_SERIAL_PL2303 default m depends BR2_PACKAGE_KMOD_USB_SERIAL +config BR2_PACKAGE_KMOD_USB_SERIAL_VISOR + prompt "kmod-usb-serial-visor.......... Support for Handspring Visor / Palm m50x / Sony Clie Driver" + tristate + default m + depends BR2_PACKAGE_KMOD_USB_SERIAL + config BR2_PACKAGE_KMOD_USB_STORAGE prompt "kmod-usb-storage.................. Support for USB storage devices" tristate diff --git a/openwrt/target/linux/control/kmod-usb-serial-visor.control b/openwrt/target/linux/control/kmod-usb-serial-visor.control new file mode 100644 index 0000000..7b993be --- /dev/null +++ b/openwrt/target/linux/control/kmod-usb-serial-visor.control @@ -0,0 +1,7 @@ +Package: kmod-usb-serial-visor +Priority: optional +Section: sys +Maintainer: OpenWrt Developers Team <openwrt-devel@openwrt.org> +Source: buildroot internal +Description: Kernel Support for Handspring Visor / Palm m50x / Sony Clie +Driver diff --git a/openwrt/target/linux/linux-2.4/Makefile b/openwrt/target/linux/linux-2.4/Makefile index 405d1b3..3d668fa 100644 --- a/openwrt/target/linux/linux-2.4/Makefile +++ b/openwrt/target/linux/linux-2.4/Makefile @@ -346,6 +346,10 @@ $(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_SERIAL_VISOR,usb-serial-visor,\ + $(MODULES_DIR)/kernel/drivers/usb/serial/visor.o \ +,CONFIG_USB_SERIAL_VISOR,kmod-usb-serial,61,visor)) + $(eval $(call KMOD_template,USB_STORAGE,usb-storage,\ $(MODULES_DIR)/kernel/drivers/scsi/*.o \ $(MODULES_DIR)/kernel/drivers/usb/storage/*.o \ diff --git a/openwrt/target/linux/linux-2.4/config/brcm b/openwrt/target/linux/linux-2.4/config/brcm index 7c011b2..bc375e0 100644 --- a/openwrt/target/linux/linux-2.4/config/brcm +++ b/openwrt/target/linux/linux-2.4/config/brcm @@ -1289,7 +1289,7 @@ CONFIG_USB_SERIAL_BELKIN=m # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set # CONFIG_USB_SERIAL_EMPEG is not set CONFIG_USB_SERIAL_FTDI_SIO=m -# CONFIG_USB_SERIAL_VISOR is not set +CONFIG_USB_SERIAL_VISOR=m # CONFIG_USB_SERIAL_IPAQ is not set # CONFIG_USB_SERIAL_IR is not set # CONFIG_USB_SERIAL_EDGEPORT is not set |
