isar-installer: support progress bar from bmap version 3.6

Message ID 20250425064809.4167144-1-kasturi.shekar@siemens.com
State New
Headers show
Series isar-installer: support progress bar from bmap version 3.6 | expand

Commit Message

Kasturi Shekar April 25, 2025, 6:48 a.m. UTC
bmap progress bar issue is fixed with 3.6 debian bookworm
with eariler patch https://github.com/ilbers/isar/commit/af29dc506fffd826cb6e9df452a49e2fc77a94b0
now supporting progress bar for bmap version 3.6 and above

Signed-off-by: Kasturi Shekar <kasturi.shekar@siemens.com>
---
 .../deploy-image/files/usr/bin/deploy-image-wic.sh              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/meta-isar/recipes-installer/deploy-image/files/usr/bin/deploy-image-wic.sh b/meta-isar/recipes-installer/deploy-image/files/usr/bin/deploy-image-wic.sh
index 66c35506..aba81c84 100755
--- a/meta-isar/recipes-installer/deploy-image/files/usr/bin/deploy-image-wic.sh
+++ b/meta-isar/recipes-installer/deploy-image/files/usr/bin/deploy-image-wic.sh
@@ -161,7 +161,7 @@  version_ge() {
 # Get bmap-tools version
 bmap_version=$(bmaptool --version | awk '{ print $NF }')
 
-if version_ge "$bmap_version" "3.8"; then
+if version_ge "$bmap_version" "3.6"; then
     # Create a named pipe for progress communication
     progress_pipe="/tmp/progress"
     if ! mkfifo "$progress_pipe"; then