Config.in 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. config BR2_PACKAGE_SUNXI_MALI_MAINLINE
  2. bool "sunxi-mali-mainline"
  3. depends on BR2_aarch64 || (BR2_ARM_EABIHF && BR2_arm)
  4. depends on BR2_TOOLCHAIN_USES_GLIBC
  5. select BR2_PACKAGE_HAS_LIBEGL
  6. select BR2_PACKAGE_HAS_LIBGLES
  7. help
  8. Install userspace Allwinner OpenGL libraries.
  9. https://github.com/bootlin/mali-blobs
  10. if BR2_PACKAGE_SUNXI_MALI_MAINLINE
  11. config BR2_PACKAGE_PROVIDES_LIBEGL
  12. default "sunxi-mali-mainline"
  13. config BR2_PACKAGE_PROVIDES_LIBGLES
  14. default "sunxi-mali-mainline"
  15. choice
  16. prompt "Version"
  17. default BR2_PACKAGE_SUNXI_MALI_MAINLINE_R6P2
  18. help
  19. Select the version of the userspace module.
  20. config BR2_PACKAGE_SUNXI_MALI_MAINLINE_R6P2
  21. bool "r6p2"
  22. config BR2_PACKAGE_SUNXI_MALI_MAINLINE_R8P1
  23. bool "r8p1"
  24. endchoice
  25. config BR2_PACKAGE_SUNXI_MALI_MAINLINE_REVISION
  26. string
  27. default "r6p2" if BR2_PACKAGE_SUNXI_MALI_MAINLINE_R6P2
  28. default "r8p1" if BR2_PACKAGE_SUNXI_MALI_MAINLINE_R8P1
  29. endif
  30. comment "sunxi-mali needs an EABIhf glibc toolchain"
  31. depends on BR2_arm
  32. depends on !BR2_TOOLCHAIN_USES_GLIBC || !BR2_ARM_EABIHF