2008-07-27 11:39:11 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
2006-10-18 04:52:55 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-09-17 01:45:15 +08:00
|
|
|
USB_MENU:=USB Support
|
2006-10-18 04:52:55 +08:00
|
|
|
|
2007-06-22 12:43:13 +08:00
|
|
|
ifeq ($(KERNEL),2.4)
|
|
|
|
USBNET_DIR:=usb/net
|
|
|
|
endif
|
2007-06-06 06:46:02 +08:00
|
|
|
|
2007-06-30 20:09:22 +08:00
|
|
|
ifeq ($(KERNEL_PATCHVER),2.6.21)
|
2007-06-30 20:11:46 +08:00
|
|
|
USBNET_DIR:=usb/net
|
|
|
|
USBHID_DIR:=usb/input
|
2007-06-30 20:09:22 +08:00
|
|
|
USBINPUT_DIR:=usb/input
|
|
|
|
endif
|
2007-06-30 20:11:46 +08:00
|
|
|
|
|
|
|
USBNET_DIR?=net/usb
|
|
|
|
USBHID_DIR?=hid/usbhid
|
2007-06-30 20:09:22 +08:00
|
|
|
USBINPUT_DIR?=input/misc
|
|
|
|
|
2007-06-11 06:38:18 +08:00
|
|
|
define usbdep
|
2007-09-17 01:45:15 +08:00
|
|
|
SUBMENU:=$(USB_MENU)
|
2007-06-11 06:38:18 +08:00
|
|
|
DEPENDS:=kmod-usb-core $(1)
|
|
|
|
endef
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
define KernelPackage/usb-core
|
2007-09-17 01:45:15 +08:00
|
|
|
SUBMENU:=$(USB_MENU)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=Support for USB
|
|
|
|
DEPENDS:=@USB_SUPPORT
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB
|
2006-10-18 05:47:21 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,20,usbcore)
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
2006-10-18 05:21:55 +08:00
|
|
|
|
|
|
|
define KernelPackage/usb-core/2.4
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/usbcore.$(LINUX_KMOD_SUFFIX)
|
2006-10-18 05:21:55 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-core/2.6
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/core/usbcore.$(LINUX_KMOD_SUFFIX)
|
2006-10-18 05:21:55 +08:00
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-core/description
|
|
|
|
Kernel support for USB
|
|
|
|
endef
|
|
|
|
|
2006-10-18 05:47:21 +08:00
|
|
|
$(eval $(call KernelPackage,usb-core))
|
2006-10-18 04:52:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-uhci
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=Support for UHCI controllers
|
2007-09-10 04:37:50 +08:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_USB_UHCI_ALT \
|
|
|
|
CONFIG_USB_UHCI_HCD
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
define KernelPackage/usb-uhci/2.4
|
2007-09-10 04:37:50 +08:00
|
|
|
# KCONFIG:=CONFIG_USB_UHCI_ALT
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/uhci.o
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,uhci)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
define KernelPackage/usb-uhci/2.6
|
2007-09-10 04:37:50 +08:00
|
|
|
# KCONFIG:=CONFIG_USB_UHCI_HCD
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/uhci-hcd.ko
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,uhci-hcd)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-uhci/description
|
|
|
|
Kernel support for USB UHCI controllers
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-uhci))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2006-12-28 08:56:39 +08:00
|
|
|
define KernelPackage/usb-uhci-iv
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,@LINUX_2_4)
|
2008-07-27 11:39:11 +08:00
|
|
|
TITLE:=Support for Intel/VIA UHCI controllers
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_UHCI
|
2007-08-28 19:44:15 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/usb-uhci.$(LINUX_KMOD_SUFFIX)
|
2008-07-27 11:39:11 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,usb-uhci)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-uhci-iv/description
|
|
|
|
Kernel support for Intel/VIA USB UHCI controllers
|
|
|
|
endef
|
|
|
|
|
2008-07-27 11:39:11 +08:00
|
|
|
$(eval $(call KernelPackage,usb-uhci-iv))
|
2006-10-18 04:52:55 +08:00
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
define KernelPackage/usb-ohci
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=Support for OHCI controllers
|
2007-09-10 04:37:50 +08:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_USB_OHCI \
|
|
|
|
CONFIG_USB_OHCI_HCD
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-ohci/2.4
|
2007-09-10 04:37:50 +08:00
|
|
|
# KCONFIG:=CONFIG_USB_OHCI
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/usb-ohci.o
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,usb-ohci)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-ohci/2.6
|
2007-09-10 04:37:50 +08:00
|
|
|
# KCONFIG:=CONFIG_USB_OHCI_HCD
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/ohci-hcd.ko
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,ohci-hcd)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-ohci/description
|
|
|
|
Kernel support for USB OHCI controllers
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-ohci))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-08-02 21:53:23 +08:00
|
|
|
define KernelPackage/usb-adm5120
|
2007-09-11 21:49:28 +08:00
|
|
|
$(call usbdep,@TARGET_adm5120_router_be||@TARGET_adm5120_router_le)
|
2007-08-02 21:53:23 +08:00
|
|
|
TITLE:=Support for the ADM5120 HCD controller
|
|
|
|
KCONFIG:=CONFIG_USB_ADM5120_HCD
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/adm5120-hcd.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,adm5120-hcd)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-adm5120/description
|
|
|
|
Kernel support for the ADM5120 HCD USB controller
|
|
|
|
endef
|
|
|
|
|
2007-08-02 21:53:23 +08:00
|
|
|
$(eval $(call KernelPackage,usb-adm5120))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
define KernelPackage/usb2
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=Support for USB2 controllers
|
2009-03-02 04:15:33 +08:00
|
|
|
KCONFIG:=CONFIG_USB_EHCI_HCD \
|
|
|
|
CONFIG_USB_EHCI_HCD_SSB=y
|
2007-08-28 19:44:15 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/ehci-hcd.$(LINUX_KMOD_SUFFIX)
|
2008-11-10 00:50:17 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,ehci-hcd)
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb2/description
|
|
|
|
Kernel support for USB2 (EHCI) controllers
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb2))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-acm
|
|
|
|
$(call usbdep,)
|
|
|
|
TITLE:=Support for modems/isdn controllers
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_ACM
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-acm/2.4
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/acm.o
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,acm)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-acm/2.6
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/class/cdc-acm.ko
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,cdc-acm)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-acm/description
|
|
|
|
Kernel support for USB ACM devices (modems/isdn controllers)
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-acm))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-audio
|
2007-09-20 18:29:14 +08:00
|
|
|
$(call usbdep,+kmod-sound-core)
|
2007-09-21 20:58:13 +08:00
|
|
|
TITLE:=Support for USB audio devices
|
2007-09-10 04:37:50 +08:00
|
|
|
KCONFIG:= \
|
2007-09-10 04:49:21 +08:00
|
|
|
CONFIG_USB_AUDIO \
|
2007-09-10 04:37:50 +08:00
|
|
|
CONFIG_SND_USB_AUDIO
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-audio/2.4
|
2007-09-10 04:37:50 +08:00
|
|
|
# KCONFIG:=CONFIG_USB_AUDIO
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/audio.o
|
2007-04-05 19:29:56 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,audio)
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-audio/2.6
|
2007-09-10 04:37:50 +08:00
|
|
|
# KCONFIG:=CONFIG_SND_USB_AUDIO
|
2007-04-05 19:29:56 +08:00
|
|
|
FILES:= \
|
2007-04-18 20:28:38 +08:00
|
|
|
$(LINUX_DIR)/sound/usb/snd-usb-lib.ko \
|
|
|
|
$(LINUX_DIR)/sound/usb/snd-usb-audio.ko
|
2007-04-05 19:29:56 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,snd-usb-lib snd-usb-audio)
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-audio/description
|
|
|
|
Kernel support for USB audio devices
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-audio))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-printer
|
|
|
|
$(call usbdep,)
|
|
|
|
TITLE:=Support for printers
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_PRINTER
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-printer/2.4
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/printer.o
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,printer)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-printer/2.6
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/class/usblp.ko
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usblp)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-printer/description
|
|
|
|
Kernel support for USB printers
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-printer))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial
|
|
|
|
$(call usbdep,)
|
|
|
|
TITLE:=Support for USB-to-Serial converters
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/usbserial.$(LINUX_KMOD_SUFFIX)
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usbserial)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial/description
|
|
|
|
Kernel support for USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-05-02 05:53:32 +08:00
|
|
|
define KernelPackage/usb-serial-airprime
|
2007-07-23 10:41:33 +08:00
|
|
|
$(call usbdep,kmod-usb-serial @LINUX_2_6)
|
2008-07-27 11:39:11 +08:00
|
|
|
TITLE:=Support for Airprime (EVDO)
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_AIRPRIME
|
2007-05-02 05:53:32 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/airprime.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,airprime)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial-airprime/description
|
2008-07-27 11:39:11 +08:00
|
|
|
Kernel support for Airprime (EVDO)
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
2007-05-02 05:53:32 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial-airprime))
|
2006-10-18 04:52:55 +08:00
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
define KernelPackage/usb-serial-belkin
|
2008-07-27 11:39:11 +08:00
|
|
|
$(call usbdep,kmod-usb-serial)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=Support for Belkin devices
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_BELKIN
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/belkin_sa.$(LINUX_KMOD_SUFFIX)
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,belkin_sa)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial-belkin/description
|
|
|
|
Kernel support for Belkin USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial-belkin))
|
|
|
|
|
|
|
|
|
2008-07-24 14:25:47 +08:00
|
|
|
define KernelPackage/usb-serial-ch341
|
2008-07-27 11:39:11 +08:00
|
|
|
$(call usbdep,kmod-usb-serial @LINUX_2_6&&@!LINUX_2_6_23)
|
2008-07-24 14:25:47 +08:00
|
|
|
TITLE:=Support for CH341 devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_CH341
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/ch341.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,ch341)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-belkin/description
|
|
|
|
Kernel support for Winchiphead CH341 USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-ch341))
|
|
|
|
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
define KernelPackage/usb-serial-ftdi
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,kmod-usb-serial)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=Support for FTDI devices
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_FTDI_SIO
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/ftdi_sio.$(LINUX_KMOD_SUFFIX)
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,ftdi_sio)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial-ftdi/description
|
|
|
|
Kernel support for FTDI USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial-ftdi))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-mct
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,kmod-usb-serial)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=Support for Magic Control Tech. devices
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_MCT_U232
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/mct_u232.$(LINUX_KMOD_SUFFIX)
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,mct_u232)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial-mct/description
|
|
|
|
Kernel support for Magic Control Technology USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial-mct))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
define KernelPackage/usb-serial-pl2303
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,kmod-usb-serial)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=Support for Prolific PL2303 devices
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_PL2303
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/pl2303.$(LINUX_KMOD_SUFFIX)
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,pl2303)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial-pl2303/description
|
|
|
|
Kernel support for Prolific PL2303 USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial-pl2303))
|
|
|
|
|
|
|
|
|
2008-03-07 03:28:42 +08:00
|
|
|
define KernelPackage/usb-serial-cp2101
|
|
|
|
$(call usbdep,kmod-usb-serial)
|
|
|
|
TITLE:=Support for Silicon Labs cp2101 devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_CP2101
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/cp2101.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,cp2101)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-cp2101/description
|
|
|
|
Kernel support for Silicon Labs cp2101 USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-cp2101))
|
|
|
|
|
|
|
|
|
2008-05-18 19:21:28 +08:00
|
|
|
define KernelPackage/usb-serial-ark3116
|
|
|
|
$(call usbdep,kmod-usb-serial @LINUX_2_6)
|
|
|
|
TITLE:=Support for ArkMicroChips ARK3116 devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_ARK3116
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/ark3116.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,ark3116)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-ark3116/description
|
|
|
|
Kernel support for ArkMicroChips ARK3116 USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-ark3116))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-oti6858
|
|
|
|
$(call usbdep,kmod-usb-serial @LINUX_2_6)
|
|
|
|
TITLE:=Support for Ours Technology OTI6858 devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_OTI6858
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/oti6858.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,oti6858)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-oti6858/description
|
|
|
|
Kernel support for Ours Technology OTI6858 USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-oti6858))
|
|
|
|
|
|
|
|
|
2007-05-03 18:58:50 +08:00
|
|
|
define KernelPackage/usb-serial-sierrawireless
|
2008-07-22 04:36:16 +08:00
|
|
|
$(call usbdep,kmod-usb-serial)
|
2007-05-03 18:58:50 +08:00
|
|
|
TITLE:=Support for Sierra Wireless devices
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_SIERRAWIRELESS
|
2007-05-03 18:58:50 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/sierra.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,sierra)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial-sierrawireless/description
|
|
|
|
Kernel support for Sierra Wireless devices
|
|
|
|
endef
|
|
|
|
|
2007-05-03 18:58:50 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial-sierrawireless))
|
|
|
|
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
define KernelPackage/usb-serial-visor
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,kmod-usb-serial)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=Support for Handspring Visor devices
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_VISOR
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/visor.$(LINUX_KMOD_SUFFIX)
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,visor)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial-visor/description
|
|
|
|
Kernel support for Handspring Visor PDAs
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial-visor))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-08-21 17:42:25 +08:00
|
|
|
define KernelPackage/usb-serial-keyspan
|
|
|
|
$(call usbdep,kmod-usb-serial)
|
|
|
|
TITLE:=Support for Keyspan USB-to-Serial devices
|
|
|
|
KCONFIG:= \
|
2007-09-03 16:58:14 +08:00
|
|
|
CONFIG_USB_SERIAL_KEYSPAN \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA28 \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA28X \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA28XA \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA28XB \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA19 \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA18X \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA19W \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA19QW \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA19QI \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_MPR \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA49W \
|
|
|
|
CONFIG_USB_SERIAL_KEYSPAN_USA49WLC
|
2007-08-21 17:42:25 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/keyspan.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,keyspan)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial-keyspan/description
|
|
|
|
Kernel support for Keyspan USB-to-Serial devices
|
|
|
|
endef
|
|
|
|
|
2007-08-21 17:42:25 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial-keyspan))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-06-14 18:23:41 +08:00
|
|
|
define KernelPackage/usb-serial-option
|
2007-07-23 10:41:33 +08:00
|
|
|
$(call usbdep,kmod-usb-serial @LINUX_2_6)
|
2007-06-14 18:23:41 +08:00
|
|
|
TITLE:=Support for Option HSDPA modems
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_OPTION
|
2007-06-14 18:23:41 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/option.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,option)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-serial-option/description
|
|
|
|
Kernel support for Option HSDPA modems
|
|
|
|
endef
|
|
|
|
|
2007-06-14 18:23:41 +08:00
|
|
|
$(eval $(call KernelPackage,usb-serial-option))
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
|
|
|
|
define KernelPackage/usb-storage
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,+kmod-scsi-core)
|
2006-10-18 04:52:55 +08:00
|
|
|
TITLE:=USB Storage support
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_STORAGE
|
2007-08-28 19:44:15 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/storage/usb-storage.$(LINUX_KMOD_SUFFIX)
|
2006-10-18 04:52:55 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,scsi_mod sd_mod usb-storage)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-storage/description
|
|
|
|
Kernel support for USB Mass Storage devices
|
|
|
|
endef
|
|
|
|
|
2006-10-18 04:52:55 +08:00
|
|
|
$(eval $(call KernelPackage,usb-storage))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-21 20:58:13 +08:00
|
|
|
define KernelPackage/usb-video
|
|
|
|
$(call usbdep,@LINUX_2_6)
|
|
|
|
TITLE:=Support for USB video devices
|
|
|
|
KCONFIG:=CONFIG_VIDEO_USBVIDEO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/usbvideo/usbvideo.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usbvideo)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-video/description
|
|
|
|
Kernel support for USB video devices
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-video))
|
|
|
|
|
|
|
|
|
2007-06-02 07:21:35 +08:00
|
|
|
define KernelPackage/usb-atm
|
2007-09-17 00:32:30 +08:00
|
|
|
$(call usbdep,@LINUX_2_6 +kmod-atm)
|
2007-06-02 07:21:35 +08:00
|
|
|
TITLE:=Support for ATM on USB bus
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_ATM
|
2007-06-02 07:21:35 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/atm/usbatm.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usbatm)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-atm/description
|
|
|
|
Kernel support for USB DSL modems
|
|
|
|
endef
|
|
|
|
|
2007-06-02 07:21:35 +08:00
|
|
|
$(eval $(call KernelPackage,usb-atm))
|
2006-10-18 04:52:55 +08:00
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-17 01:48:44 +08:00
|
|
|
define KernelPackage/usb-atm-speedtouch
|
2008-05-31 20:14:02 +08:00
|
|
|
$(call usbdep,kmod-usb-atm @LINUX_2_6)
|
2007-09-17 01:48:44 +08:00
|
|
|
TITLE:=SpeedTouch USB ADSL modems support
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_SPEEDTOUCH
|
2007-06-02 07:21:35 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/atm/speedtch.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,70,speedtch)
|
2006-10-18 04:52:55 +08:00
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-17 01:48:44 +08:00
|
|
|
define KernelPackage/usb-atm-speedtouch/description
|
2007-09-07 16:34:51 +08:00
|
|
|
Kernel support for SpeedTouch USB ADSL modems
|
|
|
|
endef
|
|
|
|
|
2007-09-17 01:48:44 +08:00
|
|
|
$(eval $(call KernelPackage,usb-atm-speedtouch))
|
2006-10-19 12:35:29 +08:00
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-17 01:48:44 +08:00
|
|
|
define KernelPackage/usb-atm-ueagle
|
2008-05-31 20:14:02 +08:00
|
|
|
$(call usbdep,kmod-usb-atm @LINUX_2_6)
|
2007-09-17 01:48:44 +08:00
|
|
|
TITLE:=Eagle 8051 based USB ADSL modems support
|
2007-06-02 07:21:35 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/atm/ueagle-atm.$(LINUX_KMOD_SUFFIX)
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_UEAGLEATM
|
2007-06-02 07:21:35 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,ueagle-atm)
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-17 01:48:44 +08:00
|
|
|
define KernelPackage/usb-atm-ueagle/description
|
2007-09-07 16:34:51 +08:00
|
|
|
Kernel support for Eagle 8051 based USB ADSL modems
|
|
|
|
endef
|
|
|
|
|
2007-09-17 01:48:44 +08:00
|
|
|
$(eval $(call KernelPackage,usb-atm-ueagle))
|
2006-10-19 12:35:29 +08:00
|
|
|
|
2008-06-21 21:21:49 +08:00
|
|
|
define KernelPackage/usb-atm-cxacru
|
|
|
|
$(call usbdep,kmod-usb-atm @LINUX_2_6)
|
|
|
|
TITLE:=cxacru
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/atm/cxacru.$(LINUX_KMOD_SUFFIX)
|
|
|
|
KCONFIG:=CONFIG_USB_CXACRU
|
|
|
|
AUTOLOAD:=$(call AutoLoad,70,cxacru)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-atm-cxacru/description
|
|
|
|
Kernel support for cxacru based USB ADSL modems
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-atm-cxacru))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-04-02 05:59:19 +08:00
|
|
|
define KernelPackage/usb-net
|
|
|
|
$(call usbdep,)
|
|
|
|
TITLE:=Kernel modules for USB-to-Ethernet convertors
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_USBNET
|
2007-11-28 21:33:59 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usbnet)
|
2007-04-02 05:59:19 +08:00
|
|
|
endef
|
2007-04-15 22:47:40 +08:00
|
|
|
|
|
|
|
define KernelPackage/usb-net/2.4
|
2007-04-18 20:28:38 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/usbnet.$(LINUX_KMOD_SUFFIX)
|
2007-04-15 22:47:40 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-net/2.6
|
2007-06-06 06:46:02 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/usbnet.$(LINUX_KMOD_SUFFIX)
|
2007-04-15 22:47:40 +08:00
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-net/description
|
|
|
|
Kernel modules for USB-to-Ethernet convertors
|
|
|
|
endef
|
|
|
|
|
2007-04-02 05:59:19 +08:00
|
|
|
$(eval $(call KernelPackage,usb-net))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-04-02 05:59:19 +08:00
|
|
|
define KernelPackage/usb-net-asix
|
2007-07-23 10:41:33 +08:00
|
|
|
$(call usbdep,kmod-usb-net @LINUX_2_6)
|
2007-04-02 05:59:19 +08:00
|
|
|
TITLE:=Kernel module for USB-to-Ethernet Asix convertors
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_NET_AX8817X
|
2007-06-06 06:46:02 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/asix.$(LINUX_KMOD_SUFFIX)
|
2007-11-28 21:33:59 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,asix)
|
2007-04-15 22:47:40 +08:00
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-net-asix/description
|
|
|
|
Kernel module for USB-to-Ethernet Asix convertors
|
|
|
|
endef
|
|
|
|
|
2007-04-02 05:59:19 +08:00
|
|
|
$(eval $(call KernelPackage,usb-net-asix))
|
2007-05-28 02:51:50 +08:00
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2008-07-27 01:01:54 +08:00
|
|
|
define KernelPackage/usb-net-hso
|
2009-03-08 01:07:24 +08:00
|
|
|
$(call usbdep,kmod-usb-net @LINUX_2_6 @!LINUX_2_6_21 @!LINUX_2_6_23 @!LINUX_2_6_24 @!LINUX_2_6_25 +!TARGET_rb532||!TARGET_avr32||!TARGET_brcm47xx||!TARGET_s3c24xx||!TARGET_ifxmips||!TARGET_atheros||!TARGET_adm5120||!TARGET_ar7||!TARGET_ppc40x||!TARGET_ixp4xx||!TARGET_rdc:kmod-rfkill)
|
2008-07-27 01:01:54 +08:00
|
|
|
TITLE:=Kernel module for Option USB High Speed Mobile Devices
|
2009-03-08 01:07:24 +08:00
|
|
|
KCONFIG:=CONFIG_USB_HSO
|
2008-07-27 01:01:54 +08:00
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/$(USBNET_DIR)/hso.$(LINUX_KMOD_SUFFIX)
|
2009-03-08 01:07:24 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,hso)
|
2008-07-27 01:01:54 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-net-hso/description
|
|
|
|
Kernel module for Option USB High Speed Mobile Devices
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-net-hso))
|
|
|
|
|
|
|
|
|
2007-05-30 19:51:18 +08:00
|
|
|
define KernelPackage/usb-net-kaweth
|
2007-07-23 10:41:33 +08:00
|
|
|
$(call usbdep,kmod-usb-net @LINUX_2_6)
|
2007-05-30 19:51:18 +08:00
|
|
|
TITLE:=Kernel module for USB-to-Ethernet Kaweth convertors
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_KAWETH
|
2007-06-06 06:46:02 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/kaweth.$(LINUX_KMOD_SUFFIX)
|
2007-11-28 21:33:59 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,kaweth)
|
2007-05-30 19:51:18 +08:00
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-net-kaweth/description
|
|
|
|
Kernel module for USB-to-Ethernet Kaweth convertors
|
|
|
|
endef
|
|
|
|
|
2007-05-30 19:51:18 +08:00
|
|
|
$(eval $(call KernelPackage,usb-net-kaweth))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-05-30 19:51:18 +08:00
|
|
|
define KernelPackage/usb-net-pegasus
|
2007-07-23 10:41:33 +08:00
|
|
|
$(call usbdep,kmod-usb-net @LINUX_2_6)
|
2007-05-30 19:51:18 +08:00
|
|
|
TITLE:=Kernel module for USB-to-Ethernet Pegasus convertors
|
2007-07-18 19:31:01 +08:00
|
|
|
KCONFIG:=CONFIG_USB_PEGASUS
|
2007-06-06 06:46:02 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/pegasus.$(LINUX_KMOD_SUFFIX)
|
2007-11-28 21:33:59 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,pegasus)
|
2007-05-30 19:51:18 +08:00
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-net-pegasus/description
|
|
|
|
Kernel module for USB-to-Ethernet Pegasus convertors
|
|
|
|
endef
|
|
|
|
|
2007-05-30 19:51:18 +08:00
|
|
|
$(eval $(call KernelPackage,usb-net-pegasus))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-18 21:55:03 +08:00
|
|
|
define KernelPackage/usb-net-cdc-ether
|
|
|
|
$(call usbdep,kmod-usb-net @LINUX_2_6)
|
|
|
|
TITLE:=Support for cdc ethernet connections
|
|
|
|
KCONFIG:=CONFIG_USB_NET_CDCETHER
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/cdc_ether.$(LINUX_KMOD_SUFFIX)
|
2007-09-27 22:20:53 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,cdc_ether)
|
2007-09-18 21:55:03 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-net-cdc-ether/description
|
|
|
|
Kernel support for USB CDC Ethernet devices
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-net-cdc-ether))
|
|
|
|
|
|
|
|
|
2007-05-28 02:57:02 +08:00
|
|
|
define KernelPackage/usb-hid
|
2008-04-21 05:01:03 +08:00
|
|
|
$(call usbdep,@LINUX_2_6 +kmod-input-core +kmod-input-evdev +kmod-hid)
|
2007-05-28 02:57:02 +08:00
|
|
|
TITLE:=Support for USB Human Input Devices
|
2008-04-03 21:51:14 +08:00
|
|
|
KCONFIG:=CONFIG_HID_SUPPORT=y CONFIG_USB_HID
|
2007-08-28 19:31:16 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBHID_DIR)/usbhid.ko
|
2007-05-29 02:23:49 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,usbhid)
|
2007-05-28 02:57:02 +08:00
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
|
|
|
|
define KernelPackage/usb-hid/description
|
|
|
|
Kernel support for USB HID devices such as keyboards and mice
|
|
|
|
endef
|
|
|
|
|
2007-05-28 02:57:02 +08:00
|
|
|
$(eval $(call KernelPackage,usb-hid))
|
2007-05-28 02:51:50 +08:00
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-05-28 02:51:50 +08:00
|
|
|
define KernelPackage/usb-yealink
|
2007-06-11 06:38:18 +08:00
|
|
|
$(call usbdep,@LINUX_2_6 +kmod-input-core +kmod-input-evdev)
|
2007-05-28 02:51:50 +08:00
|
|
|
TITLE:=USB Yealink VOIP phone
|
2007-07-21 09:00:42 +08:00
|
|
|
KCONFIG:=CONFIG_USB_YEALINK CONFIG_INPUT_YEALINK CONFIG_INPUT=m CONFIG_INPUT_MISC=y
|
2007-06-30 20:09:22 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBINPUT_DIR)/yealink.ko
|
2007-05-28 02:51:50 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,yealink)
|
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/usb-yealink/description
|
|
|
|
Kernel support for Yealink VOIP phone
|
|
|
|
endef
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
$(eval $(call KernelPackage,usb-yealink))
|
2007-11-16 17:38:18 +08:00
|
|
|
|
|
|
|
define KernelPackage/usb-test
|
|
|
|
$(call usbdep,@LINUX_2_6 @DEVEL)
|
|
|
|
TITLE:=USB Testing Driver
|
|
|
|
KCONFIG:=CONFIG_USB_TEST
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/misc/usbtest.ko
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-test/description
|
|
|
|
Kernel support for testing USB Host Controller software.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-test))
|
|
|
|
|
2008-10-17 12:27:45 +08:00
|
|
|
define KernelPackage/usb-phidget
|
|
|
|
$(call usbdep,@LINUX_2_6)
|
|
|
|
TITLE:=USB Phidget Driver
|
|
|
|
KCONFIG:=CONFIG_USB_PHIDGET CONFIG_USB_PHIDGETKIT CONFIG_USB_PHIDGETMOTORCONTROL CONFIG_USB_PHIDGETSERVO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/misc/phidget*.ko
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-phidget/description
|
|
|
|
Kernel support for USB Phidget devices.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-phidget))
|
|
|
|
|