summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorhcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-20 12:31:00 +0000
committerhcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-20 12:31:00 +0000
commitf451889a0f7a65ae7c8f9535312a66f0d93f5b48 (patch)
tree5f67dbaf62af530f477342d9ff744f3741d07e38 /package
parent4462a9c1f07bfa23d5fb522ca67fd75c4d167f3b (diff)
[kernel modules] add joystick device support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15295 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/kernel/modules/other.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk
index 38df6429e..bed8eaaa5 100644
--- a/package/kernel/modules/other.mk
+++ b/package/kernel/modules/other.mk
@@ -657,6 +657,21 @@ endef
$(eval $(call KernelPackage,input-gpio-buttons))
+define KernelPackage/input-joydev
+ SUBMENU:=$(OTHER_MENU)
+ TITLE:=Joystick device support
+ DEPENDS:=+kmod-input-core
+ KCONFIG:=CONFIG_INPUT_JOYDEV
+ FILES:=$(LINUX_DIR)/drivers/input/joydev.$(LINUX_KMOD_SUFFIX)
+ AUTOLOAD:=$(call AutoLoad,62,joydev)
+endef
+
+define KernelPackage/input-joydev/description
+ Kernel module for joystick support
+endef
+
+$(eval $(call KernelPackage,input-joydev))
+
define KernelPackage/mmc-spi
SUBMENU:=$(OTHER_MENU)