Config.in 1.6 KB

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