From db91051c6a01c105846594e935494f16ab651f45 Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Mon, 29 Jul 2024 09:01:59 -0400 Subject: chipsec: Fix QA Warnings ERROR: chipsec-1.9.1-r0 do_package_qa: QA Issue: File /usr/lib/python3.12/site-packages/chipsec/helper/linux/chipsec.ko in package chipsec contains reference to TMPDIR [buildpaths] ERROR: chipsec-1.9.1-r0 do_package_qa: QA Issue: File /usr/lib/python3.12/site-packages/chipsec/helper/linux/.debug/chipsec.ko in package chipsec-dbg contains reference to TMPDIR [buildpaths] Signed-off-by: Armin Kuster --- recipes-security/chipsec/chipsec_1.9.1.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes-security/chipsec/chipsec_1.9.1.bb b/recipes-security/chipsec/chipsec_1.9.1.bb index 24451f8..213b047 100644 --- a/recipes-security/chipsec/chipsec_1.9.1.bb +++ b/recipes-security/chipsec/chipsec_1.9.1.bb @@ -24,6 +24,9 @@ do_compile:append() { } do_install:append() { + sed -i -e 's#${S}##g' ${S}/drivers/linux/chipsec.ko + sed -i -e 's#${STAGING_KERNEL_BUILDDIR}##g' ${S}/drivers/linux/chipsec.ko + sed -i -e 's#${STAGING_KERNEL_DIR}##g' ${S}/drivers/linux/chipsec.ko install -m 0644 ${S}/drivers/linux/chipsec.ko ${D}${PYTHON_SITEPACKAGES_DIR}/chipsec/helper/linux } @@ -32,3 +35,4 @@ COMPATIBLE_HOST = "(i.86|x86_64).*-linux" FILES:${PN} += "${exec_prefix}" RDEPENDS:${PN} = "python3 python3-modules" +INSANE_SKIP:${PN} = "already-stripped" -- cgit v1.2.3-54-g00ecf