Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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

LiveCD: Enable to create hybrid ISO without UEFI boot

+5 -1
+5 -1
nixos/lib/make-iso9660-image.sh
··· 119 120 if test -n "$usbBootable"; then 121 echo "Making image hybrid..." 122 - isohybrid --uefi $out/iso/$isoName 123 fi 124 125 if test -n "$compressImage"; then
··· 119 120 if test -n "$usbBootable"; then 121 echo "Making image hybrid..." 122 + if test -n "$efiBootable"; then 123 + isohybrid --uefi $out/iso/$isoName 124 + else 125 + isohybrid $out/iso/$isoName 126 + fi 127 fi 128 129 if test -n "$compressImage"; then