7d1080a1b4
OP-TEE test package provide test materials as part of the OP-TEE project helping platforms to verify their OP-TEE components against a set of regression and performance tests. Package is added in the BR package configuration next to the OP-TEE client package. This change references in Buildroot the today's latest OP-TEE revision release tagged 3.4.0 with an added patch to fix an issue reported by recent GCC toolchains. Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org> [Thomas: - drop version selection - propagate !BR2_STATIC_LIBS dependency of optee-client - make sure BR2_TARGET_OPTEE_OS_SDK is selected - use a patch generated by git format-patch - simplify the construct to build the examples] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# optee-test
|
|
#
|
|
################################################################################
|
|
|
|
OPTEE_TEST_VERSION = 3.4.0
|
|
OPTEE_TEST_SITE = $(call github,OP-TEE,optee_test,$(OPTEE_TEST_VERSION))
|
|
OPTEE_TEST_LICENSE = GPL-2.0, BSD-2-Clause,
|
|
OPTEE_TEST_LICENSE_FILES = LICENSE.md
|
|
|
|
OPTEE_TEST_DEPENDENCIES = optee-client optee-os
|
|
|
|
ifeq ($(BR2_aarch64),y)
|
|
OPTEE_TEST_SDK = $(STAGING_DIR)/lib/optee/export-ta_arm64
|
|
else ifeq ($(BR2_arm),y)
|
|
OPTEE_TEST_SDK = $(STAGING_DIR)/lib/optee/export-ta_arm32
|
|
endif
|
|
OPTEE_TEST_CONF_OPTS = -DOPTEE_TEST_SDK=$(OPTEE_TEST_SDK)
|
|
|
|
# Trusted Application are not built from CMake due to ta_dev_kit
|
|
# dependencies. We must build and install them on target.
|
|
define OPTEE_TEST_BUILD_TAS
|
|
$(foreach f,$(wildcard $(@D)/ta/*/Makefile), \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(MAKE) CROSS_COMPILE=$(TARGET_CROSS) \
|
|
TA_DEV_KIT_DIR=$(OPTEE_TEST_SDK) \
|
|
-C $(dir $f) all
|
|
)
|
|
endef
|
|
define OPTEE_TEST_INSTALL_TAS
|
|
@mkdir -p $(TARGET_DIR)/lib/optee_armtz
|
|
@$(INSTALL) -D -m 444 -t $(TARGET_DIR)/lib/optee_armtz $(@D)/ta/*/*.ta
|
|
endef
|
|
OPTEE_TEST_POST_BUILD_HOOKS += OPTEE_TEST_BUILD_TAS
|
|
OPTEE_TEST_POST_INSTALL_TARGET_HOOKS += OPTEE_TEST_INSTALL_TAS
|
|
|
|
$(eval $(cmake-package))
|