Kconfig 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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_USB_WACOM
  64. tristate "Wacom Intuos/Graphire tablet support (USB)"
  65. depends on USB_ARCH_HAS_HCD
  66. select POWER_SUPPLY
  67. select USB
  68. select NEW_LEDS
  69. select LEDS_CLASS
  70. help
  71. Say Y here if you want to use the USB version of the Wacom Intuos
  72. or Graphire tablet. Make sure to say Y to "Mouse support"
  73. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  74. (CONFIG_INPUT_EVDEV) as well.
  75. To compile this driver as a module, choose M here: the
  76. module will be called wacom.
  77. endif