mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-10-22 14:52:19 +02:00
23 lines
735 B
PHP
23 lines
735 B
PHP
# Copyright 2020-2021,2025 NXP
|
|
|
|
require recipes-security/optee-imx/optee-client-fslc.inc
|
|
|
|
# The patch same as imx-optee, so point FILESEXTRAPATHS to optee-imx/optee-client,
|
|
# avoid duplicate copy files to optee-qoriq
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/../optee-imx/optee-client:"
|
|
|
|
DEPENDS = "util-linux-libuuid"
|
|
|
|
SRC_URI:remove = "git://github.com/OP-TEE/optee_client.git;branch=master;protocol=https"
|
|
SRC_URI:prepend = "${OPTEE_CLIENT_SRC};branch=${OPTEE_CLIENT_BRANCH} "
|
|
|
|
OPTEE_CLIENT_SRC ?= "git://github.com/nxp-qoriq/optee_client.git;protocol=https"
|
|
|
|
inherit pkgconfig
|
|
|
|
do_install:append () {
|
|
if ! ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
|
|
rm -rf ${D}${libdir}/systemd
|
|
fi
|
|
}
|