1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-05-08 05:09:56 +00:00

arm/trusted-services: ignore buildpath warnings

Latest oe-core has enabled the buildpaths QA check, which warns if the
build paths are present inside binaries. This is because build paths in
deployed binaries is both information leakage and non-reproducible.

Until this is fixed, skip this check.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Ross Burton
2022-07-19 21:13:53 +01:00
committed by Jon Mason
parent eac1792393
commit d9d1399b37
2 changed files with 5 additions and 1 deletions
@@ -121,6 +121,6 @@ do_install:append() {
}
FILES:${PN}-dev = "${includedir}/deployments/psa-api-test/"
INSANE_SKIP:${PN}-psa-api-tests += "rpaths dev-so"
INSANE_SKIP:${PN}-psa-api-tests += "rpaths dev-so buildpaths"
PACKAGES += "${PN}-psa-api-tests"
FILES:${PN}-psa-api-tests = "${libdir} ${bindir}"
@@ -68,3 +68,7 @@ do_deploy() {
addtask deploy after do_install
FILES:${PN} = "/firmware/sp/opteesp*"
# Build paths are currently embedded
INSANE_SKIP:${PN} += "buildpaths"
INSANE_SKIP:${PN}-dbg += "buildpaths"