brintos

brintos / linux-shallow public Read only

0
0
Text · 1.7 KiB · 554c2e4 Raw
62 lines · plain
1# SPDX-License-Identifier: GPL-2.02menuconfig STAGING_MEDIA3	bool "Media staging drivers"4	default n5	help6	  This option allows you to select a number of media drivers that7	  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 match11	  the existing ones.12 13	  If you wish to work on these drivers, to help improve them, or14	  to report problems you have with them, please use the15	  linux-media@vger.kernel.org mailing list.16 17	  If in doubt, say N here.18 19 20if STAGING_MEDIA && MEDIA_SUPPORT21 22# Please keep them in alphabetic order23source "drivers/staging/media/atomisp/Kconfig"24 25source "drivers/staging/media/av7110/Kconfig"26 27source "drivers/staging/media/imx/Kconfig"28 29source "drivers/staging/media/ipu3/Kconfig"30 31source "drivers/staging/media/max96712/Kconfig"32 33source "drivers/staging/media/meson/vdec/Kconfig"34 35source "drivers/staging/media/omap4iss/Kconfig"36 37source "drivers/staging/media/rkvdec/Kconfig"38 39source "drivers/staging/media/starfive/Kconfig"40 41source "drivers/staging/media/sunxi/Kconfig"42 43source "drivers/staging/media/tegra-video/Kconfig"44 45menuconfig STAGING_MEDIA_DEPRECATED46	bool "Media staging drivers (DEPRECATED)"47	default n48	help49	  This option enables deprecated media drivers that are50	  scheduled for future removal from the kernel.51 52	  If you wish to work on these drivers to prevent their removal,53	  then contact the linux-media@vger.kernel.org mailing list.54 55	  If in doubt, say N here.56 57if STAGING_MEDIA_DEPRECATED58source "drivers/staging/media/deprecated/atmel/Kconfig"59endif60 61endif62