docker-qemu-reactos/scripts/service/qemu/run

21 lines
635 B
Plaintext
Raw Normal View History

2019-02-20 22:10:38 +00:00
#!/bin/sh
set -eu
set --
set -- "$@" -smp "${VM_CPU:?}" -m "${VM_RAM:?}"
2021-11-02 18:23:18 +00:00
set -- "$@" -serial stdio -monitor unix:/run/qemu-monitor,server,nowait -device VGA -display vnc=:0
2021-11-11 22:15:37 +00:00
set -- "$@" -device e1000,netdev=n0 -netdev user,id=n0,"${VM_NET_GUESTFWD_OPTIONS?}","${VM_NET_HOSTFWD_OPTIONS?}","${VM_NET_EXTRA_OPTIONS?}"
2021-11-02 20:20:19 +00:00
set -- "$@" -drive file=/var/lib/qemu/reactos.qcow2,index=0,media=disk,format=qcow2
2021-11-11 22:15:37 +00:00
set -- "$@" -usb -device usb-tablet -k "${VM_KEYBOARD:?}"
if [ "${VM_KVM:?}" = true ] && [ -c /dev/kvm ]; then
set -- "$@" -accel kvm
else
set -- "$@" -accel tcg
fi
2019-02-20 22:10:38 +00:00
2019-09-15 18:55:14 +00:00
cd /var/lib/qemu/
2019-02-20 22:10:38 +00:00
exec 2>&1
exec /usr/bin/qemu-system-x86_64 "$@"