Avoid qemu raw image format warning

This commit is contained in:
Josh Holtrop 2022-03-12 10:50:09 -05:00
parent edd7979b3f
commit d02f1a9efc

View File

@ -31,5 +31,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