Browse Source

added event input kernel module

Added support for event input kernel module

Signed-off-by: Joerg Seitter <oss@seitter.net>
Joerg Seitter 15 years ago
parent
commit
ec4c5a3cb3
2 changed files with 10 additions and 0 deletions
  1. 4 0
      mk/modules.mk
  2. 6 0
      target/linux/config/Config.in.input

+ 4 - 0
mk/modules.mk

@@ -979,6 +979,10 @@ $(eval $(call KMOD_template,INPUT_MOUSEDEV,input-mousedev,\
 	$(MODULES_DIR)/kernel/drivers/input/mousedev \
 ,45))
 
+$(eval $(call KMOD_template,INPUT_EVDEV,input-evdev,\
+	$(MODULES_DIR)/kernel/drivers/input/evdev \
+,45))
+
 #
 # USB
 #

+ 6 - 0
target/linux/config/Config.in.input

@@ -38,4 +38,10 @@ config ADK_KPACKAGE_KMOD_INPUT_MOUSEDEV
 	tristate
 	default n
 
+config ADK_KPACKAGE_KMOD_INPUT_EVDEV
+	prompt "kmod-input-evdev................. Event support"
+	select ADK_KERNEL_INPUT
+	tristate
+	default n
+
 endmenu