2008-07-27 03:39:11 +00:00
|
|
|
#
|
2010-04-24 11:42:17 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-10-17 20:52:55 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-09-16 17:45:15 +00:00
|
|
|
USB_MENU:=USB Support
|
2006-10-17 20:52:55 +00:00
|
|
|
|
2010-06-26 20:43:41 +00:00
|
|
|
USBNET_DIR:=net/usb
|
2007-06-30 12:11:46 +00:00
|
|
|
USBHID_DIR?=hid/usbhid
|
2007-06-30 12:09:22 +00:00
|
|
|
USBINPUT_DIR?=input/misc
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
define KernelPackage/usb-core
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(USB_MENU)
|
2006-10-17 20:52:55 +00:00
|
|
|
TITLE:=Support for USB
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=@USB_SUPPORT +kmod-nls-base
|
2011-01-18 14:43:50 +00:00
|
|
|
KCONFIG:=CONFIG_USB CONFIG_XPS_USB_HCD_XILINX=n CONFIG_USB_FHCI_HCD=n
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/core/usbcore.ko
|
2010-06-26 20:43:41 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,20,usbcore,1)
|
2006-10-17 21:21:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-core/description
|
|
|
|
Kernel support for USB
|
|
|
|
endef
|
|
|
|
|
2006-10-17 21:47:21 +00:00
|
|
|
$(eval $(call KernelPackage,usb-core))
|
2006-10-17 20:52:55 +00:00
|
|
|
|
|
|
|
|
2010-04-24 11:42:17 +00:00
|
|
|
define AddDepends/usb
|
2010-01-22 08:18:04 +00:00
|
|
|
SUBMENU:=$(USB_MENU)
|
2010-07-11 12:27:11 +00:00
|
|
|
DEPENDS+=+!TARGET_etrax:kmod-usb-core $(1)
|
2010-01-22 08:18:04 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
2010-08-24 15:15:23 +00:00
|
|
|
define KernelPackage/usb-gadget
|
|
|
|
TITLE:=USB Gadget support
|
|
|
|
KCONFIG:=CONFIG_USB_GADGET
|
|
|
|
FILES:=
|
|
|
|
AUTOLOAD:=
|
2010-08-25 17:35:34 +00:00
|
|
|
DEPENDS:=@USB_GADGET_SUPPORT
|
2010-08-24 15:15:23 +00:00
|
|
|
$(call AddDepends/usb)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-gadget/description
|
|
|
|
Kernel support for USB Gadget mode.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-gadget))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-eth-gadget
|
|
|
|
TITLE:=USB Ethernet Gadget support
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_USB_ETH \
|
|
|
|
CONFIG_USB_ETH_RNDIS=y \
|
|
|
|
CONFIG_USB_ETH_EEM=y
|
|
|
|
DEPENDS:=+kmod-usb-gadget
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/gadget/g_ether.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,52,usb-eth-gadget)
|
|
|
|
$(call AddDepends/usb)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-eth-gadget/description
|
|
|
|
Kernel support for USB Ethernet Gadget.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-eth-gadget))
|
|
|
|
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
define KernelPackage/usb-uhci
|
|
|
|
TITLE:=Support for UHCI controllers
|
2007-09-09 20:37:50 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_USB_UHCI_ALT \
|
|
|
|
CONFIG_USB_UHCI_HCD
|
2007-04-18 12:28:38 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/uhci-hcd.ko
|
2010-02-26 22:46:00 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,uhci-hcd,1)
|
2010-06-26 20:43:41 +00:00
|
|
|
$(call AddDepends/usb)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-uhci/description
|
|
|
|
Kernel support for USB UHCI controllers
|
|
|
|
endef
|
|
|
|
|
2010-02-26 22:46:00 +00:00
|
|
|
$(eval $(call KernelPackage,usb-uhci,1))
|
2006-10-17 20:52:55 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
define KernelPackage/usb-ohci
|
|
|
|
TITLE:=Support for OHCI controllers
|
2007-09-09 20:37:50 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_USB_OHCI \
|
2009-05-07 19:13:44 +00:00
|
|
|
CONFIG_USB_OHCI_HCD \
|
|
|
|
CONFIG_USB_OHCI_AR71XX=y
|
2007-04-18 12:28:38 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/ohci-hcd.ko
|
2010-02-26 22:46:00 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,ohci-hcd,1)
|
2010-06-26 20:43:41 +00:00
|
|
|
$(call AddDepends/usb)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-ohci/description
|
|
|
|
Kernel support for USB OHCI controllers
|
|
|
|
endef
|
|
|
|
|
2010-02-26 22:46:00 +00:00
|
|
|
$(eval $(call KernelPackage,usb-ohci,1))
|
2006-10-17 20:52:55 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-08-24 15:15:23 +00:00
|
|
|
define KernelPackage/musb-hdrc
|
|
|
|
TITLE:=Support for Mentor Graphics silicon dual role USB
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_USB_MUSB_HDRC \
|
|
|
|
CONFIG_MUSB_PIO_ONLY=n \
|
|
|
|
CONFIG_USB_MUSB_OTG=y \
|
|
|
|
CONFIG_USB_MUSB_DEBUG=y
|
|
|
|
DEPENDS:=@TARGET_omap24xx
|
2011-02-11 12:57:20 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/musb/musb_hdrc.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,54,musb_hdrc)
|
2010-08-24 15:15:23 +00:00
|
|
|
$(call AddDepends/usb)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/musb-hdrc/description
|
|
|
|
Kernel support for Mentor Graphics silicon dual role USB device.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,musb-hdrc))
|
|
|
|
|
|
|
|
|
2010-08-19 11:22:15 +00:00
|
|
|
define KernelPackage/usb-tahvo
|
|
|
|
TITLE:=Support for Tahvo (Nokia n810) USB
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CBUS_TAHVO_USB \
|
2010-08-23 14:24:39 +00:00
|
|
|
CONFIG_CBUS_TAHVO_USB_HOST_BY_DEFAULT=n \
|
2010-08-19 11:22:15 +00:00
|
|
|
CONFIG_USB_OHCI_HCD_OMAP1=y \
|
|
|
|
CONFIG_USB_GADGET_DEBUG_FS=n
|
2010-08-24 15:15:23 +00:00
|
|
|
DEPENDS:=@TARGET_omap24xx +kmod-usb-ohci +kmod-musb-hdrc +kmod-usb-gadget
|
2010-08-19 11:22:15 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/cbus/tahvo-usb.ko
|
2010-08-24 15:15:23 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,55,tahvo-usb)
|
2010-08-19 11:22:15 +00:00
|
|
|
$(call AddDepends/usb)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-tahvo/description
|
|
|
|
Kernel support for Nokia n810 USB OHCI controller.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-tahvo))
|
|
|
|
|
|
|
|
|
2010-04-16 18:40:15 +00:00
|
|
|
define KernelPackage/usb-isp116x-hcd
|
|
|
|
TITLE:=Support for the ISP116x USB Host Controller
|
2010-04-29 04:04:19 +00:00
|
|
|
DEPENDS:=@TARGET_ppc40x
|
2010-04-16 18:40:15 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_USB_ISP116X_HCD \
|
|
|
|
CONFIG_USB_ISP116X_HCD_OF=y \
|
|
|
|
CONFIG_USB_ISP116X_HCD_PLATFORM=n
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/isp116x-hcd.ko
|
2010-04-16 18:40:15 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,isp116x-hcd)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
2010-04-16 18:40:15 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-isp116x-hcd/description
|
|
|
|
Kernel support for the ISP116X USB Host Controller
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-isp116x-hcd))
|
|
|
|
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
define KernelPackage/usb2
|
|
|
|
TITLE:=Support for USB2 controllers
|
2009-03-01 20:15:33 +00:00
|
|
|
KCONFIG:=CONFIG_USB_EHCI_HCD \
|
2011-01-18 14:43:50 +00:00
|
|
|
CONFIG_USB_EHCI_AR71XX=y \
|
|
|
|
CONFIG_USB_EHCI_FSL=n
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/host/ehci-hcd.ko
|
2010-02-26 22:46:00 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,ehci-hcd,1)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb2/description
|
|
|
|
Kernel support for USB2 (EHCI) controllers
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb2))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-acm
|
|
|
|
TITLE:=Support for modems/isdn controllers
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_ACM
|
2007-04-18 12:28:38 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/class/cdc-acm.ko
|
2006-10-17 20:52:55 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,cdc-acm)
|
2010-06-26 20:43:41 +00:00
|
|
|
$(call AddDepends/usb)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-acm/description
|
|
|
|
Kernel support for USB ACM devices (modems/isdn controllers)
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-acm))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-audio
|
2007-09-21 12:58:13 +00:00
|
|
|
TITLE:=Support for USB audio devices
|
2007-09-09 20:37:50 +00:00
|
|
|
KCONFIG:= \
|
2007-09-09 20:49:21 +00:00
|
|
|
CONFIG_USB_AUDIO \
|
2007-09-09 20:37:50 +00:00
|
|
|
CONFIG_SND_USB_AUDIO
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
|
|
|
$(call AddDepends/sound)
|
2010-08-19 12:49:56 +00:00
|
|
|
# For Linux 2.6.35+
|
|
|
|
ifneq ($(wildcard $(LINUX_DIR)/sound/usb/snd-usbmidi-lib.ko),)
|
2010-07-11 19:39:30 +00:00
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/sound/usb/snd-usbmidi-lib.ko \
|
|
|
|
$(LINUX_DIR)/sound/usb/snd-usb-audio.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,snd-usbmidi-lib snd-usb-audio)
|
|
|
|
else
|
2007-04-05 11:29:56 +00:00
|
|
|
FILES:= \
|
2007-04-18 12:28:38 +00:00
|
|
|
$(LINUX_DIR)/sound/usb/snd-usb-lib.ko \
|
|
|
|
$(LINUX_DIR)/sound/usb/snd-usb-audio.ko
|
2007-04-05 11:29:56 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,snd-usb-lib snd-usb-audio)
|
2010-07-11 19:39:30 +00:00
|
|
|
endif
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-audio/description
|
|
|
|
Kernel support for USB audio devices
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-audio))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-printer
|
|
|
|
TITLE:=Support for printers
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_PRINTER
|
2007-04-18 12:28:38 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/class/usblp.ko
|
2006-10-17 20:52:55 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usblp)
|
2010-06-26 20:43:41 +00:00
|
|
|
$(call AddDepends/usb)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-printer/description
|
|
|
|
Kernel support for USB printers
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-printer))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial
|
|
|
|
TITLE:=Support for USB-to-Serial converters
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/usbserial.ko
|
2006-10-17 20:52:55 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usbserial)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial/description
|
|
|
|
Kernel support for USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 11:42:17 +00:00
|
|
|
define AddDepends/usb-serial
|
2010-01-22 08:18:04 +00:00
|
|
|
SUBMENU:=$(USB_MENU)
|
2010-04-29 04:04:19 +00:00
|
|
|
DEPENDS+=kmod-usb-serial $(1)
|
2010-01-22 08:18:04 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
2007-05-01 21:53:32 +00:00
|
|
|
define KernelPackage/usb-serial-airprime
|
2008-07-27 03:39:11 +00:00
|
|
|
TITLE:=Support for Airprime (EVDO)
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_AIRPRIME
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/airprime.ko
|
2007-05-01 21:53:32 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,airprime)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2007-05-01 21:53:32 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial-airprime/description
|
2008-07-27 03:39:11 +00:00
|
|
|
Kernel support for Airprime (EVDO)
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
2007-05-01 21:53:32 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-airprime))
|
2006-10-17 20:52:55 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
define KernelPackage/usb-serial-belkin
|
|
|
|
TITLE:=Support for Belkin devices
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_BELKIN
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/belkin_sa.ko
|
2006-10-17 20:52:55 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,belkin_sa)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial-belkin/description
|
|
|
|
Kernel support for Belkin USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-belkin))
|
|
|
|
|
|
|
|
|
2008-07-24 06:25:47 +00:00
|
|
|
define KernelPackage/usb-serial-ch341
|
|
|
|
TITLE:=Support for CH341 devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_CH341
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/ch341.ko
|
2008-07-24 06:25:47 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,ch341)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2008-07-24 06:25:47 +00:00
|
|
|
endef
|
|
|
|
|
2010-10-21 08:35:22 +00:00
|
|
|
define KernelPackage/usb-serial-ch341/description
|
2008-07-24 06:25:47 +00:00
|
|
|
Kernel support for Winchiphead CH341 USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-ch341))
|
|
|
|
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
define KernelPackage/usb-serial-ftdi
|
|
|
|
TITLE:=Support for FTDI devices
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_FTDI_SIO
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/ftdi_sio.ko
|
2006-10-17 20:52:55 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,ftdi_sio)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial-ftdi/description
|
|
|
|
Kernel support for FTDI USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-ftdi))
|
|
|
|
|
|
|
|
|
2010-09-04 16:03:26 +00:00
|
|
|
define KernelPackage/usb-serial-ipw
|
|
|
|
TITLE:=Support for IPWireless 3G devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_IPW
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/ipw.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,ipw)
|
|
|
|
$(call AddDepends/usb-serial)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-ipw))
|
|
|
|
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
define KernelPackage/usb-serial-mct
|
|
|
|
TITLE:=Support for Magic Control Tech. devices
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_MCT_U232
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/mct_u232.ko
|
2006-10-17 20:52:55 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,mct_u232)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial-mct/description
|
|
|
|
Kernel support for Magic Control Technology USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-mct))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2011-01-27 21:49:53 +00:00
|
|
|
define KernelPackage/usb-serial-mos7720
|
|
|
|
TITLE:=Support for Moschip MOS7720 devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_MOS7720
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/mos7720.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,mos7720)
|
|
|
|
$(call AddDepends/usb-serial)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-mos7720/description
|
|
|
|
Kernel support for Moschip MOS7720 USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-mos7720))
|
|
|
|
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
define KernelPackage/usb-serial-pl2303
|
|
|
|
TITLE:=Support for Prolific PL2303 devices
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_PL2303
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/pl2303.ko
|
2006-10-17 20:52:55 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,pl2303)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial-pl2303/description
|
|
|
|
Kernel support for Prolific PL2303 USB-to-Serial converters
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-pl2303))
|
|
|
|
|
|
|
|
|
2010-02-19 02:12:48 +00:00
|
|
|
define KernelPackage/usb-serial-cp210x
|
|
|
|
TITLE:=Support for Silicon Labs cp210x devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_CP210X
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/cp210x.ko
|
2010-02-19 02:12:48 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,cp210x)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2008-03-06 19:28:42 +00:00
|
|
|
endef
|
|
|
|
|
2010-02-19 02:12:48 +00:00
|
|
|
define KernelPackage/usb-serial-cp210x/description
|
|
|
|
Kernel support for Silicon Labs cp210x USB-to-Serial converters
|
2008-03-06 19:28:42 +00:00
|
|
|
endef
|
|
|
|
|
2010-02-19 02:12:48 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-cp210x))
|
2008-03-06 19:28:42 +00:00
|
|
|
|
|
|
|
|
2008-05-18 11:21:28 +00:00
|
|
|
define KernelPackage/usb-serial-ark3116
|
|
|
|
TITLE:=Support for ArkMicroChips ARK3116 devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_ARK3116
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/ark3116.ko
|
2008-05-18 11:21:28 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,ark3116)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2008-05-18 11:21:28 +00:00
|
|
|
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
|
|
|
|
TITLE:=Support for Ours Technology OTI6858 devices
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_OTI6858
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/oti6858.ko
|
2008-05-18 11:21:28 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,oti6858)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2008-05-18 11:21:28 +00:00
|
|
|
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 10:58:50 +00:00
|
|
|
define KernelPackage/usb-serial-sierrawireless
|
|
|
|
TITLE:=Support for Sierra Wireless devices
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_SIERRAWIRELESS
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/sierra.ko
|
2007-05-03 10:58:50 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,sierra)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2007-05-03 10:58:50 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial-sierrawireless/description
|
|
|
|
Kernel support for Sierra Wireless devices
|
|
|
|
endef
|
|
|
|
|
2007-05-03 10:58:50 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-sierrawireless))
|
|
|
|
|
|
|
|
|
2009-08-05 15:09:21 +00:00
|
|
|
define KernelPackage/usb-serial-motorola-phone
|
|
|
|
TITLE:=Support for Motorola usb phone
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_MOTOROLA
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/moto_modem.ko
|
2009-08-05 15:09:21 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,moto_modem)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2009-08-05 15:09:21 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-motorola-phone/description
|
|
|
|
Kernel support for Motorola usb phone
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-motorola-phone))
|
|
|
|
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
define KernelPackage/usb-serial-visor
|
|
|
|
TITLE:=Support for Handspring Visor devices
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_VISOR
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/visor.ko
|
2006-10-17 20:52:55 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,visor)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial-visor/description
|
|
|
|
Kernel support for Handspring Visor PDAs
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-visor))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-23 10:55:26 +00:00
|
|
|
define KernelPackage/usb-serial-cypress-m8
|
|
|
|
TITLE:=Support for CypressM8 USB-Serial
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_CYPRESS_M8
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/cypress_m8.ko
|
2010-04-23 10:55:26 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,cypress_m8)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2010-04-23 10:55:26 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-cypress-m8/description
|
|
|
|
Kernel support for devices with Cypress M8 USB to Serial chip
|
|
|
|
(for example, the Delorme Earthmate LT-20 GPS)
|
|
|
|
Supported microcontrollers in the CY4601 family are:
|
|
|
|
CY7C63741 CY7C63742 CY7C63743 CY7C64013
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-cypress-m8))
|
|
|
|
|
|
|
|
|
2007-08-21 09:42:25 +00:00
|
|
|
define KernelPackage/usb-serial-keyspan
|
|
|
|
TITLE:=Support for Keyspan USB-to-Serial devices
|
|
|
|
KCONFIG:= \
|
2007-09-03 08:58:14 +00: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
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/keyspan.ko
|
2007-08-21 09:42:25 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,keyspan)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2007-08-21 09:42:25 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial-keyspan/description
|
|
|
|
Kernel support for Keyspan USB-to-Serial devices
|
|
|
|
endef
|
|
|
|
|
2007-08-21 09:42:25 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-keyspan))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-12-05 20:43:45 +00:00
|
|
|
define KernelPackage/usb-serial-wwan
|
|
|
|
TITLE:=Support for GSM and CDMA modems
|
|
|
|
DEPENDS:= @LINUX_2_6_35||LINUX_2_6_36||LINUX_2_6_37
|
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_WWAN
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/usb_wwan.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,61,usb_wwan)
|
|
|
|
$(call AddDepends/usb-serial)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-serial-wwan/description
|
|
|
|
Kernel support for USB GSM and CDMA modems
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-serial-wwan))
|
|
|
|
|
|
|
|
|
2007-06-14 10:23:41 +00:00
|
|
|
define KernelPackage/usb-serial-option
|
|
|
|
TITLE:=Support for Option HSDPA modems
|
2010-12-05 20:43:45 +00:00
|
|
|
DEPENDS:=+LINUX_2_6_35||LINUX_2_6_36||LINUX_2_6_37:kmod-usb-serial-wwan
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SERIAL_OPTION
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/serial/option.ko
|
2007-06-14 10:23:41 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,65,option)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-serial)
|
2007-06-14 10:23:41 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-serial-option/description
|
|
|
|
Kernel support for Option HSDPA modems
|
|
|
|
endef
|
|
|
|
|
2007-06-14 10:23:41 +00:00
|
|
|
$(eval $(call KernelPackage,usb-serial-option))
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
|
|
|
|
define KernelPackage/usb-storage
|
|
|
|
TITLE:=USB Storage support
|
2010-04-29 04:04:19 +00:00
|
|
|
DEPENDS:= +!TARGET_x86:kmod-scsi-core
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_STORAGE
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/storage/usb-storage.ko
|
2010-03-21 14:19:48 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usb-storage,1)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-storage/description
|
|
|
|
Kernel support for USB Mass Storage devices
|
|
|
|
endef
|
|
|
|
|
2006-10-17 20:52:55 +00:00
|
|
|
$(eval $(call KernelPackage,usb-storage))
|
|
|
|
|
2010-04-29 04:04:19 +00:00
|
|
|
|
2010-03-20 17:18:54 +00:00
|
|
|
define KernelPackage/usb-storage-extras
|
|
|
|
SUBMENU:=$(USB_MENU)
|
|
|
|
TITLE:=Extra drivers for usb-storage
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=+kmod-usb-storage
|
2010-03-20 17:18:54 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_USB_STORAGE_ALAUDA \
|
|
|
|
CONFIG_USB_STORAGE_CYPRESS_ATACB \
|
|
|
|
CONFIG_USB_STORAGE_DATAFAB \
|
|
|
|
CONFIG_USB_STORAGE_FREECOM \
|
|
|
|
CONFIG_USB_STORAGE_ISD200 \
|
|
|
|
CONFIG_USB_STORAGE_JUMPSHOT \
|
|
|
|
CONFIG_USB_STORAGE_KARMA \
|
|
|
|
CONFIG_USB_STORAGE_SDDR09 \
|
|
|
|
CONFIG_USB_STORAGE_SDDR55 \
|
|
|
|
CONFIG_USB_STORAGE_USBAT
|
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-alauda.ko \
|
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-cypress.ko \
|
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-datafab.ko \
|
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-freecom.ko \
|
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-isd200.ko \
|
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-jumpshot.ko \
|
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-karma.ko \
|
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-sddr09.ko \
|
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-sddr55.ko \
|
|
|
|
$(LINUX_DIR)/drivers/usb/storage/ums-usbat.ko
|
2010-03-20 17:18:54 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,ums-alauda ums-cypress ums-datafab \
|
|
|
|
ums-freecom ums-isd200 ums-jumpshot \
|
|
|
|
ums-karma ums-sddr09 ums-sddr55 ums-usbat)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-storage-extras/description
|
|
|
|
Say Y here if you want to have some more drivers,
|
|
|
|
such as for SmartMedia card readers.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-storage-extras))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-21 12:58:13 +00:00
|
|
|
define KernelPackage/usb-video
|
|
|
|
TITLE:=Support for USB video devices
|
|
|
|
KCONFIG:=CONFIG_VIDEO_USBVIDEO
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/usbvideo/usbvideo.ko
|
2009-12-15 20:17:44 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,usbvideo)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
2007-09-21 12:58:13 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-video/description
|
|
|
|
Kernel support for USB video devices
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-video))
|
|
|
|
|
|
|
|
|
2007-06-01 23:21:35 +00:00
|
|
|
define KernelPackage/usb-atm
|
|
|
|
TITLE:=Support for ATM on USB bus
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=+kmod-atm
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_ATM
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/atm/usbatm.ko
|
2007-06-01 23:21:35 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usbatm)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
2007-06-01 23:21:35 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-atm/description
|
|
|
|
Kernel support for USB DSL modems
|
|
|
|
endef
|
|
|
|
|
2007-06-01 23:21:35 +00:00
|
|
|
$(eval $(call KernelPackage,usb-atm))
|
2006-10-17 20:52:55 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 11:42:17 +00:00
|
|
|
define AddDepends/usb-atm
|
2010-01-22 08:18:04 +00:00
|
|
|
SUBMENU:=$(USB_MENU)
|
2010-04-29 04:04:19 +00:00
|
|
|
DEPENDS+=kmod-usb-atm $(1)
|
2010-01-22 08:18:04 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
2007-09-16 17:48:44 +00:00
|
|
|
define KernelPackage/usb-atm-speedtouch
|
|
|
|
TITLE:=SpeedTouch USB ADSL modems support
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SPEEDTOUCH
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/atm/speedtch.ko
|
2007-06-01 23:21:35 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,speedtch)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-atm)
|
2006-10-17 20:52:55 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-16 17:48:44 +00:00
|
|
|
define KernelPackage/usb-atm-speedtouch/description
|
2007-09-07 08:34:51 +00:00
|
|
|
Kernel support for SpeedTouch USB ADSL modems
|
|
|
|
endef
|
|
|
|
|
2007-09-16 17:48:44 +00:00
|
|
|
$(eval $(call KernelPackage,usb-atm-speedtouch))
|
2006-10-19 04:35:29 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-16 17:48:44 +00:00
|
|
|
define KernelPackage/usb-atm-ueagle
|
|
|
|
TITLE:=Eagle 8051 based USB ADSL modems support
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/atm/ueagle-atm.ko
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_UEAGLEATM
|
2007-06-01 23:21:35 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,ueagle-atm)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-atm)
|
2007-06-01 23:21:35 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-16 17:48:44 +00:00
|
|
|
define KernelPackage/usb-atm-ueagle/description
|
2007-09-07 08:34:51 +00:00
|
|
|
Kernel support for Eagle 8051 based USB ADSL modems
|
|
|
|
endef
|
|
|
|
|
2007-09-16 17:48:44 +00:00
|
|
|
$(eval $(call KernelPackage,usb-atm-ueagle))
|
2006-10-19 04:35:29 +00:00
|
|
|
|
2010-01-22 08:18:04 +00:00
|
|
|
|
2008-06-21 13:21:49 +00:00
|
|
|
define KernelPackage/usb-atm-cxacru
|
|
|
|
TITLE:=cxacru
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/atm/cxacru.ko
|
2008-06-21 13:21:49 +00:00
|
|
|
KCONFIG:=CONFIG_USB_CXACRU
|
|
|
|
AUTOLOAD:=$(call AutoLoad,70,cxacru)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-atm)
|
2008-06-21 13:21:49 +00:00
|
|
|
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 11:44:15 +00:00
|
|
|
|
2007-04-01 21:59:19 +00:00
|
|
|
define KernelPackage/usb-net
|
|
|
|
TITLE:=Kernel modules for USB-to-Ethernet convertors
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_USBNET
|
2007-11-28 13:33:59 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,usbnet)
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/usbnet.ko
|
2010-06-26 20:43:41 +00:00
|
|
|
$(call AddDepends/usb)
|
2007-04-15 14:47:40 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-net/description
|
|
|
|
Kernel modules for USB-to-Ethernet convertors
|
|
|
|
endef
|
|
|
|
|
2007-04-01 21:59:19 +00:00
|
|
|
$(eval $(call KernelPackage,usb-net))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 11:42:17 +00:00
|
|
|
define AddDepends/usb-net
|
2010-01-22 08:18:04 +00:00
|
|
|
SUBMENU:=$(USB_MENU)
|
2010-04-29 04:04:19 +00:00
|
|
|
DEPENDS+=kmod-usb-net $(1)
|
2010-01-22 08:18:04 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
2007-04-01 21:59:19 +00:00
|
|
|
define KernelPackage/usb-net-asix
|
|
|
|
TITLE:=Kernel module for USB-to-Ethernet Asix convertors
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_NET_AX8817X
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/asix.ko
|
2007-11-28 13:33:59 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,asix)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-net)
|
2007-04-15 14:47:40 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-net-asix/description
|
|
|
|
Kernel module for USB-to-Ethernet Asix convertors
|
|
|
|
endef
|
|
|
|
|
2007-04-01 21:59:19 +00:00
|
|
|
$(eval $(call KernelPackage,usb-net-asix))
|
2007-05-27 18:51:50 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2008-07-26 17:01:54 +00:00
|
|
|
define KernelPackage/usb-net-hso
|
|
|
|
TITLE:=Kernel module for Option USB High Speed Mobile Devices
|
2009-03-07 17:07:24 +00:00
|
|
|
KCONFIG:=CONFIG_USB_HSO
|
2008-07-26 17:01:54 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/$(USBNET_DIR)/hso.ko
|
2009-03-07 17:07:24 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,hso)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-net)
|
2010-04-23 04:08:26 +00:00
|
|
|
$(call AddDepends/rfkill)
|
2008-07-26 17:01:54 +00: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 11:51:18 +00:00
|
|
|
define KernelPackage/usb-net-kaweth
|
|
|
|
TITLE:=Kernel module for USB-to-Ethernet Kaweth convertors
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_KAWETH
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/kaweth.ko
|
2007-11-28 13:33:59 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,kaweth)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-net)
|
2007-05-30 11:51:18 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-net-kaweth/description
|
|
|
|
Kernel module for USB-to-Ethernet Kaweth convertors
|
|
|
|
endef
|
|
|
|
|
2007-05-30 11:51:18 +00:00
|
|
|
$(eval $(call KernelPackage,usb-net-kaweth))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-05-30 11:51:18 +00:00
|
|
|
define KernelPackage/usb-net-pegasus
|
|
|
|
TITLE:=Kernel module for USB-to-Ethernet Pegasus convertors
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_USB_PEGASUS
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/pegasus.ko
|
2007-11-28 13:33:59 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,pegasus)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-net)
|
2007-05-30 11:51:18 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-net-pegasus/description
|
|
|
|
Kernel module for USB-to-Ethernet Pegasus convertors
|
|
|
|
endef
|
|
|
|
|
2007-05-30 11:51:18 +00:00
|
|
|
$(eval $(call KernelPackage,usb-net-pegasus))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2009-07-25 23:39:54 +00:00
|
|
|
define KernelPackage/usb-net-mcs7830
|
|
|
|
TITLE:=Kernel module for USB-to-Ethernet MCS7830 convertors
|
|
|
|
KCONFIG:=CONFIG_USB_NET_MCS7830
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/mcs7830.ko
|
2009-07-25 23:39:54 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,mcs7830)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-net)
|
2009-07-25 23:39:54 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-net-mcs7830/description
|
|
|
|
Kernel module for USB-to-Ethernet MCS7830 convertors
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-net-mcs7830))
|
|
|
|
|
2010-01-22 08:18:04 +00:00
|
|
|
|
2009-08-05 15:10:29 +00:00
|
|
|
define KernelPackage/usb-net-dm9601-ether
|
|
|
|
TITLE:=Support for DM9601 ethernet connections
|
|
|
|
KCONFIG:=CONFIG_USB_NET_DM9601
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/dm9601.ko
|
2009-08-05 15:10:29 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,dm9601)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-net)
|
2009-08-05 15:10:29 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-net-dm9601-ether/description
|
|
|
|
Kernel support for USB DM9601 devices
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-net-dm9601-ether))
|
2009-07-25 23:39:54 +00:00
|
|
|
|
2007-09-18 13:55:03 +00:00
|
|
|
define KernelPackage/usb-net-cdc-ether
|
|
|
|
TITLE:=Support for cdc ethernet connections
|
|
|
|
KCONFIG:=CONFIG_USB_NET_CDCETHER
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/cdc_ether.ko
|
2007-09-27 14:20:53 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,61,cdc_ether)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-net)
|
2007-09-18 13:55:03 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-net-cdc-ether/description
|
|
|
|
Kernel support for USB CDC Ethernet devices
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-net-cdc-ether))
|
|
|
|
|
|
|
|
|
2009-04-19 22:21:27 +00:00
|
|
|
define KernelPackage/usb-net-rndis
|
|
|
|
TITLE:=Support for RNDIS connections
|
2010-04-16 18:40:15 +00:00
|
|
|
KCONFIG:=CONFIG_USB_NET_RNDIS_HOST
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:= $(LINUX_DIR)/drivers/$(USBNET_DIR)/rndis_host.ko
|
2009-04-19 22:21:27 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,62,rndis_host)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb-net,+kmod-usb-net-cdc-ether)
|
2009-04-19 22:21:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-net-rndis/description
|
|
|
|
Kernel support for RNDIS connections
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-net-rndis))
|
|
|
|
|
|
|
|
|
2007-05-27 18:57:02 +00:00
|
|
|
define KernelPackage/usb-hid
|
|
|
|
TITLE:=Support for USB Human Input Devices
|
2010-08-14 08:59:51 +00:00
|
|
|
KCONFIG:=CONFIG_HID_SUPPORT=y CONFIG_USB_HID CONFIG_USB_HIDDEV=y
|
2007-08-28 11:31:16 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBHID_DIR)/usbhid.ko
|
2007-05-28 18:23:49 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,usbhid)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
2010-04-24 11:01:06 +00:00
|
|
|
$(call AddDepends/hid)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/input,+kmod-input-evdev)
|
2007-05-27 18:57:02 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
|
|
|
|
define KernelPackage/usb-hid/description
|
|
|
|
Kernel support for USB HID devices such as keyboards and mice
|
|
|
|
endef
|
|
|
|
|
2007-05-27 18:57:02 +00:00
|
|
|
$(eval $(call KernelPackage,usb-hid))
|
2007-05-27 18:51:50 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-05-27 18:51:50 +00:00
|
|
|
define KernelPackage/usb-yealink
|
|
|
|
TITLE:=USB Yealink VOIP phone
|
2007-07-21 01:00:42 +00:00
|
|
|
KCONFIG:=CONFIG_USB_YEALINK CONFIG_INPUT_YEALINK CONFIG_INPUT=m CONFIG_INPUT_MISC=y
|
2007-06-30 12:09:22 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBINPUT_DIR)/yealink.ko
|
2007-05-27 18:51:50 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,yealink)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
|
|
|
$(call AddDepends/input,+kmod-input-evdev)
|
2007-05-27 18:51:50 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/usb-yealink/description
|
|
|
|
Kernel support for Yealink VOIP phone
|
|
|
|
endef
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
$(eval $(call KernelPackage,usb-yealink))
|
2007-11-16 09:38:18 +00:00
|
|
|
|
2009-04-19 15:27:25 +00:00
|
|
|
|
|
|
|
define KernelPackage/usb-cm109
|
|
|
|
TITLE:=Support for CM109 device
|
|
|
|
KCONFIG:=CONFIG_USB_CM109 CONFIG_INPUT_CM109 CONFIG_INPUT=m CONFIG_INPUT_MISC=y
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(USBINPUT_DIR)/cm109.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,70,cm109)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
|
|
|
$(call AddDepends/input,+kmod-input-evdev)
|
2009-04-19 15:27:25 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-cm109/description
|
|
|
|
Kernel support for CM109 VOIP phone
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-cm109))
|
|
|
|
|
|
|
|
|
2007-11-16 09:38:18 +00:00
|
|
|
define KernelPackage/usb-test
|
|
|
|
TITLE:=USB Testing Driver
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=@DEVEL
|
2007-11-16 09:38:18 +00:00
|
|
|
KCONFIG:=CONFIG_USB_TEST
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/usb/misc/usbtest.ko
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
2007-11-16 09:38:18 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-test/description
|
|
|
|
Kernel support for testing USB Host Controller software.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-test))
|
|
|
|
|
2010-01-22 08:18:04 +00:00
|
|
|
|
2008-10-17 04:27:45 +00:00
|
|
|
define KernelPackage/usb-phidget
|
|
|
|
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
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/usb)
|
2008-10-17 04:27:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/usb-phidget/description
|
|
|
|
Kernel support for USB Phidget devices.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,usb-phidget))
|
|
|
|
|