2019-02-20 22:10:38 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2021-10-31 12:07:59 +00:00
|
|
|
set --
|
2021-11-14 13:19:15 +00:00
|
|
|
set -- "$@" -machine pc -smp "${VM_CPU:?}" -m "${VM_RAM:?}"
|
2021-11-20 13:15:49 +00:00
|
|
|
set -- "$@" -device VGA -display vnc=:0 -serial stdio -monitor unix:/run/qemu-monitor,server,nowait
|
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-20 13:15:49 +00:00
|
|
|
set -- "$@" -device ide-hd,bus=ide.0,drive=c0 -blockdev driver=qcow2,node-name=c0,file.driver=file,file.filename=/var/lib/qemu/disk/reactos.qcow2
|
|
|
|
set -- "$@" -usb -device usb-tablet
|
|
|
|
set -- "$@" -k "${VM_KEYBOARD:?}"
|
2021-08-02 19:23:21 +00:00
|
|
|
|
2021-10-31 12:07:59 +00:00
|
|
|
if [ "${VM_KVM:?}" = true ] && [ -c /dev/kvm ]; then
|
2021-11-15 18:51:53 +00:00
|
|
|
set -- "$@" -accel kvm -cpu host
|
2021-10-31 12:07:59 +00:00
|
|
|
else
|
|
|
|
set -- "$@" -accel tcg
|
2021-08-02 19:23:21 +00:00
|
|
|
fi
|
2019-02-20 22:10:38 +00:00
|
|
|
|
2021-11-20 13:15:49 +00:00
|
|
|
cd_i=0
|
|
|
|
for cd in /var/lib/qemu/cd/*; do
|
|
|
|
[ -f "${cd:?}" ] || continue
|
|
|
|
set -- "$@" -device ide-cd,bus=ide.1,drive=d"${cd_i:?}" -blockdev driver=raw,node-name=d"${cd_i:?}",file.driver=file,file.filename="${cd:?}",read-only=on
|
|
|
|
cd_i="$((cd_i + 1))"
|
2021-11-14 13:08:28 +00:00
|
|
|
done
|
|
|
|
|
2021-11-20 13:15:49 +00:00
|
|
|
floppy_i=0
|
|
|
|
for floppy in /var/lib/qemu/floppy/*; do
|
|
|
|
[ -f "${floppy:?}" ] || continue
|
|
|
|
set -- "$@" -device floppy,bus=floppy-bus.0,drive=a"${floppy_i:?}" -blockdev driver=raw,node-name=a"${floppy_i:?}",file.driver=file,file.filename="${floppy:?}",read-only=on
|
|
|
|
floppy_i="$((floppy_i + 1))"
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "${cd_i:?}" -gt 0 ]; then
|
2021-11-14 13:08:28 +00:00
|
|
|
set -- "$@" -boot order=dc,menu=on,splash-time=5000
|
|
|
|
fi
|
|
|
|
|
2019-09-15 18:55:14 +00:00
|
|
|
cd /var/lib/qemu/
|
2019-02-20 22:10:38 +00:00
|
|
|
exec 2>&1
|
2021-10-31 12:07:59 +00:00
|
|
|
exec /usr/bin/qemu-system-x86_64 "$@"
|