Config.in 979 B

123456789101112131415161718192021222324252627282930
  1. config BR2_PACKAGE_V4L2LOOPBACK
  2. bool "v4l2loopback"
  3. depends on BR2_LINUX_KERNEL
  4. help
  5. This module allows you to create "virtual video devices".
  6. Normal (v4l2) applications will read these devices as if
  7. they were ordinary video devices, but the video will not be
  8. read from e.g. a capture card but instead it is generated by
  9. another application.
  10. https://github.com/umlaeute/v4l2loopback
  11. if BR2_PACKAGE_V4L2LOOPBACK
  12. config BR2_PACKAGE_V4L2LOOPBACK_UTILS
  13. bool "utils"
  14. depends on BR2_USE_MMU # bash
  15. select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash
  16. select BR2_PACKAGE_BASH # runtime dependency
  17. select BR2_PACKAGE_SUDO # runtime dependency
  18. help
  19. Install applications to interact with v4l2-loopback devices
  20. ("virtual video devices"). Currently there is only a single
  21. command line utility: v4l2loopback-ctl: tool to set
  22. framerate, format and timeout image.
  23. endif
  24. comment "v4l2loopback needs a Linux kernel to be built"
  25. depends on !BR2_LINUX_KERNEL