diff options
author | Zoltan Herpai <wigyori@uid0.hu> | 2013-07-17 22:49:16 +0000 |
---|---|---|
committer | Zoltan Herpai <wigyori@uid0.hu> | 2013-07-17 22:49:16 +0000 |
commit | 8aa106cf43fff5c05c14cff09071e95fc0a22996 (patch) | |
tree | 44f499e9a5d8cc8369e76c3198487728c22774d2 /package | |
parent | 67f1d364b8fde1247f02eec0a2da108848922665 (diff) | |
download | upstream-8aa106cf43fff5c05c14cff09071e95fc0a22996.tar.gz upstream-8aa106cf43fff5c05c14cff09071e95fc0a22996.tar.bz2 upstream-8aa106cf43fff5c05c14cff09071e95fc0a22996.zip |
imx23: ChipIdea changes
- move ci_hdrc into generic modules
- add separate package for imx-specific modules
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 37384
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/linux/modules/usb.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk index 0fa99ccb79..10c82803d7 100644 --- a/package/kernel/linux/modules/usb.mk +++ b/package/kernel/linux/modules/usb.mk @@ -1023,3 +1023,22 @@ $(call KernelPackage/usbip/Default) $(call AddDepends/usb) endef $(eval $(call KernelPackage,usbip-server)) + +define KernelPackage/usb-chipidea + TITLE:=Support for ChipIdea controllers + KCONFIG:= \ + CONFIG_USB_CHIPIDEA \ + CONFIG_USB_CHIPIDEA_HOST=y \ + CONFIG_USB_CHIPIDEA_DEBUG=y + FILES:=\ + $(LINUX_DIR)/drivers/usb/chipidea/ci_hdrc.ko + AUTOLOAD:=$(call AutoLoad,51,ci_hdrc,1) + $(call AddDepends/usb) +endef + +define KernelPackage/usb-chipidea/description + Kernel support for USB ChipIdea controllers +endef + +$(eval $(call KernelPackage,usb-chipidea,1)) + |