mirror of
https://github.com/nxp-imx/meta-imx.git
synced 2025-12-15 23:17:24 +01:00
meta-bsp --> meta-imx-bsp meta-sdk --> meta-imx-sdk meta-ml --> meta-imx-ml meta-v2x --> meta-imx-v2x meta-cockpit-->meta-imx-cockpit Signed-off-by: Neena Busireddy <neenareddy.busireddy@nxp.com>
25 lines
590 B
PHP
25 lines
590 B
PHP
require optee-os-common-imx.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"
|
|
|
|
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/"
|
|
|
|
# Build paths are currently embedded
|
|
INSANE_SKIP:${PN}-dev += "buildpaths"
|