Config.in 825 B

1234567891011121314151617181920212223242526272829
  1. comment "imx-gpu-g2d needs a glibc toolchain with armhf enabled"
  2. depends on BR2_arm
  3. depends on !BR2_TOOLCHAIN_USES_GLIBC || !BR2_ARM_EABIHF
  4. comment "imx-gpu-g2d needs a glibc toolchain"
  5. depends on BR2_aarch64
  6. depends on !BR2_TOOLCHAIN_USES_GLIBC
  7. config BR2_PACKAGE_IMX_GPU_G2D
  8. bool "imx-gpu-g2d"
  9. # Pre-built binaries only available for ARM EABIhf
  10. depends on (BR2_arm && BR2_ARM_EABIHF) || BR2_aarch64
  11. # Library binaries are linked against libc.so.6
  12. depends on BR2_TOOLCHAIN_USES_GLIBC
  13. select BR2_PACKAGE_IMX_GPU_VIV
  14. help
  15. Userspace 2D libraries for Vivante GPU on i.MX platforms.
  16. This library is provided by NXP as-is and doesn't have an
  17. upstream.
  18. if BR2_PACKAGE_IMX_GPU_G2D
  19. config BR2_PACKAGE_IMX_GPU_G2D_EXAMPLES
  20. bool "install examples"
  21. help
  22. Copy the Vivante G2D examples to the target.
  23. endif