mirror of
https://github.com/lingble/meta-tegra.git
synced 2025-10-28 19:12:39 +00:00
* pass -std=gnu17 and disable errors for unterminated string initialization warnings in the test programs * update the sed filter to catch -ffile-prefix-map for the TA development kit Signed-off-by: Matt Madison <matt@madison.systems>
18 lines
574 B
BlitzBasic
18 lines
574 B
BlitzBasic
SUMMARY = "OP-TEE Trusted OS TA devkit"
|
|
DESCRIPTION = "OP-TEE TA devkit for build TAs"
|
|
HOMEPAGE = "https://www.op-tee.org/"
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/optee-os:"
|
|
require optee-os-l4t.inc
|
|
|
|
do_install() {
|
|
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
|
|
sed -i -r -e's!-f(macro|debug|file)-prefix-map=[^ ]+!!g' ${D}${includedir}/optee/export-user_ta/mk/conf.mk
|
|
}
|
|
|
|
FILES:${PN} = "${includedir}/optee/"
|
|
INSANE_SKIP:${PN}-dev = "staticdev"
|