From a4a9f35e6b2cbd5198eb8853bcc7068dc0f308e4 Mon Sep 17 00:00:00 2001 From: Louis Rannou Date: Tue, 24 Feb 2026 13:54:30 +0100 Subject: [PATCH] kas: new-package integrates packages with PACKAGECONFIG Include zstd in the base image to have something to remove in the new-package image. Add rsync in the new-package image and remove zstd. Both zstd and rsync have PACKAGECONFIG options. The goal is to increase tests of added/removed package and see their impact on the packageconfig output. Signed-off-by: Louis Rannou --- kas/image-minimal.yml | 4 ++++ kas/test-new-package.yml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/kas/image-minimal.yml b/kas/image-minimal.yml index 18e5c0f..030d961 100644 --- a/kas/image-minimal.yml +++ b/kas/image-minimal.yml @@ -7,3 +7,7 @@ header: target: - core-image-minimal + +local_conf_header: + baseimages: | + IMAGE_INSTALL:append = " zstd" diff --git a/kas/test-new-package.yml b/kas/test-new-package.yml index 2c90d70..4326c40 100644 --- a/kas/test-new-package.yml +++ b/kas/test-new-package.yml @@ -6,3 +6,6 @@ local_conf_header: # example package to test --ignore-proprietary option IMAGE_INSTALL:append = " i2c-tools example" LICENSE_FLAGS_ACCEPTED .= "commercial " + # packages to test new/old packages are reported but not their packageconfig + IMAGE_INSTALL:append = " rsync" + IMAGE_INSTALL:remove = " zstd"