Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. menuconfig MEDIA_PARPORT_SUPPORT
  2. bool "ISA and parallel port devices"
  3. depends on (ISA || PARPORT) && MEDIA_CAMERA_SUPPORT
  4. help
  5. Enables drivers for ISA and parallel port bus. If you
  6. need media drivers using those legacy buses, say Y.
  7. if MEDIA_PARPORT_SUPPORT
  8. config VIDEO_BWQCAM
  9. tristate "Quickcam BW Video For Linux"
  10. depends on PARPORT && VIDEO_V4L2
  11. select VIDEOBUF2_VMALLOC
  12. help
  13. Say Y have if you the black and white version of the QuickCam
  14. camera. See the next option for the color version.
  15. To compile this driver as a module, choose M here: the
  16. module will be called bw-qcam.
  17. config VIDEO_CQCAM
  18. tristate "QuickCam Colour Video For Linux"
  19. depends on PARPORT && VIDEO_V4L2
  20. help
  21. This is the video4linux driver for the colour version of the
  22. Connectix QuickCam. If you have one of these cameras, say Y here,
  23. otherwise say N. This driver does not work with the original
  24. monochrome QuickCam, QuickCam VC or QuickClip. It is also available
  25. as a module (c-qcam).
  26. Read <file:Documentation/video4linux/CQcam.txt> for more information.
  27. config VIDEO_PMS
  28. tristate "Mediavision Pro Movie Studio Video For Linux"
  29. depends on ISA && VIDEO_V4L2
  30. help
  31. Say Y if you have the ISA Mediavision Pro Movie Studio
  32. capture card.
  33. To compile this driver as a module, choose M here: the
  34. module will be called pms.
  35. config VIDEO_W9966
  36. tristate "W9966CF Webcam (FlyCam Supra and others) Video For Linux"
  37. depends on PARPORT_1284 && PARPORT && VIDEO_V4L2
  38. help
  39. Video4linux driver for Winbond's w9966 based Webcams.
  40. Currently tested with the LifeView FlyCam Supra.
  41. If you have one of these cameras, say Y here
  42. otherwise say N.
  43. This driver is also available as a module (w9966).
  44. Check out <file:Documentation/video4linux/w9966.txt> for more
  45. information.
  46. endif