diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-07-25 14:01:49 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-07-25 14:01:49 +0000 |
commit | 98e84715a2dad1a993cd3551cc4b0816c5e35f60 (patch) | |
tree | 7daed9f2b17f24375d5704366b244af5be89150d /target/linux/cobalt | |
parent | e0f70e20ca41701e065ea015c5e1c878aa1f7768 (diff) |
[cobalt] package buttons driver separately
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32841 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/cobalt')
-rw-r--r-- | target/linux/cobalt/config-3.3 | 4 | ||||
-rw-r--r-- | target/linux/cobalt/modules.mk | 15 |
2 files changed, 15 insertions, 4 deletions
diff --git a/target/linux/cobalt/config-3.3 b/target/linux/cobalt/config-3.3 index ccc583951..315ef1586 100644 --- a/target/linux/cobalt/config-3.3 +++ b/target/linux/cobalt/config-3.3 @@ -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 diff --git a/target/linux/cobalt/modules.mk b/target/linux/cobalt/modules.mk index fcba75731..79cef87ca 100644 --- a/target/linux/cobalt/modules.mk +++ b/target/linux/cobalt/modules.mk @@ -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)) |