mkimage: check for mkfs.xxx after setting defaults.

This commit is contained in:
Juan RP 2013-11-11 10:09:00 +01:00
parent 2c846d9f4c
commit adf32efa6b
1 changed files with 6 additions and 6 deletions

View File

@ -85,12 +85,6 @@ if [ "$(id -u)" -ne 0 ]; then
die "need root perms to continue, exiting."
fi
for f in parted mkfs.${BOOT_FSTYPE} mkfs.${ROOT_FSTYPE}; do
if ! which ${f} >/dev/null; then
die "Cannot find ${f}, exiting."
fi
done
IMGSIZE="$2"
if [ -z "$IMGSIZE" ]; then
IMGSIZE="2G"
@ -108,6 +102,12 @@ if [ -z "$FILENAME" ]; then
FILENAME="void-image-$(date +%Y%m%d).img"
fi
for f in parted mkfs.${BOOT_FSTYPE} mkfs.${ROOT_FSTYPE}; do
if ! which ${f} >/dev/null; then
die "Cannot find ${f}, exiting."
fi
done
info_msg "Creating disk image ($IMGSIZE) ..."
dd if=/dev/zero of=$FILENAME bs=$IMGSIZE count=1 conv=sparse >/dev/null 2>&1