From b0813f34d0abb5ee3a4f9e05005cdfd7691438ee Mon Sep 17 00:00:00 2001 From: awuctl <61098069+awuctl@users.noreply.github.com> Date: Wed, 30 Jun 2021 08:54:21 +0200 Subject: [PATCH] Fix issues with big install.wim files --- convert.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/convert.sh b/convert.sh index 2ce11ed..f74c81e 100755 --- a/convert.sh +++ b/convert.sh @@ -610,11 +610,11 @@ fi if [ "$arch" == "arm64" ]; then "$genisoimage" -b "efi/microsoft/boot/efisys.bin" --no-emul-boot \ - --udf --hide "*" -V "$isoLabel" -o "$isoName" ISODIR + --udf -iso-level 3 --hide "*" -V "$isoLabel" -o "$isoName" ISODIR else "$genisoimage" -b "boot/etfsboot.com" --no-emul-boot \ --eltorito-alt-boot -b "efi/microsoft/boot/efisys.bin" --no-emul-boot \ - --udf --hide "*" -V "$isoLabel" -o "$isoName" ISODIR + --udf -iso-level 3 --hide "*" -V "$isoLabel" -o "$isoName" ISODIR fi errorHandler $? "Failed to create ISO image""$resetColor"