nilmbuntu/run.sh

66 lines
1.1 KiB
Bash
Raw Permalink Normal View History

2013-08-17 22:28:49 -04:00
#!/bin/bash
# try to boot the ISO in qemu
. config || exit 0
usage() {
cat <<EOF
usage: $0 [-i iso] <-c | -d>
-c Make an empty disk image and boot from CD
-d Boot the disk image
-i Path to iso
EOF
exit 0
}
boot=""
iso="${OUTPUT}"
while getopts cdi: flag; do
case $flag in
c)
boot="c$boot"
;;
d)
boot="d$boot"
;;
i)
iso="$OPTARG"
;;
?)
usage
;;
esac
done
case $boot in
?)
;;
*)
usage
;;
esac
set -e
set -x
cfg=""
2013-08-17 22:28:49 -04:00
case $boot in
c)
echo "booting CD with empty disk"
2013-08-18 23:33:33 -04:00
rm -f ${DISK}
2013-08-17 22:28:49 -04:00
dd if=/dev/zero "of=${DISK}" bs=1M count=0 seek=10240
cfg+=" -drive file=${iso},index=1,media=cdrom"
cfg+=" -drive file=${DISK},index=0,media=disk,format=raw"
cfg+=" -boot d"
2013-08-17 22:28:49 -04:00
;;
d)
echo "booting disk with no CD"
cfg+=" -drive file=${DISK},index=0,media=disk,format=raw"
cfg+=" -boot c"
2013-08-17 22:28:49 -04:00
;;
esac
2016-06-28 13:18:21 -04:00
qemu-system-x86_64 -enable-kvm -m 2048 -vga vmware $cfg