Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #
  2. # Generic video config states
  3. #
  4. config VIDEO_ADV_DEBUG
  5. bool "Enable advanced debug functionality on V4L2 drivers"
  6. default n
  7. ---help---
  8. Say Y here to enable advanced debugging functionality on some
  9. V4L devices.
  10. In doubt, say N.
  11. config VIDEO_FIXED_MINOR_RANGES
  12. bool "Enable old-style fixed minor ranges on drivers/video devices"
  13. default n
  14. ---help---
  15. Say Y here to enable the old-style fixed-range minor assignments.
  16. Only useful if you rely on the old behavior and use mknod instead of udev.
  17. When in doubt, say N.
  18. config VIDEO_V4L2
  19. tristate
  20. depends on VIDEO_V4L2_COMMON
  21. default y
  22. config VIDEOBUF_GEN
  23. tristate
  24. config VIDEOBUF_DMA_SG
  25. tristate
  26. depends on HAS_DMA
  27. select VIDEOBUF_GEN
  28. config VIDEOBUF_VMALLOC
  29. tristate
  30. select VIDEOBUF_GEN
  31. config VIDEOBUF_DMA_CONTIG
  32. tristate
  33. depends on HAS_DMA
  34. select VIDEOBUF_GEN
  35. config VIDEOBUF_DVB
  36. tristate
  37. select VIDEOBUF_GEN
  38. config VIDEO_TUNER
  39. tristate
  40. depends on MEDIA_TUNER
  41. config V4L2_MEM2MEM_DEV
  42. tristate
  43. depends on VIDEOBUF2_CORE
  44. config VIDEOBUF2_CORE
  45. tristate
  46. config VIDEOBUF2_MEMOPS
  47. tristate
  48. config VIDEOBUF2_DMA_CONTIG
  49. tristate
  50. select VIDEOBUF2_CORE
  51. select VIDEOBUF2_MEMOPS
  52. config VIDEOBUF2_VMALLOC
  53. tristate
  54. select VIDEOBUF2_CORE
  55. select VIDEOBUF2_MEMOPS
  56. config VIDEOBUF2_DMA_SG
  57. tristate
  58. #depends on HAS_DMA
  59. select VIDEOBUF2_CORE
  60. select VIDEOBUF2_MEMOPS