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

arm/optee: 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:50 +01:00
committed by Jon Mason
parent 503d45e41a
commit 6c7399be0c
3 changed files with 7 additions and 1 deletions
@@ -20,3 +20,6 @@ do_deploy() {
}
FILES:${PN} = "${includedir}/optee/"
# Build paths are currently embedded
INSANE_SKIP:${PN}-dev += "buildpaths"
+2 -1
View File
@@ -63,7 +63,8 @@ FILES:${PN} = "${nonarch_base_libdir}/firmware/"
# note: "textrel" is not triggered on all archs
INSANE_SKIP:${PN} = "textrel"
# Build paths are currently embedded
INSANE_SKIP:${PN} += "buildpaths"
INSANE_SKIP:${PN}-dev = "staticdev"
INHIBIT_PACKAGE_STRIP = "1"
@@ -301,3 +301,5 @@ COMPATIBLE_HOST = "aarch64.*-linux"
# optee-spdevkit static library is part of optee-os image. No need to package this library in a staticdev package
INSANE_SKIP:${PN}-dev = "staticdev"
# Build paths are currently embedded
INSANE_SKIP:${PN}-dev += "buildpaths"