mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-10-22 14:52:19 +02:00
25 lines
597 B
BlitzBasic
25 lines
597 B
BlitzBasic
require optee-os.nxp.inc
|
|
|
|
SUMMARY = "OP-TEE Trusted OS TA devkit"
|
|
DESCRIPTION = "OP-TEE TA devkit for build TAs"
|
|
HOMEPAGE = "https://www.op-tee.org/"
|
|
|
|
DEPENDS += "python3-pycryptodome-native"
|
|
|
|
OPTEE_OS_BRANCH = "lf-6.12.20_2.0.0"
|
|
SRCREV = "87964807d80baf1dcfd89cafc66de34a1cf16bf3"
|
|
|
|
do_install() {
|
|
#install TA devkit
|
|
install -d ${D}${includedir}/optee/export-user_ta/
|
|
for f in ${B}/export-ta_${OPTEE_ARCH}/* ; do
|
|
cp -aR $f ${D}${includedir}/optee/export-user_ta/
|
|
done
|
|
}
|
|
|
|
do_deploy() {
|
|
echo "Do not inherit do_deploy from optee-os."
|
|
}
|
|
|
|
FILES:${PN} = "${includedir}/optee/"
|