2018-11-04 19:34:40 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-11-23 16:40:17 +00:00
|
|
|
set -eu
|
|
|
|
|
2019-03-25 13:21:55 +00:00
|
|
|
: "${DEFAULT_DIST:=unstable}"
|
2018-12-28 06:44:54 +00:00
|
|
|
: "${cachedir:=./shared/cache}"
|
2018-11-23 16:44:59 +00:00
|
|
|
tmpdir="$(mktemp -d)"
|
2018-11-04 19:34:40 +00:00
|
|
|
|
2018-12-27 13:14:01 +00:00
|
|
|
cleanup() {
|
|
|
|
rv=$?
|
2019-03-25 13:21:55 +00:00
|
|
|
rm -f "$tmpdir/debian-$DEFAULT_DIST-overlay.qcow"
|
2020-11-26 22:45:08 +00:00
|
|
|
rm -f "$tmpdir/log"
|
2018-12-27 13:14:01 +00:00
|
|
|
[ -e "$tmpdir" ] && rmdir "$tmpdir"
|
|
|
|
if [ -e shared/result.txt ]; then
|
|
|
|
head --lines=-1 shared/result.txt
|
|
|
|
res="$(tail --lines=1 shared/result.txt)"
|
|
|
|
rm shared/result.txt
|
2018-12-30 16:13:46 +00:00
|
|
|
if [ "$res" != "0" ]; then
|
2018-12-27 13:14:01 +00:00
|
|
|
# this might possibly overwrite another non-zero rv
|
|
|
|
rv=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
exit $rv
|
|
|
|
}
|
|
|
|
|
|
|
|
trap cleanup INT TERM EXIT
|
|
|
|
|
2019-03-25 13:21:55 +00:00
|
|
|
# the path to debian-$DEFAULT_DIST.qcow must be absolute or otherwise qemu will
|
|
|
|
# look for the path relative to debian-$DEFAULT_DIST-overlay.qcow
|
2020-11-26 22:44:42 +00:00
|
|
|
qemu-img create -f qcow2 -b "$(realpath $cachedir)/debian-$DEFAULT_DIST.qcow" -F qcow2 "$tmpdir/debian-$DEFAULT_DIST-overlay.qcow"
|
2018-12-30 16:14:15 +00:00
|
|
|
# to connect to serial use:
|
|
|
|
# minicom -D 'unix#/tmp/ttyS0'
|
2020-11-26 22:45:08 +00:00
|
|
|
ret=0
|
|
|
|
timeout 20m qemu-system-x86_64 \
|
2020-01-03 14:52:25 +00:00
|
|
|
-no-user-config \
|
|
|
|
-M accel=kvm:tcg -m 1G -nographic \
|
2020-01-03 14:56:49 +00:00
|
|
|
-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0 \
|
2018-11-04 19:34:40 +00:00
|
|
|
-monitor unix:/tmp/monitor,server,nowait \
|
|
|
|
-serial unix:/tmp/ttyS0,server,nowait \
|
|
|
|
-serial unix:/tmp/ttyS1,server,nowait \
|
2020-01-03 14:56:25 +00:00
|
|
|
-net nic,model=virtio -net user \
|
2018-11-04 19:34:40 +00:00
|
|
|
-virtfs local,id=mmdebstrap,path="$(pwd)/shared",security_model=none,mount_tag=mmdebstrap \
|
2020-11-26 22:45:08 +00:00
|
|
|
-drive file="$tmpdir/debian-$DEFAULT_DIST-overlay.qcow",cache=unsafe,index=0,if=virtio \
|
|
|
|
>"$tmpdir/log" 2>&1 || ret=$?
|
|
|
|
if [ "$ret" -ne 0 ]; then
|
|
|
|
cat "$tmpdir/log"
|
|
|
|
exit $ret
|
|
|
|
fi
|