Update start-qemu
This commit is contained in:
parent
f6de6acaae
commit
d1d030c951
7
6.1/start-qemu
generated
7
6.1/start-qemu
generated
|
@ -14,6 +14,7 @@ set -e
|
||||||
# QEMU_NO_SERIAL=1 (suppress automatic "-serial stdio")
|
# QEMU_NO_SERIAL=1 (suppress automatic "-serial stdio")
|
||||||
# QEMU_NO_VNC=1 (suppress automatic "-vnc ':0'")
|
# QEMU_NO_VNC=1 (suppress automatic "-vnc ':0'")
|
||||||
# QEMU_MACHINE (for non-native)
|
# QEMU_MACHINE (for non-native)
|
||||||
|
# QEMU_CPUMODEL (for non-native)
|
||||||
# QEMU_BIOS (filename)
|
# QEMU_BIOS (filename)
|
||||||
# QEMU_KERNEL (filename)
|
# QEMU_KERNEL (filename)
|
||||||
# QEMU_INITRD (filename)
|
# QEMU_INITRD (filename)
|
||||||
|
@ -113,6 +114,12 @@ if [ -n "${QEMU_MACHINE:-}" ]; then
|
||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "${QEMU_CPUMODEL:-}" ]; then
|
||||||
|
qemuArgs+=(
|
||||||
|
-cpu "${QEMU_CPUMODEL}"
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -n "${QEMU_BIOS}" ]; then
|
if [ -n "${QEMU_BIOS}" ]; then
|
||||||
qemuArgs+=(
|
qemuArgs+=(
|
||||||
-bios "${QEMU_BIOS}"
|
-bios "${QEMU_BIOS}"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user