summaryrefslogtreecommitdiffstats
path: root/scripts
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 23:20:12 +0100
commitc093f7c62318c04fb6530ec7c489cc7d5aafb827 (patch)
treee6c8ff98f14913ee58d7e273300707a9a50b9512 /scripts
parentf1f9f891a41b14bf04acf288b7f4d66d4fda6600 (diff)
downloadpoky-c093f7c62318c04fb6530ec7c489cc7d5aafb827.tar.gz
runqemu: fix for iso
It should be the similar type as hddimg, rather than ext234 or btrfs. (From OE-Core rev: d5ddc5ec1628c94bd5edc45bc821da1ce616e80f) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-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
125 [ -z "$MACHINE" -o "$MACHINE" = "$arg" ] && MACHINE=$arg || \ 125 [ -z "$MACHINE" -o "$MACHINE" = "$arg" ] && MACHINE=$arg || \
126 error "conflicting MACHINE types [$MACHINE] and [$arg]" 126 error "conflicting MACHINE types [$MACHINE] and [$arg]"
127 ;; 127 ;;
128 "ext"[234] | "jffs2" | "nfs" | "btrfs" | "iso") 128 "ext"[234] | "jffs2" | "nfs" | "btrfs")
129 check_fstype_conflicts $arg 129 check_fstype_conflicts $arg
130 ;; 130 ;;
131 "hddimg" | "hdddirect" | "wic" | "vmdk" | "qcow2" | "vdi") 131 "hddimg" | "hdddirect" | "wic" | "vmdk" | "qcow2" | "vdi" | "iso")
132 check_fstype_conflicts $arg 132 check_fstype_conflicts $arg
133 IS_VM="true" 133 IS_VM="true"
134 ;; 134 ;;