summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-29 16:04:19 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-29 16:04:19 +0000
commite98cf6be1ba50ce6f840c8e2361c842d63452f50 (patch)
tree2254906c7c505b1df38dd6ce5a451be3679ee2fc /package
parent4c54d2b8ba6a195ac43834772a0a409cc9eab6a3 (diff)
package/kernel: renable kmod-input on 2.4 (closes: #7063)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21262 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/kernel/modules/other.mk13
1 files changed, 10 insertions, 3 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk
index 403af57a7..261a65e36 100644
--- a/package/kernel/modules/other.mk
+++ b/package/kernel/modules/other.mk
@@ -270,10 +270,7 @@ $(eval $(call KernelPackage,hid))
define KernelPackage/input-core
SUBMENU:=$(OTHER_MENU)
TITLE:=Input device core
- DEPENDS:=@LINUX_2_6
KCONFIG:=CONFIG_INPUT
- FILES:=$(LINUX_DIR)/drivers/input/input-core.$(LINUX_KMOD_SUFFIX)
- AUTOLOAD:=$(call AutoLoad,19,input-core)
$(call SetDepends/input)
endef
@@ -281,6 +278,16 @@ define KernelPackage/input-core/description
Kernel modules for support of input device
endef
+define KernelPackage/input-core/2.4
+ FILES:=$(LINUX_DIR)/drivers/input/input.$(LINUX_KMOD_SUFFIX)
+ AUTOLOAD:=$(call AutoLoad,19,input)
+endef
+
+define KernelPackage/input-core/2.6
+ FILES:=$(LINUX_DIR)/drivers/input/input-core.$(LINUX_KMOD_SUFFIX)
+ AUTOLOAD:=$(call AutoLoad,19,input-core)
+endef
+
$(eval $(call KernelPackage,input-core))