scripts/virtual-machines/qemu-setup

20 lines
291 B
Plaintext
Raw Normal View History

2019-07-26 23:23:38 -07:00
# vim: syntax=fish:
2019-07-22 03:53:26 -07:00
function run-qemu
set arch $argv[1]
set -e argv[1]
set argv --display sdl,gl=on $argv
if test $arch = "i386"
or test $arch = "x86_64"
set argv --machine accel=kvm $argv
end
env QEMU_AUDIO_DRV=pa "qemu-system-$arch" $argv
2019-07-22 03:53:26 -07:00
end
set m "/mnt/s/osmedia"
## EOF