diff options
author | John Crispin <john@openwrt.org> | 2014-01-19 17:27:40 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-01-19 17:27:40 +0000 |
commit | 33dc3f2488c5d8f81025010ef5d50c3112a29188 (patch) | |
tree | c6d2087ec7c295720c67013e7321af88cdcf4cfd | |
parent | ebaa3817a71c1641a55cdfb3a378c97d942811bc (diff) | |
download | upstream-33dc3f2488c5d8f81025010ef5d50c3112a29188.tar.gz upstream-33dc3f2488c5d8f81025010ef5d50c3112a29188.tar.bz2 upstream-33dc3f2488c5d8f81025010ef5d50c3112a29188.zip |
kernel: add usb3 module definitions
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39331
-rw-r--r-- | package/kernel/linux/modules/usb.mk | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk index 5d26190eb3..825b29e3cb 100644 --- a/package/kernel/linux/modules/usb.mk +++ b/package/kernel/linux/modules/usb.mk @@ -1132,3 +1132,21 @@ define KernelPackage/usbmon/description endef $(eval $(call KernelPackage,usbmon)) + + +define KernelPackage/usb3 + TITLE:=Support for USB3 controllers + KCONFIG:= \ + CONFIG_USB_XHCI_HCD \ + CONFIG_USB_XHCI_HCD_DEBUGGING=n + FILES:= \ + $(LINUX_DIR)/drivers/usb/host/xhci-hcd.ko + AUTOLOAD:=$(call AutoLoad,54,xhci-hcd,1) + $(call AddDepends/usb) +endef + +define KernelPackage/usb3/description + Kernel support for USB3 (XHCI) controllers +endef + +$(eval $(call KernelPackage,usb3)) |