Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. select USB
  14. help
  15. Say Y here if you want to use the USB version of the Acecad Flair
  16. tablet. Make sure to say Y to "Mouse support"
  17. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  18. (CONFIG_INPUT_EVDEV) as well.
  19. To compile this driver as a module, choose M here: the
  20. module will be called acecad.
  21. config TABLET_USB_AIPTEK
  22. tristate "Aiptek 6000U/8000U tablet support (USB)"
  23. select USB
  24. help
  25. Say Y here if you want to use the USB version of the Aiptek 6000U
  26. or Aiptek 8000U tablet. Make sure to say Y to "Mouse support"
  27. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  28. (CONFIG_INPUT_EVDEV) as well.
  29. To compile this driver as a module, choose M here: the
  30. module will be called aiptek.
  31. config TABLET_USB_GTCO
  32. tristate "GTCO CalComp/InterWrite USB Support"
  33. depends on USB && INPUT
  34. help
  35. Say Y here if you want to use the USB version of the GTCO
  36. CalComp/InterWrite Tablet. Make sure to say Y to "Mouse support"
  37. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  38. (CONFIG_INPUT_EVDEV) as well.
  39. To compile this driver as a module, choose M here: the
  40. module will be called gtco.
  41. config TABLET_USB_KBTAB
  42. tristate "KB Gear JamStudio tablet support (USB)"
  43. select USB
  44. help
  45. Say Y here if you want to use the USB version of the KB Gear
  46. JamStudio tablet. Make sure to say Y to "Mouse support"
  47. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  48. (CONFIG_INPUT_EVDEV) as well.
  49. To compile this driver as a module, choose M here: the
  50. module will be called kbtab.
  51. config TABLET_USB_WACOM
  52. tristate "Wacom Intuos/Graphire tablet support (USB)"
  53. select USB
  54. help
  55. Say Y here if you want to use the USB version of the Wacom Intuos
  56. or Graphire tablet. Make sure to say Y to "Mouse support"
  57. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  58. (CONFIG_INPUT_EVDEV) as well.
  59. To compile this driver as a module, choose M here: the
  60. module will be called wacom.
  61. endif