[oe-commits] [openembedded-core] 06/11: runqemu: fix for iso

git at git.openembedded.org git at git.openembedded.org
Tue Mar 29 12:01:37 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit d5ddc5ec1628c94bd5edc45bc821da1ce616e80f
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Tue Mar 29 00:55:01 2016 -0700

    runqemu: fix for iso
    
    It should be the similar type as hddimg, rather than ext234 or btrfs.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/runqemu | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index ab7c4f3..49ccd18 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"
             ;;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list