Blame SOURCES/rear-bz1726043.patch

424d35
From 26dec8c355b6e4abffe818e8a89616159f8e382e Mon Sep 17 00:00:00 2001
424d35
From: Johannes Meixner <jsmeix@suse.com>
424d35
Date: Mon, 23 Mar 2020 11:18:23 +0100
424d35
Subject: [PATCH] Update 820_create_iso_image.sh
424d35
424d35
Have a hardcoded '-iso-level 3' option in output/ISO/Linux-ppc64le/820_create_iso_image.sh
424d35
because it is also hardcoded in output/ISO/Linux-i386/820_create_iso_image.sh
424d35
and it seems to also work in general on POWER architecture
424d35
cf. https://github.com/rear/rear/issues/2344#issuecomment-601949828
424d35
---
424d35
 .../rear/output/ISO/Linux-ppc64le/820_create_iso_image.sh | 8 +++++++-
424d35
 1 file changed, 7 insertions(+), 1 deletion(-)
424d35
424d35
diff --git a/usr/share/rear/output/ISO/Linux-ppc64le/820_create_iso_image.sh b/usr/share/rear/output/ISO/Linux-ppc64le/820_create_iso_image.sh
424d35
index 28b6464f..44b31b80 100644
424d35
--- a/usr/share/rear/output/ISO/Linux-ppc64le/820_create_iso_image.sh
424d35
+++ b/usr/share/rear/output/ISO/Linux-ppc64le/820_create_iso_image.sh
424d35
@@ -17,7 +17,13 @@ else
424d35
     chrp_boot_option="-chrp-boot"
424d35
 fi
424d35
 
424d35
-$ISO_MKISOFS_BIN $v -o "$ISO_DIR/$ISO_PREFIX.iso" -U $chrp_boot_option -R -J -volid "$ISO_VOLID" -v -graft-points "${ISO_FILES[@]}" >&2
424d35
+# Have a hardcoded '-iso-level 3' option also here because it is
424d35
+# also hardcoded in output/ISO/Linux-i386/820_create_iso_image.sh
424d35
+# and it seems to also work in general on POWER architecture
424d35
+# cf. https://github.com/rear/rear/issues/2344#issuecomment-601949828
424d35
+$ISO_MKISOFS_BIN $v -o "$ISO_DIR/$ISO_PREFIX.iso" \
424d35
+    -U $chrp_boot_option -R -J -volid "$ISO_VOLID" -v -iso-level 3 -graft-points \
424d35
+    "${ISO_FILES[@]}" >&2
424d35
 
424d35
 StopIfError "Could not create ISO image (with $ISO_MKISOFS_BIN)"
424d35
 popd >&2
424d35
-- 
424d35
2.25.1
424d35