Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. menu "USB HID support"
  2. depends on USB
  3. config USB_HID
  4. tristate "USB HID transport layer"
  5. default y
  6. depends on USB && INPUT
  7. select HID
  8. ---help---
  9. Say Y here if you want to connect USB keyboards,
  10. mice, joysticks, graphic tablets, or any other HID based devices
  11. to your computer via USB, as well as Uninterruptible Power Supply
  12. (UPS) and monitor control devices.
  13. You can't use this driver and the HIDBP (Boot Protocol) keyboard
  14. and mouse drivers at the same time. More information is available:
  15. <file:Documentation/input/input.txt>.
  16. If unsure, say Y.
  17. To compile this driver as a module, choose M here: the
  18. module will be called usbhid.
  19. comment "Input core support is needed for USB HID input layer or HIDBP support"
  20. depends on USB_HID && INPUT=n
  21. config HID_PID
  22. bool "PID device support"
  23. help
  24. Say Y here if you have a PID-compliant device and wish to enable force
  25. feedback for it. Microsoft Sidewinder Force Feedback 2 is one of such
  26. devices.
  27. config USB_HIDDEV
  28. bool "/dev/hiddev raw HID device support"
  29. depends on USB_HID
  30. help
  31. Say Y here if you want to support HID devices (from the USB
  32. specification standpoint) that aren't strictly user interface
  33. devices, like monitor controls and Uninterruptable Power Supplies.
  34. This module supports these devices separately using a separate
  35. event interface on /dev/usb/hiddevX (char 180:96 to 180:111).
  36. If unsure, say Y.
  37. menu "USB HID Boot Protocol drivers"
  38. depends on USB!=n && USB_HID!=y && EXPERT
  39. config USB_KBD
  40. tristate "USB HIDBP Keyboard (simple Boot) support"
  41. depends on USB && INPUT
  42. ---help---
  43. Say Y here only if you are absolutely sure that you don't want
  44. to use the generic HID driver for your USB keyboard and prefer
  45. to use the keyboard in its limited Boot Protocol mode instead.
  46. This is almost certainly not what you want. This is mostly
  47. useful for embedded applications or simple keyboards.
  48. To compile this driver as a module, choose M here: the
  49. module will be called usbkbd.
  50. If even remotely unsure, say N.
  51. config USB_MOUSE
  52. tristate "USB HIDBP Mouse (simple Boot) support"
  53. depends on USB && INPUT
  54. ---help---
  55. Say Y here only if you are absolutely sure that you don't want
  56. to use the generic HID driver for your USB mouse and prefer
  57. to use the mouse in its limited Boot Protocol mode instead.
  58. This is almost certainly not what you want. This is mostly
  59. useful for embedded applications or simple mice.
  60. To compile this driver as a module, choose M here: the
  61. module will be called usbmouse.
  62. If even remotely unsure, say N.
  63. endmenu
  64. endmenu