#!/bin/bash

# Create the QEMU disk image - the emulated storage.
#
#
## Change log ########################################
# 28-May-2020
# * Tested with qemu-4.1.0
# * Ready for Slackware ARM 15.0 release
######################################################
IMG=hda.qcow2
SIZE=15G

rm -f $IMG
qemu-img \
   create \
   -f qcow2 \
   $IMG $SIZE
