From: Robert Yang Date: Tue, 29 Mar 2016 07:55:01 +0000 (-0700) Subject: runqemu: fix for iso X-Git-Tag: 2016-4~242 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d5ddc5ec1628c94bd5edc45bc821da1ce616e80f;p=openembedded-core.git runqemu: fix for iso It should be the similar type as hddimg, rather than ext234 or btrfs. Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- 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" ;;