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