Blame SOURCES/rear-bz1726043.patch

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