Config.in 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. config BR2_PACKAGE_OPTEE_TEST
  2. bool "optee-test"
  3. depends on BR2_TARGET_OPTEE_OS
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # optee-client
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on !BR2_STATIC_LIBS # optee-client
  7. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3 # optee-client
  8. depends on BR2_USE_MMU # optee-client
  9. select BR2_PACKAGE_OPTEE_CLIENT
  10. select BR2_TARGET_OPTEE_OS_SDK
  11. help
  12. This build option enables OP-TEE test package from the
  13. OP-TEE project. It helps platforms to verify the OP-TEE
  14. installation against a set of regression and performance
  15. tests.
  16. The package generates userspace test applications and
  17. data files for the Linux userland. It also generates
  18. OP-TEE trusted applications.
  19. Trusted application binary files are installed in the target
  20. directory /lib/optee_armtz as other trusted applications.
  21. At runtime OP-TEE OS can load trusted applications from this
  22. non-secure filesystem/directory into the secure world for
  23. execution.
  24. http://github.com/OP-TEE/optee_test
  25. comment "optee-test needs a toolchain w/ threads, C++, dynamic library, headers >= 4.3"
  26. depends on BR2_TARGET_OPTEE_OS
  27. depends on BR2_USE_MMU
  28. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
  29. BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3