2017-12-27 17:08:03 +01:00
|
|
|
#!/bin/bash
|
2017-12-31 22:58:55 +01:00
|
|
|
##############################################################################
|
|
|
|
# parabola-arm-imagebuilder #
|
|
|
|
# #
|
|
|
|
# Copyright (C) 2017 Andreas Grapentin #
|
|
|
|
# #
|
|
|
|
# This program is free software: you can redistribute it and/or modify #
|
|
|
|
# it under the terms of the GNU General Public License as published by #
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or #
|
|
|
|
# (at your option) any later version. #
|
|
|
|
# #
|
|
|
|
# This program is distributed in the hope that it will be useful, #
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
|
|
# GNU General Public License for more details. #
|
|
|
|
# #
|
|
|
|
# You should have received a copy of the GNU General Public License #
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
|
|
|
##############################################################################
|
2017-12-27 17:08:03 +01:00
|
|
|
|
2017-12-28 16:09:01 +01:00
|
|
|
set -eu
|
2017-12-27 17:08:03 +01:00
|
|
|
|
2017-12-28 16:09:01 +01:00
|
|
|
_builddir=build
|
|
|
|
mkdir -p $_builddir
|
|
|
|
|
|
|
|
_imagefile=$1
|
|
|
|
_pidfile=$_builddir/qemu.pid
|
|
|
|
|
|
|
|
_loopdev=$(sudo losetup -f --show $_imagefile)
|
2017-12-27 17:08:03 +01:00
|
|
|
_bootdir=.boot
|
|
|
|
|
2017-12-28 16:09:01 +01:00
|
|
|
# register a cleanup error handler
|
2017-12-27 17:08:03 +01:00
|
|
|
function cleanup {
|
2017-12-28 16:09:01 +01:00
|
|
|
test -f $_pidfile && (sudo kill -9 $(cat $_pidfile) || true)
|
|
|
|
rm -f $_pidfile
|
2017-12-27 17:08:03 +01:00
|
|
|
sudo umount ${_loopdev}p1
|
|
|
|
sudo losetup -d $_loopdev
|
|
|
|
rm -rf $_bootdir
|
|
|
|
}
|
2017-12-28 16:09:01 +01:00
|
|
|
trap cleanup ERR
|
2017-12-27 17:08:03 +01:00
|
|
|
|
2017-12-28 16:09:01 +01:00
|
|
|
# start the VM
|
2017-12-27 17:08:03 +01:00
|
|
|
mkdir -p $_bootdir
|
|
|
|
sudo mount ${_loopdev}p1 $_bootdir
|
2017-12-28 16:09:01 +01:00
|
|
|
QEMU_AUDIO_DRV=none qemu-system-arm \
|
2017-12-27 17:08:03 +01:00
|
|
|
-M vexpress-a9 \
|
2017-12-28 16:09:01 +01:00
|
|
|
-m 1G \
|
2017-12-27 17:08:03 +01:00
|
|
|
-dtb $_bootdir/dtbs/vexpress-v2p-ca9.dtb \
|
|
|
|
-kernel $_bootdir/zImage \
|
|
|
|
--append "root=/dev/mmcblk0p2 rw roottype=ext4 console=ttyAMA0" \
|
2017-12-28 16:09:01 +01:00
|
|
|
-drive if=sd,driver=raw,cache=writeback,file=$_imagefile \
|
|
|
|
-display none \
|
|
|
|
-net user,hostfwd=tcp::2022-:22 \
|
|
|
|
-net nic \
|
|
|
|
-daemonize \
|
|
|
|
-snapshot \
|
|
|
|
-pidfile $_pidfile
|
|
|
|
|
|
|
|
# wait for ssh to be up
|
|
|
|
_sshopts="-o StrictHostKeyChecking=no -o ConnectTimeout=5"
|
|
|
|
while ! ssh -p 2022 -i keys/id_rsa root@localhost $_sshopts true 2>/dev/null; do
|
|
|
|
echo -n . && sleep 5
|
|
|
|
done && echo
|
|
|
|
|
|
|
|
# open a session
|
2017-12-29 13:33:41 +01:00
|
|
|
ssh -p 2022 -i keys/id_rsa parabola@localhost
|
2017-12-28 16:09:01 +01:00
|
|
|
|
|
|
|
# shutdown the VM
|
|
|
|
ssh -p 2022 -i keys/id_rsa root@localhost "nohup shutdown -h now &>/dev/null & exit"
|
|
|
|
while sudo kill -0 $(cat $_pidfile) 2> /dev/null; do echo -n . && sleep 5; done && echo
|
|
|
|
rm -f $_pidfile
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
sudo umount ${_loopdev}p1
|
|
|
|
sudo losetup -d $_loopdev
|
|
|
|
rm -rf $_bootdir
|