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:
commit
e2cb8dfa2f
|
@ -119,7 +119,11 @@ $xorriso -output $out/iso/$isoName
|
||||||
|
|
||||||
if test -n "$usbBootable"; then
|
if test -n "$usbBootable"; then
|
||||||
echo "Making image hybrid..."
|
echo "Making image hybrid..."
|
||||||
|
if test -n "$efiBootable"; then
|
||||||
isohybrid --uefi $out/iso/$isoName
|
isohybrid --uefi $out/iso/$isoName
|
||||||
|
else
|
||||||
|
isohybrid $out/iso/$isoName
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -n "$compressImage"; then
|
if test -n "$compressImage"; then
|
||||||
|
|
Loading…
Reference in a new issue