1config BR2_PACKAGE_OPTEE_BENCHMARK 2 bool "optee-benchmark" 3 depends on BR2_USE_MMU # fork() 4 depends on BR2_TOOLCHAIN_HAS_THREADS # optee-client 5 depends on !BR2_STATIC_LIBS # optee-client 6 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3 # optee-client 7 select BR2_PACKAGE_OPTEE_CLIENT 8 select BR2_PACKAGE_LIBYAML 9 help 10 Enable the OP-TEE benchmark package that brings facilities 11 for profiling traversal and execution timings when 12 invoking OP-TEE. OP-TEE benchmark is a component delivered 13 by the OP-TEE project. 14 15 http://github.com/linaro-swg/optee_benchmark 16 17comment "optee-benchmark needs a toolchain w/ threads, dynamic library, headers >= 4.3" 18 depends on BR2_USE_MMU 19 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \ 20 !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3 21