Skip to content

Instantly share code, notes, and snippets.

@Sadin
Last active May 21, 2017 07:33
Show Gist options
  • Save Sadin/962062c900733a89729469feafecf81a to your computer and use it in GitHub Desktop.
Save Sadin/962062c900733a89729469feafecf81a to your computer and use it in GitHub Desktop.
#!/bin/bash
cp /usr/share/edk2.git/ovmf-x64/OVMF_VARS-pure-efi.fd /tmp/my_vars.fd
qemu-system-x86_64 \
-enable-kvm \
-m 2048 \
-cpu host,kvm=off \
-vga none \
-device vfio-pci,host=05:00.0,multifunction=on \
-device vfio-pci,host=05:00.1 \
-drive if=pflash,format=raw,readonly,file=/usr/share/edk2.git/ovmf-x64/OVMF_CODE-pure-efi.fd \
-drive if=pflash,format=raw,file=/tmp/my_vars.fd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment