mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 09:35:26 +00:00
23 lines
677 B
Makefile
23 lines
677 B
Makefile
################################################################################
|
|
#
|
|
# optee-client
|
|
#
|
|
################################################################################
|
|
|
|
OPTEE_CLIENT_VERSION = 3.13.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
|
|
|
|
OPTEE_CLIENT_CONF_OPTS = \
|
|
-DCFG_TEE_FS_PARENT_PATH=$(BR2_PACKAGE_OPTEE_CLIENT_TEE_FS_PATH) \
|
|
-DCFG_WERROR=OFF
|
|
|
|
define OPTEE_CLIENT_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D $(OPTEE_CLIENT_PKGDIR)/S30optee \
|
|
$(TARGET_DIR)/etc/init.d/S30optee
|
|
endef
|
|
|
|
$(eval $(cmake-package))
|