| Message ID | 20220719201353.1467716-4-ross.burton@arm.com |
|---|---|
| State | New |
| Headers | show |
| Series | [1/9] CI: use apt-get instead of apt wrapper | expand |
diff --git a/meta-arm/recipes-bsp/hafnium/hafnium_2.6.bb b/meta-arm/recipes-bsp/hafnium/hafnium_2.6.bb index a9f41b90..ae89e8d9 100644 --- a/meta-arm/recipes-bsp/hafnium/hafnium_2.6.bb +++ b/meta-arm/recipes-bsp/hafnium/hafnium_2.6.bb @@ -59,6 +59,8 @@ FILES:${PN}-dbg = "/firmware/*.elf" SYSROOT_DIRS += "/firmware" INSANE_SKIP:${PN} = "ldflags" INSANE_SKIP:${PN}-dbg = "ldflags" +# Build paths are currently embedded +INSANE_SKIP:${PN}-dbg += "buildpaths" do_deploy() { cp -rf ${D}/firmware/* ${DEPLOYDIR}/
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> --- meta-arm/recipes-bsp/hafnium/hafnium_2.6.bb | 2 ++ 1 file changed, 2 insertions(+)