From 0178b539ed092f2b78bb09c6c35056676419c7e7 Mon Sep 17 00:00:00 2001 From: Giana Francisco Date: Wed, 21 Apr 2021 09:33:40 -0300 Subject: [PATCH] build-img: build PATCH.img-addon as REL and non-RR patch Added parameters --status REL and --reboot-required N when PATCH.img-addon is created from build-img script. In order to allow to sw-patch commits the PATCH.img-addon.patch Story: 2007858 Task: 42316 Signed-off-by: Giana Francisco Change-Id: Ief73924e52f364e70f7ad2713480536c953c055b --- build-tools/build-img | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools/build-img b/build-tools/build-img index fb71bd1d..e0f22f86 100755 --- a/build-tools/build-img +++ b/build-tools/build-img @@ -566,7 +566,7 @@ if [ ${#RPM_ADDON_LIST[@]} -gt 0 ] ; then pushd $MY_WORKSPACE patch_file="PATCH.img-addon" patched_iso="$TEMPFILES_DIR/bootimage_${AUTO_MODE}${GRAPHICAL_SUFFIX}_patched.iso" - cmd=("$PATCH_BUILD" --id "${patch_file}" --summary "additional packages for qcow2 image" --desc "Adds customizations to qcow2 image") + cmd=("$PATCH_BUILD" --id "${patch_file}" --summary "additional packages for qcow2 image" --desc "Adds customizations to qcow2 image" --status "REL" --reboot-required "N") for rpm_addon in "${RPM_ADDON_LIST[@]}"; do cmd+=(--all-nodes "${rpm_addon}") done