12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #
- # Generic video config states
- #
- config VIDEO_ADV_DEBUG
- bool "Enable advanced debug functionality on V4L2 drivers"
- default n
- ---help---
- Say Y here to enable advanced debugging functionality on some
- V4L devices.
- In doubt, say N.
- config VIDEO_FIXED_MINOR_RANGES
- bool "Enable old-style fixed minor ranges on drivers/video devices"
- default n
- ---help---
- Say Y here to enable the old-style fixed-range minor assignments.
- Only useful if you rely on the old behavior and use mknod instead of udev.
- When in doubt, say N.
- config VIDEO_V4L2
- tristate
- depends on VIDEO_V4L2_COMMON
- default y
- config VIDEOBUF_GEN
- tristate
- config VIDEOBUF_DMA_SG
- tristate
- depends on HAS_DMA
- select VIDEOBUF_GEN
- config VIDEOBUF_VMALLOC
- tristate
- select VIDEOBUF_GEN
- config VIDEOBUF_DMA_CONTIG
- tristate
- depends on HAS_DMA
- select VIDEOBUF_GEN
- config VIDEOBUF_DVB
- tristate
- select VIDEOBUF_GEN
- config VIDEO_TUNER
- tristate
- depends on MEDIA_TUNER
- config V4L2_MEM2MEM_DEV
- tristate
- depends on VIDEOBUF2_CORE
- config VIDEOBUF2_CORE
- tristate
- config VIDEOBUF2_MEMOPS
- tristate
- config VIDEOBUF2_DMA_CONTIG
- tristate
- select VIDEOBUF2_CORE
- select VIDEOBUF2_MEMOPS
- config VIDEOBUF2_VMALLOC
- tristate
- select VIDEOBUF2_CORE
- select VIDEOBUF2_MEMOPS
- config VIDEOBUF2_DMA_SG
- tristate
- #depends on HAS_DMA
- select VIDEOBUF2_CORE
- select VIDEOBUF2_MEMOPS
|