Kconfig 622 B

123456789101112131415161718192021
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config USB_VIDEO_CLASS
  3. tristate "USB Video Class (UVC)"
  4. depends on VIDEO_DEV
  5. select VIDEOBUF2_VMALLOC
  6. help
  7. Support for the USB Video Class (UVC). Currently only video
  8. input devices, such as webcams, are supported.
  9. For more information see: <http://linux-uvc.berlios.de/>
  10. config USB_VIDEO_CLASS_INPUT_EVDEV
  11. bool "UVC input events device support"
  12. default y
  13. depends on USB_VIDEO_CLASS
  14. depends on USB_VIDEO_CLASS=INPUT || INPUT=y
  15. help
  16. This option makes USB Video Class devices register an input device
  17. to report button events.
  18. If you are in doubt, say Y.