docker-qemu/start-qemu

95 lines
2.2 KiB
Plaintext
Raw Normal View History

2014-09-20 07:00:11 +00:00
#!/bin/bash
set -e
# main available options:
# QEMU_CPU=n (cores)
# QEMU_RAM=nnn (megabytes)
# QEMU_HDA (filename)
# QEMU_HDA_SIZE (bytes, suffixes like "G" allowed)
# QEMU_CDROM (filename)
2015-07-15 17:19:46 +00:00
# QEMU_BOOT (-boot)
# QEMU_PORTS="xxx[ xxx ...]" (space separated port numbers)
# QEMU_NET_USER_EXTRA="net=192.168.76.0/24,dhcpstart=192.168.76.9" (extra raw args for "-net user,...")
# QEMU_NO_SSH=1 (suppress automatic port 22 forwarding)
# QEMU_NO_SERIAL=1 (suppress automatic "-serial stdio")
2014-09-20 07:00:11 +00:00
hostArch="$(uname -m)"
qemuArch="${QEMU_ARCH:-$hostArch}"
qemu="${QEMU_BIN:-qemu-system-$qemuArch}"
qemuArgs=()
qemuPorts=()
if [ -z "${QEMU_NO_SSH:-}" ]; then
qemuPorts+=( 22 )
fi
qemuPorts+=( ${QEMU_PORTS:-} )
2014-09-20 07:00:11 +00:00
if [ -e /dev/kvm ]; then
qemuArgs+=( -enable-kvm )
elif [ "$hostArch" = "$qemuArch" ]; then
echo >&2
echo >&2 'warning: /dev/kvm not found'
echo >&2 ' PERFORMANCE WILL SUFFER'
echo >&2 ' (hint: docker run --device /dev/kvm ...)'
echo >&2
sleep 3
fi
qemuArgs+=( -smp "${QEMU_CPU:-1}" )
qemuArgs+=( -m "${QEMU_RAM:-512}" )
if [ -n "${QEMU_HDA:-}" ]; then
2014-09-20 07:00:11 +00:00
if [ ! -f "$QEMU_HDA" -o ! -s "$QEMU_HDA" ]; then
2014-09-20 07:24:50 +00:00
(
set -x
qemu-img create -f qcow2 -o preallocation=off "$QEMU_HDA" "${QEMU_HDA_SIZE:-8G}"
)
2014-09-20 07:00:11 +00:00
fi
2015-11-04 05:52:13 +00:00
# http://wiki.qemu.org/download/qemu-doc.html#Invocation
#qemuArgs+=( -hda "$QEMU_HDA" )
#qemuArgs+=( -drive file="$QEMU_HDA",index=0,media=disk,discard=unmap )
qemuArgs+=(
-drive file=arm32v7.qcow2,index=0,media=disk,discard=unmap,detect-zeroes=unmap,if=none,id=hda
-device virtio-scsi-device
-device scsi-hd,drive=hda
)
2014-09-20 07:00:11 +00:00
fi
if [ -n "${QEMU_CDROM:-}" ]; then
2014-09-20 07:00:11 +00:00
qemuArgs+=( -cdrom "$QEMU_CDROM" )
fi
if [ -n "${QEMU_BOOT:-}" ]; then
2015-07-15 17:19:46 +00:00
qemuArgs+=( -boot "$QEMU_BOOT" )
fi
netArg='user'
netArg+=",hostname=$(hostname)"
if [ -n "${QEMU_NET_USER_EXTRA:-}" ]; then
netArg+=",$QEMU_NET_USER_EXTRA"
fi
for port in "${qemuPorts[@]}"; do
netArg+=",hostfwd=tcp::$port-:$port"
netArg+=",hostfwd=udp::$port-:$port"
done
qemuNetDevice='virtio-net-pci'
case "$qemuArch" in
arm) qemuNetDevice='virtio-net-device' ;;
esac
2014-09-20 07:00:11 +00:00
qemuArgs+=(
-netdev "$netArg,id=net"
-device "$qemuNetDevice,netdev=net"
2014-09-20 07:00:11 +00:00
-vnc ':0'
)
if [ -z "${QEMU_NO_SERIAL:-}" ]; then
qemuArgs+=(
-serial stdio
)
fi
qemuArgs+=( "$@" )
2014-09-20 07:00:11 +00:00
set -x
exec "$qemu" "${qemuArgs[@]}"