Add yealink usb phone kernel packages

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7359 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Florian Fainelli
2007-05-27 18:51:50 +00:00
parent 85ed6a42c6
commit d5e7b4e245
3 changed files with 36 additions and 1 deletions

View File

@@ -358,3 +358,24 @@ define KernelPackage/hwmon-pc87360
AUTOLOAD:=$(call AutoLoad,50,pc87360)
endef
$(eval $(call KernelPackage,hwmon-pc87360))
define KernelPackage/input-core
TITLE:=Input device core
DESCRIPTION:=Kernel modules for support of input device
SUBMENU:=$(EMENU)
KCONFIG:=$(CONFIG_INPUT)
FILES:=$(LINUX_DIR)/drivers/input/input-core.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,50,input-core)
endef
$(eval $(call KernelPackage,input-core))
define KernelPackage/input-evdev
TITLE:=Input even device
DESCRIPTION:=Kernel modules for support of input device events
SUBMENU:=$(EMENU)
KCONFIG:=$(CONFIG_INPUT_EVDEV)
FILES:=$(LINUX_DIR)/drivers/input/evdev.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,60,evdev)
endef
$(eval $(call KernelPackage,input-evdev))