Blame SOURCES/rear-bz1729502-ppc64-iso-level.patch

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