59cc325133
OP-TEE client API library and supplicant daemon from the OP-TEE project are packaged in package/optee-client. An init script launches the tee-supplicant deamon. Package is added to the Security menu of BR configuration. This change references in Buildroot the today's latest OP-TEE revision release tagged 3.4.0. Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org> [Thomas: - remove version selection - add dependency on !BR2_STATIC_LIBS, as it unconditionally builds a shared library] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
562 B
Makefile
19 lines
562 B
Makefile
################################################################################
|
|
#
|
|
# optee-client
|
|
#
|
|
################################################################################
|
|
|
|
OPTEE_CLIENT_VERSION = 3.4.0
|
|
OPTEE_CLIENT_SITE = $(call github,OP-TEE,optee_client,$(OPTEE_CLIENT_VERSION))
|
|
OPTEE_CLIENT_LICENSE = BSD-2-Clause
|
|
OPTEE_CLIENT_LICENSE_FILES = LICENSE
|
|
OPTEE_CLIENT_INSTALL_STAGING = YES
|
|
|
|
define OPTEE_CLIENT_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D $(OPTEE_CLIENT_PKGDIR)/S30optee \
|
|
$(TARGET_DIR)/etc/init.d/S30optee
|
|
endef
|
|
|
|
$(eval $(cmake-package))
|