1config 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 11 https://github.com/umlaeute/v4l2loopback 12 13if BR2_PACKAGE_V4L2LOOPBACK 14 15config BR2_PACKAGE_V4L2LOOPBACK_UTILS 16 bool "utils" 17 depends on BR2_USE_MMU # bash 18 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash 19 select BR2_PACKAGE_BASH # runtime dependency 20 select BR2_PACKAGE_SUDO # runtime dependency 21 help 22 Install applications to interact with v4l2-loopback devices 23 ("virtual video devices"). Currently there is only a single 24 command line utility: v4l2loopback-ctl: tool to set 25 framerate, format and timeout image. 26 27endif 28 29comment "v4l2loopback needs a Linux kernel to be built" 30 depends on !BR2_LINUX_KERNEL 31