Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_RPI_RGB_LED_MATRIX
  2. bool "rpi-rgb-led-matrix"
  3. depends on BR2_aarch64 || BR2_arm
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on !BR2_STATIC_LIBS
  7. help
  8. A library to control commonly available 64x64, 32x32 or 16x32
  9. RGB LED panels with the Raspberry Pi. Can support PWM up to
  10. 11Bit per channel, providing true 24bpp color with CIE1931
  11. profile.
  12. https://github.com/hzeller/rpi-rgb-led-matrix
  13. if BR2_PACKAGE_RPI_RGB_LED_MATRIX
  14. config BR2_PACKAGE_RPI_RGB_LED_MATRIX_IMAGE_VIEWER
  15. bool "Build led-image-viewer"
  16. select BR2_PACKAGE_GRAPHICSMAGICK
  17. help
  18. The image viewer reads all kinds of image formats,
  19. including animated gifs.
  20. config BR2_PACKAGE_RPI_RGB_LED_MATRIX_TEXT_SCROLLER
  21. bool "Build text-scroller"
  22. help
  23. The text scroller allows to show some scrolling text.
  24. config BR2_PACKAGE_RPI_RGB_LED_MATRIX_VIDEO_VIEWER
  25. bool "Build video-viewer"
  26. select BR2_PACKAGE_FFMPEG
  27. select BR2_PACKAGE_FFMPEG_SWSCALE
  28. help
  29. The video viewer allows to play common video formats
  30. on the RGB matrix (just the picture, no sound).
  31. endif
  32. comment "rpi-rgb-led-matrix needs a toolchain w/ C++, threads, dynamic library"
  33. depends on BR2_aarch64 || BR2_arm
  34. depends on !BR2_INSTALL_LIBSTDCPP || \
  35. !BR2_TOOLCHAIN_HAS_THREADS || \
  36. BR2_STATIC_LIBS