Fix issues with big install.wim files

This commit is contained in:
awuctl 2021-06-30 08:54:21 +02:00 committed by GitHub
parent 1e7d2aacb4
commit b0813f34d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"