Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. #
  2. # Mouse driver configuration
  3. #
  4. menuconfig INPUT_MOUSE
  5. bool "Mouse"
  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. If unsure, say Y.
  11. if INPUT_MOUSE
  12. config MOUSE_PS2
  13. tristate "PS/2 mouse"
  14. default y
  15. select SERIO
  16. select SERIO_LIBPS2
  17. select SERIO_I8042 if X86_PC
  18. select SERIO_GSCPS2 if GSC
  19. ---help---
  20. Say Y here if you have a PS/2 mouse connected to your system. This
  21. includes the standard 2 or 3-button PS/2 mouse, as well as PS/2
  22. mice with wheels and extra buttons, Microsoft, Logitech or Genius
  23. compatible.
  24. Synaptics TouchPad users might be interested in a specialized
  25. XFree86 driver at:
  26. <http://w1.894.telia.com/~u89404340/touchpad/index.html>
  27. and a new version of GPM at:
  28. <http://www.geocities.com/dt_or/gpm/gpm.html>
  29. to take advantage of the advanced features of the touchpad.
  30. If unsure, say Y.
  31. To compile this driver as a module, choose M here: the
  32. module will be called psmouse.
  33. config MOUSE_SERIAL
  34. tristate "Serial mouse"
  35. select SERIO
  36. ---help---
  37. Say Y here if you have a serial (RS-232, COM port) mouse connected
  38. to your system. This includes Sun, MouseSystems, Microsoft,
  39. Logitech and all other compatible serial mice.
  40. If unsure, say N.
  41. To compile this driver as a module, choose M here: the
  42. module will be called sermouse.
  43. config MOUSE_INPORT
  44. tristate "InPort/MS/ATIXL busmouse"
  45. depends on ISA
  46. help
  47. Say Y here if you have an InPort, Microsoft or ATI XL busmouse.
  48. They are rather rare these days.
  49. To compile this driver as a module, choose M here: the
  50. module will be called inport.
  51. config MOUSE_ATIXL
  52. bool "ATI XL variant"
  53. depends on MOUSE_INPORT
  54. help
  55. Say Y here if your mouse is of the ATI XL variety.
  56. config MOUSE_LOGIBM
  57. tristate "Logitech busmouse"
  58. depends on ISA
  59. help
  60. Say Y here if you have a Logitech busmouse.
  61. They are rather rare these days.
  62. To compile this driver as a module, choose M here: the
  63. module will be called logibm.
  64. config MOUSE_PC110PAD
  65. tristate "IBM PC110 touchpad"
  66. depends on ISA
  67. help
  68. Say Y if you have the IBM PC-110 micro-notebook and want its
  69. touchpad supported.
  70. To compile this driver as a module, choose M here: the
  71. module will be called pc110pad.
  72. config MOUSE_AMIGA
  73. tristate "Amiga mouse"
  74. depends on AMIGA
  75. help
  76. Say Y here if you have an Amiga and want its native mouse
  77. supported by the kernel.
  78. To compile this driver as a module, choose M here: the
  79. module will be called amimouse.
  80. config MOUSE_RISCPC
  81. tristate "Acorn RiscPC mouse"
  82. depends on ARCH_ACORN
  83. help
  84. Say Y here if you have the Acorn RiscPC computer and want its
  85. native mouse supported.
  86. To compile this driver as a module, choose M here: the
  87. module will be called rpcmouse.
  88. config MOUSE_VSXXXAA
  89. tristate "DEC VSXXX-AA/GA mouse and VSXXX-AB tablet"
  90. select SERIO
  91. help
  92. Say Y (or M) if you want to use a DEC VSXXX-AA (hockey
  93. puck) or a VSXXX-GA (rectangular) mouse. Theses mice are
  94. typically used on DECstations or VAXstations, but can also
  95. be used on any box capable of RS232 (with some adaptor
  96. described in the source file). This driver also works with the
  97. digitizer (VSXXX-AB) DEC produced.
  98. config MOUSE_HIL
  99. tristate "HIL pointers (mice etc)."
  100. depends on GSC || HP300
  101. select HP_SDC
  102. select HIL_MLC
  103. help
  104. Say Y here to support HIL pointers.
  105. endif