Config.in 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. config BR2_PACKAGE_LIBV4L
  2. bool "libv4l"
  3. depends on BR2_LARGEFILE
  4. help
  5. libv4l is an accompanying collection of libraries that adds a thin
  6. abstraction layer on top of video4linux2 (V4L2) devices.
  7. http://freshmeat.net/projects/libv4l
  8. if BR2_PACKAGE_LIBV4L
  9. config BR2_PACKAGE_LIBV4L_DECODE_TM6000
  10. bool "decode_tm6000"
  11. depends on BR2_TOOLCHAIN_EXTERNAL_GLIBC || BR2_TOOLCHAIN_CTNG_glibc || BR2_TOOLCHAIN_CTNG_eglibc
  12. help
  13. Tool to decode tm6000 proprietary format streams
  14. comment "decode_tm6000 requires a GLIBC based toolchain"
  15. depends on !(BR2_TOOLCHAIN_EXTERNAL_GLIBC || BR2_TOOLCHAIN_CTNG_glibc || BR2_TOOLCHAIN_CTNG_eglibc)
  16. config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
  17. bool "ir-keytable"
  18. depends on BR2_TOOLCHAIN_EXTERNAL_GLIBC || BR2_TOOLCHAIN_CTNG_glibc || BR2_TOOLCHAIN_CTNG_eglibc
  19. help
  20. Tool to alter keymaps of Remote Controller devices
  21. comment "ir-keytable requires a GLIBC based toolchain"
  22. depends on !(BR2_TOOLCHAIN_EXTERNAL_GLIBC || BR2_TOOLCHAIN_CTNG_glibc || BR2_TOOLCHAIN_CTNG_eglibc)
  23. config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
  24. bool "v4l2-compliance"
  25. depends on BR2_INSTALL_LIBSTDCPP
  26. help
  27. Tool to test v4l2 API compliance of drivers
  28. comment "v4l2-compliance requires a toolchain with C++ support enabled"
  29. depends on !BR2_INSTALL_LIBSTDCPP
  30. config BR2_PACKAGE_LIBV4L_V4L2_CTL
  31. bool "v4l2-ctl"
  32. depends on BR2_INSTALL_LIBSTDCPP
  33. default y
  34. help
  35. Tool to configure v4l2 controls from the cmdline
  36. comment "v4l2-ctl requires a toolchain with C++ support enabled"
  37. depends on !BR2_INSTALL_LIBSTDCPP
  38. config BR2_PACKAGE_LIBV4L_V4L2_DBG
  39. bool "v4l2-dbg"
  40. depends on BR2_INSTALL_LIBSTDCPP
  41. help
  42. Tool to directly get and set registers of v4l2 devices
  43. comment "v4l2-dbg requires a toolchain with C++ support enabled"
  44. depends on !BR2_INSTALL_LIBSTDCPP
  45. endif
  46. comment "libv4l requires a toolchain with LARGEFILE support"
  47. depends on !BR2_LARGEFILE