Kconfig 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #
  2. # Tablet driver configuration
  3. #
  4. menuconfig INPUT_TABLET
  5. bool "Tablets"
  6. help
  7. Say Y here, and a list of supported tablets will be displayed.
  8. This option doesn't affect the kernel.
  9. If unsure, say Y.
  10. if INPUT_TABLET
  11. config TABLET_USB_ACECAD
  12. tristate "Acecad Flair tablet support (USB)"
  13. depends on USB_ARCH_HAS_HCD
  14. select USB
  15. help
  16. Say Y here if you want to use the USB version of the Acecad Flair
  17. tablet. Make sure to say Y to "Mouse support"
  18. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  19. (CONFIG_INPUT_EVDEV) as well.
  20. To compile this driver as a module, choose M here: the
  21. module will be called acecad.
  22. config TABLET_USB_AIPTEK
  23. tristate "Aiptek 6000U/8000U and Genius G_PEN tablet support (USB)"
  24. depends on USB_ARCH_HAS_HCD
  25. select USB
  26. help
  27. Say Y here if you want to use the USB version of the Aiptek 6000U,
  28. Aiptek 8000U or Genius G-PEN 560 tablet. Make sure to say Y to
  29. "Mouse support" (CONFIG_INPUT_MOUSEDEV) and/or "Event interface
  30. support" (CONFIG_INPUT_EVDEV) as well.
  31. To compile this driver as a module, choose M here: the
  32. module will be called aiptek.
  33. config TABLET_USB_GTCO
  34. tristate "GTCO CalComp/InterWrite USB Support"
  35. depends on USB && INPUT
  36. help
  37. Say Y here if you want to use the USB version of the GTCO
  38. CalComp/InterWrite Tablet. Make sure to say Y to "Mouse support"
  39. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  40. (CONFIG_INPUT_EVDEV) as well.
  41. To compile this driver as a module, choose M here: the
  42. module will be called gtco.
  43. config TABLET_USB_HANWANG
  44. tristate "Hanwang Art Master III tablet support (USB)"
  45. depends on USB_ARCH_HAS_HCD
  46. select USB
  47. help
  48. Say Y here if you want to use the USB version of the Hanwang Art
  49. Master III tablet.
  50. To compile this driver as a module, choose M here: the
  51. module will be called hanwang.
  52. config TABLET_USB_KBTAB
  53. tristate "KB Gear JamStudio tablet support (USB)"
  54. depends on USB_ARCH_HAS_HCD
  55. select USB
  56. help
  57. Say Y here if you want to use the USB version of the KB Gear
  58. JamStudio tablet. Make sure to say Y to "Mouse support"
  59. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  60. (CONFIG_INPUT_EVDEV) as well.
  61. To compile this driver as a module, choose M here: the
  62. module will be called kbtab.
  63. config TABLET_SERIAL_WACOM4
  64. tristate "Wacom protocol 4 serial tablet support"
  65. select SERIO
  66. help
  67. Say Y here if you want to use Wacom protocol 4 serial tablets.
  68. E.g. serial versions of the Cintiq, Graphire or Penpartner.
  69. To compile this driver as a module, choose M here: the
  70. module will be called wacom_serial4.
  71. endif