diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-12-29 18:08:24 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-12-29 18:08:24 +0000 |
commit | a49796b4ce1380a5376056567950c44b416933a4 (patch) | |
tree | 4f5dc115ccefde9e09a3e3227710fddc5fb2ecd8 /package/kernel/modules | |
parent | a68e0380aa00119295f9de17f4e77e8ff3214cf7 (diff) | |
download | upstream-a49796b4ce1380a5376056567950c44b416933a4.tar.gz upstream-a49796b4ce1380a5376056567950c44b416933a4.tar.bz2 upstream-a49796b4ce1380a5376056567950c44b416933a4.zip |
package/kernel: enable CONFIG_INPUT_KEYBOARD for gpio-keys
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24853 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/modules')
-rw-r--r-- | package/kernel/modules/other.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index 553466d7bf..cd3e257a89 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -335,7 +335,9 @@ define KernelPackage/input-gpio-keys SUBMENU:=$(OTHER_MENU) TITLE:=GPIO key support DEPENDS:= @GPIO_SUPPORT - KCONFIG:=CONFIG_KEYBOARD_GPIO + KCONFIG:= \ + CONFIG_KEYBOARD_GPIO \ + CONFIG_INPUT_KEYBOARD=y FILES:=$(LINUX_DIR)/drivers/input/keyboard/gpio_keys.ko AUTOLOAD:=$(call AutoLoad,60,gpio_keys) $(call AddDepends/input) |