summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-xscripts/runqemu3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 46918e2af5..4bb3bb61ec 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -40,6 +40,7 @@ usage() {
40 echo "Examples:" 40 echo "Examples:"
41 echo " $MYNAME qemuarm" 41 echo " $MYNAME qemuarm"
42 echo " $MYNAME qemux86-64 core-image-sato ext4" 42 echo " $MYNAME qemux86-64 core-image-sato ext4"
43 echo " $MYNAME qemux86-64 wic-image-minimal wic"
43 echo " $MYNAME path/to/bzImage-qemux86.bin path/to/nfsrootdir/ serial" 44 echo " $MYNAME path/to/bzImage-qemux86.bin path/to/nfsrootdir/ serial"
44 echo " $MYNAME qemux86 ramfs" 45 echo " $MYNAME qemux86 ramfs"
45 echo " $MYNAME qemux86 iso" 46 echo " $MYNAME qemux86 iso"
@@ -116,7 +117,7 @@ while true; do
116 [ -z "$MACHINE" -o "$MACHINE" = "$arg" ] && MACHINE=$arg || \ 117 [ -z "$MACHINE" -o "$MACHINE" = "$arg" ] && MACHINE=$arg || \
117 error "conflicting MACHINE types [$MACHINE] and [$arg]" 118 error "conflicting MACHINE types [$MACHINE] and [$arg]"
118 ;; 119 ;;
119 "ext2" | "ext3" | "ext4" | "jffs2" | "nfs" | "btrfs" | "hddimg" | "hdddirect" ) 120 "ext2" | "ext3" | "ext4" | "jffs2" | "nfs" | "btrfs" | "hddimg" | "hdddirect" | "wic" )
120 [ -z "$FSTYPE" -o "$FSTYPE" = "$arg" ] && FSTYPE=$arg || \ 121 [ -z "$FSTYPE" -o "$FSTYPE" = "$arg" ] && FSTYPE=$arg || \
121 error "conflicting FSTYPE types [$FSTYPE] and [$arg]" 122 error "conflicting FSTYPE types [$FSTYPE] and [$arg]"
122 ;; 123 ;;