[1/2] rootfs: Correct cache-dbg-pkgs check to BASE_REPO_FEATURES

Message ID 20250403203114.1261163-1-badrikesh.prusty@siemens.com
State New
Headers show
Series [1/2] rootfs: Correct cache-dbg-pkgs check to BASE_REPO_FEATURES | expand

Commit Message

Badrikesh Prusty April 3, 2025, 8:31 p.m. UTC
From: badrikesh prusty <badrikesh.prusty@siemens.com>

Debug symbol packages downloaded during do_rootfs_postprocess are missing from
the downloads/deb (DEBDIR) directory. This change ensures cache-dbg-pkgs is
checked within BASE_REPO_FEATURES, not ROOTFS_FEATURES, enabling the function
rootfs_export_package_cache to properly export downloaded debug packages to the
DEBDIR directory.

Signed-off-by: badrikesh prusty <badrikesh.prusty@siemens.com>
---
 meta/classes/rootfs.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/meta/classes/rootfs.bbclass b/meta/classes/rootfs.bbclass
index cd8fd118..7695bdb4 100644
--- a/meta/classes/rootfs.bbclass
+++ b/meta/classes/rootfs.bbclass
@@ -293,7 +293,7 @@  cache_deb_src() {
     fi
 }
 
-ROOTFS_POSTPROCESS_COMMAND += "${@bb.utils.contains('ROOTFS_FEATURES', 'cache-dbg-pkgs', 'rootfs_export_package_cache', '', d)}"
+ROOTFS_POSTPROCESS_COMMAND += "${@bb.utils.contains('BASE_REPO_FEATURES', 'cache-dbg-pkgs', 'rootfs_export_package_cache', '', d)}"
 cache_dbg_pkgs() {
     if [ -e "${ROOTFSDIR}"/etc/resolv.conf ] ||
        [ -h "${ROOTFSDIR}"/etc/resolv.conf ]; then