Config.in 747 B

123456789101112131415161718
  1. config BR2_PACKAGE_V4L2_TEST
  2. bool "v4l2_test"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS # libv4l
  4. depends on BR2_USE_MMU # libv4l
  5. depends on !BR2_STATIC_LIBS # libv4l
  6. depends on BR2_INSTALL_LIBSTDCPP # libv4l
  7. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # libv4l
  8. select BR2_PACKAGE_JPEG
  9. select BR2_PACKAGE_LIBV4L
  10. help
  11. Utility for v4l2test JPEGs form V4L2 devices. This tool is
  12. similar to v4l2grab available from libv4l contrib directory,
  13. but provides additional features such as JPEG output.
  14. comment "v4l2_test needs a toolchain w/ threads, dynamic library, C++ and headers >= 3.0"
  15. depends on BR2_USE_MMU
  16. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
  17. || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0