Enable to create hybrid ISO without UEFI boot

This commit is contained in:
Timofei Kushnir 2015-11-28 08:55:47 +03:00
parent 8cd52ce5f7
commit c7f4092ed3
1 changed files with 5 additions and 1 deletions

View File

@ -119,7 +119,11 @@ $xorriso -output $out/iso/$isoName
if test -n "$usbBootable"; then
echo "Making image hybrid..."
isohybrid --uefi $out/iso/$isoName
if test -n "$efiBootable"; then
isohybrid --uefi $out/iso/$isoName
else
isohybrid $out/iso/$isoName
fi
fi
if test -n "$compressImage"; then