Update of /cvsroot/gc-linux/linux/drivers/input
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25722/drivers/input
Modified Files:
Kconfig
Log Message:
Merge 2.6.12
Index: Kconfig
===================================================================
RCS file: /cvsroot/gc-linux/linux/drivers/input/Kconfig,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Kconfig 3 Mar 2005 21:12:50 -0000 1.4
+++ Kconfig 23 Jun 2005 20:02:18 -0000 1.5
@@ -5,7 +5,7 @@
menu "Input device support"
config INPUT
- tristate "Input devices (needed for keyboard, mouse, ...)" if EMBEDDED
+ tristate "Generic input layer (needed for keyboard, mouse, ...)" if EMBEDDED
default y
---help---
Say Y here if you have any input device (mouse, keyboard, tablet,
@@ -22,12 +22,13 @@
To compile this driver as a module, choose M here: the
module will be called input.
+if INPUT
+
comment "Userland interfaces"
config INPUT_MOUSEDEV
tristate "Mouse interface" if EMBEDDED
default y
- depends on INPUT
---help---
Say Y here if you want your mouse to be accessible as char devices
13:32+ - /dev/input/mouseX and 13:63 - /dev/input/mice as an
@@ -74,7 +75,6 @@
config INPUT_JOYDEV
tristate "Joystick interface"
- depends on INPUT
---help---
Say Y here if you want your joystick or gamepad to be
accessible as char device 13:0+ - /dev/input/jsX device.
@@ -88,7 +88,6 @@
config INPUT_TSDEV
tristate "Touchscreen interface"
- depends on INPUT
---help---
Say Y here if you have an application that only can understand the
Compaq touchscreen protocol for absolute pointer data. This is
@@ -111,7 +110,6 @@
config INPUT_EVDEV
tristate "Event interface"
- depends on INPUT
help
Say Y here if you want your input device events be accessible
under char device 13:64+ - /dev/input/eventX in a generic way.
@@ -121,7 +119,6 @@
config INPUT_EVBUG
tristate "Event debugging"
- depends on INPUT
---help---
Say Y here if you have a problem with the input subsystem and
want all events (keypresses, mouse movements), to be output to
@@ -134,7 +131,25 @@
To compile this driver as a module, choose M here: the
module will be called evbug.
-comment "Input I/O drivers"
+comment "Input Device Drivers"
+
+source "drivers/input/keyboard/Kconfig"
+
+source "drivers/input/mouse/Kconfig"
+
+source "drivers/input/joystick/Kconfig"
+
+source "drivers/input/touchscreen/Kconfig"
+
+source "drivers/input/misc/Kconfig"
+
+endif
+
+menu "Hardware I/O ports"
+
+source "drivers/input/serio/Kconfig"
+
+source "drivers/input/gameport/Kconfig"
config GAMECUBE_SI
tristate "Nintendo GameCube Serial Interface"
@@ -147,21 +162,7 @@
module is recommended, this way you can unload/load the driver
to re-detect.
-source "drivers/input/gameport/Kconfig"
-
-source "drivers/input/serio/Kconfig"
-
-comment "Input Device Drivers"
-
-source "drivers/input/keyboard/Kconfig"
-
-source "drivers/input/mouse/Kconfig"
-
-source "drivers/input/joystick/Kconfig"
-
-source "drivers/input/touchscreen/Kconfig"
-
-source "drivers/input/misc/Kconfig"
+endmenu
endmenu
|