lucicos/qemu.sh

10 lines
205 B
Bash
Raw Normal View History

#!/bin/sh
set -e
. ./iso.sh
2022-06-28 16:40:51 +00:00
if [ "$1" = "debug" ]; then
qemu-system-$(./target-triplet-to-arch.sh $HOST) -s -S -cdrom os.iso
else
qemu-system-$(./target-triplet-to-arch.sh $HOST) -cdrom os.iso
fi