mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 23:39:40 +01:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
f1f9f891a4
commit
c093f7c623
@@ -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"
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user