When applying 917a961d9c
(package/optee-client: bump to version
3.19.0), a last-minute change was made in Config.in to change the
dependency to util-linux instead of util-linux-libs, but the
counterpart to that change in the .mk was omitted.
Fix that now.
Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# optee-client
|
|
#
|
|
################################################################################
|
|
|
|
OPTEE_CLIENT_VERSION = 3.19.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
|
|
|
|
ifeq ($(BR2_PACKAGE_OPTEE_CLIENT_RPMB_EMU),y)
|
|
OPTEE_CLIENT_CONF_OPTS += -DRPMB_EMU=ON
|
|
else
|
|
OPTEE_CLIENT_CONF_OPTS += -DRPMB_EMU=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPTEE_CLIENT_SUPP_PLUGINS),y)
|
|
OPTEE_CLIENT_CONF_OPTS += -DCFG_TEE_SUPP_PLUGINS=ON
|
|
else
|
|
OPTEE_CLIENT_CONF_OPTS += -DCFG_TEE_SUPP_PLUGINS=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPTEE_CLIENT_TEEACL),y)
|
|
OPTEE_CLIENT_EXT_DEPENDENCIES += host-pkgconf util-linux
|
|
OPTEE_CLIENT_CONF_OPTS += -DWITH_TEEACL=ON
|
|
else
|
|
OPTEE_CLIENT_CONF_OPTS += -DWITH_TEEACL=OFF
|
|
endif
|
|
|
|
define OPTEE_CLIENT_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D $(OPTEE_CLIENT_PKGDIR)/S30tee-supplicant \
|
|
$(TARGET_DIR)/etc/init.d/S30tee-supplicant
|
|
endef
|
|
|
|
$(eval $(cmake-package))
|