diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-04-29 16:04:19 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-04-29 16:04:19 +0000 |
commit | 0a9999bc197d31cb21bb6c36f3b910e1f79824aa (patch) | |
tree | 618e91aab27c3853f3b93026eae7f24811c3d315 /package/kernel | |
parent | f8d36d96b857c0e634ea5e49133e550b65b0dc12 (diff) | |
download | upstream-0a9999bc197d31cb21bb6c36f3b910e1f79824aa.tar.gz upstream-0a9999bc197d31cb21bb6c36f3b910e1f79824aa.tar.bz2 upstream-0a9999bc197d31cb21bb6c36f3b910e1f79824aa.zip |
package/kernel: renable kmod-input on 2.4 (closes: #7063)
SVN-Revision: 21262
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/modules/other.mk | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index 403af57a73..261a65e363 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)) |