diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-10-08 17:56:31 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-10-08 17:56:31 +0000 |
commit | ffc90868e475a57a2711a7ab9b121bc4aa4a80e1 (patch) | |
tree | 7ea72c86e6d3174786da49beef3a686d82f706fe /package/kernel/modules | |
parent | 5f50864a9dfeef864af2b8dd1eb06f136a5b6540 (diff) | |
download | upstream-ffc90868e475a57a2711a7ab9b121bc4aa4a80e1.tar.gz upstream-ffc90868e475a57a2711a7ab9b121bc4aa4a80e1.tar.bz2 upstream-ffc90868e475a57a2711a7ab9b121bc4aa4a80e1.zip |
add support for the dwc_otg USB controller
SVN-Revision: 18006
Diffstat (limited to 'package/kernel/modules')
-rw-r--r-- | package/kernel/modules/usb.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/kernel/modules/usb.mk b/package/kernel/modules/usb.mk index 8ce61f0f92..8ec76f0d36 100644 --- a/package/kernel/modules/usb.mk +++ b/package/kernel/modules/usb.mk @@ -149,6 +149,20 @@ endef $(eval $(call KernelPackage,usb-etrax)) +define KernelPackage/usb-octeon + $(call usbdep,@TARGET_octeon) + TITLE:=Support for the Octeon USB OTG controller + KCONFIG:=CONFIG_USB_DWC_OTG + FILES:=$(LINUX_DIR)/drivers/usb/host/dwc_otg/dwc_otg.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,50,dwc_otg) +endef + +define KernelPackage/usb-octeon/description + Kernel support for the Octeon USB host controller +endef + +$(eval $(call KernelPackage,usb-octeon)) + define KernelPackage/usb2 $(call usbdep,) |