aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/runqemu
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2016-03-29 00:55:01 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-29 12:59:27 +0100
commitd5ddc5ec1628c94bd5edc45bc821da1ce616e80f (patch)
tree44fecc1f74630dbd5ce11dd2cfeda07d0d606eae /scripts/runqemu
parentba918e0e36418ec6e14aef537ff4fdf45af6d8d4 (diff)
downloadopenembedded-core-d5ddc5ec1628c94bd5edc45bc821da1ce616e80f.tar.gz
runqemu: fix for iso
It should be the similar type as hddimg, rather than ext234 or btrfs. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-xscripts/runqemu4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index ab7c4f3d05..49ccd1870b 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -125,10 +125,10 @@ while true; do
[ -z "$MACHINE" -o "$MACHINE" = "$arg" ] && MACHINE=$arg || \
error "conflicting MACHINE types [$MACHINE] and [$arg]"
;;
- "ext"[234] | "jffs2" | "nfs" | "btrfs" | "iso")
+ "ext"[234] | "jffs2" | "nfs" | "btrfs")
check_fstype_conflicts $arg
;;
- "hddimg" | "hdddirect" | "wic" | "vmdk" | "qcow2" | "vdi")
+ "hddimg" | "hdddirect" | "wic" | "vmdk" | "qcow2" | "vdi" | "iso")
check_fstype_conflicts $arg
IS_VM="true"
;;