Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Tablet driver configuration
  4. #
  5. menuconfig INPUT_TABLET
  6. bool "Tablets"
  7. help
  8. Say Y here, and a list of supported tablets will be displayed.
  9. This option doesn't affect the kernel.
  10. If unsure, say Y.
  11. if INPUT_TABLET
  12. config TABLET_USB_ACECAD
  13. tristate "Acecad Flair tablet support (USB)"
  14. depends on USB_ARCH_HAS_HCD
  15. select USB
  16. help
  17. Say Y here if you want to use the USB version of the Acecad Flair
  18. tablet. Make sure to say Y to "Mouse support"
  19. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  20. (CONFIG_INPUT_EVDEV) as well.
  21. To compile this driver as a module, choose M here: the
  22. module will be called acecad.
  23. config TABLET_USB_AIPTEK
  24. tristate "Aiptek 6000U/8000U and Genius G_PEN tablet support (USB)"
  25. depends on USB_ARCH_HAS_HCD
  26. select USB
  27. help
  28. Say Y here if you want to use the USB version of the Aiptek 6000U,
  29. Aiptek 8000U or Genius G-PEN 560 tablet. Make sure to say Y to
  30. "Mouse support" (CONFIG_INPUT_MOUSEDEV) and/or "Event interface
  31. support" (CONFIG_INPUT_EVDEV) as well.
  32. To compile this driver as a module, choose M here: the
  33. module will be called aiptek.
  34. config TABLET_USB_HANWANG
  35. tristate "Hanwang Art Master III tablet support (USB)"
  36. depends on USB_ARCH_HAS_HCD
  37. select USB
  38. help
  39. Say Y here if you want to use the USB version of the Hanwang Art
  40. Master III tablet.
  41. To compile this driver as a module, choose M here: the
  42. module will be called hanwang.
  43. config TABLET_USB_KBTAB
  44. tristate "KB Gear JamStudio 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 KB Gear
  49. JamStudio tablet. Make sure to say Y to "Mouse support"
  50. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  51. (CONFIG_INPUT_EVDEV) as well.
  52. To compile this driver as a module, choose M here: the
  53. module will be called kbtab.
  54. config TABLET_USB_PEGASUS
  55. tristate "Pegasus Mobile Notetaker Pen input tablet support"
  56. depends on USB_ARCH_HAS_HCD
  57. select USB
  58. help
  59. Say Y here if you want to use the Pegasus Mobile Notetaker,
  60. also known as:
  61. Genie e-note The Notetaker,
  62. Staedtler Digital ballpoint pen 990 01,
  63. IRISnotes Express or
  64. NEWLink Digital Note Taker.
  65. To compile this driver as a module, choose M here: the
  66. module will be called pegasus_notetaker.
  67. config TABLET_SERIAL_WACOM4
  68. tristate "Wacom protocol 4 serial tablet support"
  69. select SERIO
  70. help
  71. Say Y here if you want to use Wacom protocol 4 serial tablets.
  72. E.g. serial versions of the Cintiq, Graphire or Penpartner.
  73. To compile this driver as a module, choose M here: the
  74. module will be called wacom_serial4.
  75. endif