Fix qemu command to not warn about raw disk image file

This commit is contained in:
Josh Holtrop 2022-03-11 16:49:27 -05:00
parent 8b3c4477eb
commit 8da8bdc51a

View File

@ -34,5 +34,5 @@ uefi_env = env "uefi" do |env|
end end
task "run" do task "run" do
sh %W[qemu-system-x86_64 -bios OVMF.fd -hda #{uefi_env.expand("^/efi-loader.img")}] sh %W[qemu-system-x86_64 -bios OVMF.fd -drive file=#{uefi_env.expand("^/efi-loader.img")},format=raw]
end end