diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-04-19 15:27:25 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-04-19 15:27:25 +0000 |
commit | 964d68dcecaba9dd48e4d33f5b14c5366b21d4cd (patch) | |
tree | 8e148584bfc6c2ad02845f8f9c44256771da3a60 /package/kernel | |
parent | 98e70367c945adeee38b2deaf719fd7d628e3cd8 (diff) | |
download | mtk-20170518-964d68dcecaba9dd48e4d33f5b14c5366b21d4cd.zip mtk-20170518-964d68dcecaba9dd48e4d33f5b14c5366b21d4cd.tar.gz mtk-20170518-964d68dcecaba9dd48e4d33f5b14c5366b21d4cd.tar.bz2 |
Add support for CM109 USB VoIP phone
this patch adds support for USB VoIP-phones using the CM109 chipset.
the cm109.ko module was added to linux kernel 2.6.28
it was tested with SVN revision 15247 on a Asus WL-500G Premium.
Signed-off-by: Alfred E. Heggestad <aeh@db.org>
SVN-Revision: 15258
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/modules/usb.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/kernel/modules/usb.mk b/package/kernel/modules/usb.mk index 813e3a9..8225086 100644 --- a/package/kernel/modules/usb.mk +++ b/package/kernel/modules/usb.mk @@ -665,6 +665,22 @@ endef $(eval $(call KernelPackage,usb-yealink)) + +define KernelPackage/usb-cm109 + $(call usbdep,@LINUX_2_6 +kmod-input-core +kmod-input-evdev) + 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) +endef + +define KernelPackage/usb-cm109/description + Kernel support for CM109 VOIP phone +endef + +$(eval $(call KernelPackage,usb-cm109)) + + define KernelPackage/usb-test $(call usbdep,@LINUX_2_6 @DEVEL) TITLE:=USB Testing Driver |