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