1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-30 22:09:48 +03:00

[cobalt] package buttons driver separately

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32841 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2012-07-25 14:01:49 +00:00
parent e0f70e20ca
commit 98e84715a2
2 changed files with 15 additions and 4 deletions

View File

@ -85,10 +85,6 @@ CONFIG_HZ=250
CONFIG_HZ_250=y
CONFIG_I8253=y
CONFIG_I8259=y
CONFIG_INPUT=y
CONFIG_INPUT_COBALT_BTNS=y
CONFIG_INPUT_EVDEV=y
CONFIG_INPUT_POLLDEV=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_MULTICAST is not set
CONFIG_IRQ_CPU=y

View File

@ -19,3 +19,18 @@ define KernelPackage/fb-cobalt/descriptione
endef
$(eval $(call KernelPackage,fb-cobalt))
define KernelPackage/cobalt-btns
SUBMENU:=$(OTHER_MENU)
TITLE:=Cobalt buttons support
DEPENDS:=@TARGET_cobalt +kmod-input-evdev +kmod-input-polldev
KCONFIG:=CONFIG_INPUT_COBALT_BTNS
FILES:=$(LINUX_DIR)/drivers/input/misc/cobalt_btns.ko
AUTOLOAD:=$(call AutoLoad,62,cobalt_btns)
endef
define KernelPackage/cobalt-btns/description
Kernel module for the Cobalt Microservers buttons
endef
$(eval $(call KernelPackage,cobalt-btns))