Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. menuconfig STAGING_MEDIA
  2. bool "Media staging drivers"
  3. default n
  4. ---help---
  5. This option allows you to select a number of media drivers that
  6. don't have the "normal" Linux kernel quality level.
  7. Most of them don't follow properly the V4L, DVB and/or RC API's,
  8. so, they won't likely work fine with the existing applications.
  9. That also means that, once fixed, their API's will change to match
  10. the existing ones.
  11. If you wish to work on these drivers, to help improve them, or
  12. to report problems you have with them, please use the
  13. linux-media@vger.kernel.org mailing list.
  14. If in doubt, say N here.
  15. if STAGING_MEDIA
  16. # Please keep them in alphabetic order
  17. source "drivers/staging/media/bcm2048/Kconfig"
  18. source "drivers/staging/media/cxd2099/Kconfig"
  19. source "drivers/staging/media/davinci_vpfe/Kconfig"
  20. source "drivers/staging/media/mn88472/Kconfig"
  21. source "drivers/staging/media/mn88473/Kconfig"
  22. source "drivers/staging/media/omap4iss/Kconfig"
  23. # Keep LIRC at the end, as it has sub-menus
  24. source "drivers/staging/media/lirc/Kconfig"
  25. endif