Kconfig (4272ebfbefd0db40073f3ee5990bceaf2894f08b) | Kconfig (03dd5e1ba55d43c3a12b8514f9889049037f17f7) |
---|---|
1# 2# Mouse driver configuration 3# 4menuconfig INPUT_MOUSE 5 bool "Mice" 6 default y 7 help 8 Say Y here, and a list of supported mice will be displayed. 9 This option doesn't affect the kernel. 10 11 If unsure, say Y. 12 13if INPUT_MOUSE 14 15config MOUSE_PS2 16 tristate "PS/2 mouse" 17 default y 18 select SERIO 19 select SERIO_LIBPS2 | 1# 2# Mouse driver configuration 3# 4menuconfig INPUT_MOUSE 5 bool "Mice" 6 default y 7 help 8 Say Y here, and a list of supported mice will be displayed. 9 This option doesn't affect the kernel. 10 11 If unsure, say Y. 12 13if INPUT_MOUSE 14 15config MOUSE_PS2 16 tristate "PS/2 mouse" 17 default y 18 select SERIO 19 select SERIO_LIBPS2 |
20 select SERIO_I8042 if X86 | 20 select SERIO_I8042 if X86_PC |
21 select SERIO_GSCPS2 if GSC 22 help 23 Say Y here if you have a PS/2 mouse connected to your system. This 24 includes the standard 2 or 3-button PS/2 mouse, as well as PS/2 25 mice with wheels and extra buttons, Microsoft, Logitech or Genius 26 compatible. 27 28 Synaptics, ALPS or Elantech TouchPad users might be interested --- 258 unchanged lines hidden (view full) --- 287 module will be called gpio_mouse. 288 289config MOUSE_PXA930_TRKBALL 290 tristate "PXA930 Trackball mouse" 291 depends on CPU_PXA930 || CPU_PXA935 292 help 293 Say Y here to support PXA930 Trackball mouse. 294 | 21 select SERIO_GSCPS2 if GSC 22 help 23 Say Y here if you have a PS/2 mouse connected to your system. This 24 includes the standard 2 or 3-button PS/2 mouse, as well as PS/2 25 mice with wheels and extra buttons, Microsoft, Logitech or Genius 26 compatible. 27 28 Synaptics, ALPS or Elantech TouchPad users might be interested --- 258 unchanged lines hidden (view full) --- 287 module will be called gpio_mouse. 288 289config MOUSE_PXA930_TRKBALL 290 tristate "PXA930 Trackball mouse" 291 depends on CPU_PXA930 || CPU_PXA935 292 help 293 Say Y here to support PXA930 Trackball mouse. 294 |
295config MOUSE_MAPLE 296 tristate "Maple mouse (for the Dreamcast)" 297 depends on MAPLE 298 help 299 This driver supports the Maple mouse on the SEGA Dreamcast. 300 301 Most Dreamcast users, who have a mouse, will say Y here. 302 303 To compile this driver as a module choose M here: the module will be 304 called maplemouse. 305 |
|
295endif | 306endif |