Roboto3x

Minimal Pasthrough

Jun 25th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.36 KB | None | 0 0
  1. MinimalPassthrough.sh
  2. #!/bin/bash
  3.  
  4. exec qemu-system-x86_64 \
  5.     -nodefaults \
  6.     -enable-kvm \
  7.     -cpu host,kvm=off \
  8.     -m 8G \
  9.     -name "BlankVM" \
  10.     -smp cores=4 \
  11.     -device vfio-pci,host=09:00.0,x-vga=on,multifunction=on,romfile=GP107_patched.rom \
  12.     -device vfio-pci,host=09:00.1 \
  13.     -monitor stdio \
  14.     -nographic \
  15.     -vga none \
  16.     $@
Add Comment
Please, Sign In to add comment