3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #11316 from tk-ecotelecom/no-uefi-hybrid

LiveCD: Enable to create hybrid ISO without UEFI boot
This commit is contained in:
Domen Kožar 2015-11-28 10:00:00 +01:00
commit e2cb8dfa2f

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