Correct order of parameters in call to qemu-img convert

Under some systems this leads to an error if the oder of parameters
does not comply exactly with the way it is specified.

Change-Id: I9561b85985e3f0917f1b4c7801c9048b4e73ae3b
This commit is contained in:
Jonas Sticha 2016-05-12 17:44:04 +02:00
parent 71c68bf18d
commit 224acc6456
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ function compress_and_save_image () {
OUT_IMAGE_PATH=$1-new
else
echo "Converting image using qemu-img convert"
qemu-img convert ${COMPRESS_IMAGE:+-c} -f raw $TMP_IMAGE_PATH -O $IMAGE_TYPE $EXTRA_OPTIONS $1-new
qemu-img convert ${COMPRESS_IMAGE:+-c} -f raw -O $IMAGE_TYPE $EXTRA_OPTIONS $TMP_IMAGE_PATH $1-new
fi
OUT_IMAGE_PATH=$1-new