From f505ae07df8d8350b715fe20bdacfe3bcf1bf8c6 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Mon, 16 Mar 2026 20:51:31 +0000 Subject: vcontainer-tarball: set S to UNPACKDIR for do_qa_unpack check The recipe only has file:// SRC_URI entries which unpack directly into UNPACKDIR, not a ${BP} subdirectory. The new do_qa_unpack QA check in insane.bbclass warns when S doesn't exist after unpack. Set S explicitly to satisfy the check. Signed-off-by: Bruce Ashfield --- recipes-containers/vcontainer/vcontainer-tarball.bb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'recipes-containers/vcontainer/vcontainer-tarball.bb') diff --git a/recipes-containers/vcontainer/vcontainer-tarball.bb b/recipes-containers/vcontainer/vcontainer-tarball.bb index 432bea9a..ee3c1147 100644 --- a/recipes-containers/vcontainer/vcontainer-tarball.bb +++ b/recipes-containers/vcontainer/vcontainer-tarball.bb @@ -27,6 +27,9 @@ HOMEPAGE = "https://git.yoctoproject.org/meta-virtualization/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" +# file:// SRC_URI entries land directly in UNPACKDIR, not a subdirectory +S = "${UNPACKDIR}" + # Use our custom SDK installer template with vcontainer-specific messages FILESEXTRAPATHS:prepend := "${THISDIR}/files:" TOOLCHAIN_SHAR_EXT_TMPL = "${THISDIR}/files/toolchain-shar-extract.sh" -- cgit v1.2.3-54-g00ecf