Config.in 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. comment "gpu-amd-bin-mx51 needs a glibc EABI toolchain w/ C++"
  2. depends on BR2_arm
  3. depends on !BR2_ARM_EABI || !BR2_TOOLCHAIN_USES_GLIBC || \
  4. !BR2_INSTALL_LIBSTDCPP
  5. config BR2_PACKAGE_GPU_AMD_BIN_MX51
  6. bool "gpu-amd-bin-mx51 (also imx53)"
  7. depends on BR2_ARM_EABI
  8. depends on BR2_TOOLCHAIN_USES_GLIBC
  9. depends on BR2_INSTALL_LIBSTDCPP
  10. select BR2_PACKAGE_HAS_LIBEGL
  11. select BR2_PACKAGE_HAS_LIBGLES
  12. select BR2_PACKAGE_HAS_LIBOPENVG
  13. help
  14. Freescale libraries, headers and executables for the
  15. AMD GPU on i.MX5x, containing OpenGL/ES, OpenVG
  16. and EGL support.
  17. if BR2_PACKAGE_GPU_AMD_BIN_MX51
  18. choice
  19. prompt "Output option"
  20. help
  21. There are two versions of this library: one for
  22. direct framebuffer access, one for X11 rendering.
  23. Choose here which version to install.
  24. config BR2_PACKAGE_GPU_AMD_BIN_MX51_OUTPUT_X11
  25. bool "X11"
  26. depends on BR2_PACKAGE_XORG7
  27. select BR2_PACKAGE_LIBXCB
  28. select BR2_PACKAGE_XLIB_LIBX11
  29. select BR2_PACKAGE_XLIB_LIBXEXT
  30. select BR2_PACKAGE_XLIB_LIBXRENDER
  31. select BR2_PACKAGE_XLIB_LIBXDMCP
  32. select BR2_PACKAGE_XLIB_LIBXAU
  33. comment "X11 backend needs X.org enabled"
  34. depends on !BR2_PACKAGE_XORG7
  35. config BR2_PACKAGE_GPU_AMD_BIN_MX51_OUTPUT_FB
  36. bool "Framebuffer"
  37. endchoice
  38. config BR2_PACKAGE_PROVIDES_LIBEGL
  39. default "gpu-amd-bin-mx51"
  40. config BR2_PACKAGE_PROVIDES_LIBGLES
  41. default "gpu-amd-bin-mx51"
  42. config BR2_PACKAGE_PROVIDES_LIBOPENVG
  43. default "gpu-amd-bin-mx51"
  44. config BR2_PACKAGE_GPU_AMD_BIN_MX51_EXAMPLES
  45. bool "install examples"
  46. help
  47. Copy the examples to the target.
  48. endif