1# SPDX-License-Identifier: GPL-2.0 2menuconfig STAGING_MEDIA 3 bool "Media staging drivers" 4 default n 5 help 6 This option allows you to select a number of media drivers that 7 don't have the "normal" Linux kernel quality level. 8 Most of them don't follow properly the V4L, DVB and/or RC API's, 9 so, they won't likely work fine with the existing applications. 10 That also means that, once fixed, their API's will change to match 11 the existing ones. 12 13 If you wish to work on these drivers, to help improve them, or 14 to report problems you have with them, please use the 15 linux-media@vger.kernel.org mailing list. 16 17 If in doubt, say N here. 18 19 20if STAGING_MEDIA && MEDIA_SUPPORT 21 22# Please keep them in alphabetic order 23source "drivers/staging/media/atomisp/Kconfig" 24 25source "drivers/staging/media/imx/Kconfig" 26 27source "drivers/staging/media/ipu3/Kconfig" 28 29source "drivers/staging/media/max96712/Kconfig" 30 31source "drivers/staging/media/meson/vdec/Kconfig" 32 33source "drivers/staging/media/omap4iss/Kconfig" 34 35source "drivers/staging/media/rkvdec/Kconfig" 36 37source "drivers/staging/media/sunxi/Kconfig" 38 39source "drivers/staging/media/tegra-video/Kconfig" 40 41menuconfig STAGING_MEDIA_DEPRECATED 42 bool "Media staging drivers (DEPRECATED)" 43 default n 44 help 45 This option enables deprecated media drivers that are 46 scheduled for future removal from the kernel. 47 48 If you wish to work on these drivers to prevent their removal, 49 then contact the linux-media@vger.kernel.org mailing list. 50 51 If in doubt, say N here. 52 53if STAGING_MEDIA_DEPRECATED 54source "drivers/staging/media/deprecated/cpia2/Kconfig" 55source "drivers/staging/media/deprecated/fsl-viu/Kconfig" 56source "drivers/staging/media/deprecated/meye/Kconfig" 57source "drivers/staging/media/deprecated/saa7146/Kconfig" 58source "drivers/staging/media/deprecated/stkwebcam/Kconfig" 59source "drivers/staging/media/deprecated/tm6000/Kconfig" 60source "drivers/staging/media/deprecated/vpfe_capture/Kconfig" 61source "drivers/staging/media/deprecated/zr364xx/Kconfig" 62endif 63 64endif 65