# simple example of QEMU Linux launch without BIOS

# if you want to avoid to many disk access, use the filesystem tmpfs
# and make vl use it for its temporary memory file:
# export QEMU_TMPDIR=/tmpfsdir
#
# if you don't want to modify the image, you can use the option
# '-snapshot'.

if [[ ! -f bbc-2.1.iso ]]; then
    echo "Please download bbc-2.1.iso from http://lnx-bbc.org/"
    exit 1
fi

../bin/qemu -cdrom bbc-2.1.iso -user-net
