summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2010-01-13 16:31:21 +0000
committerJoshua Lock <josh@linux.intel.com>2010-03-17 12:22:52 +0000
commiteddcc607c955c28e49716feb371b1fbd82262aa1 (patch)
treef5a61306ffb7453750c4c50a359aa55c76029b22
parentb82067c8e71d6284e503bae32c6ce2316fce08a1 (diff)
downloadpoky-eddcc607c955c28e49716feb371b1fbd82262aa1.tar.gz
scripts/runqemu: Fix some typos
Fix typo in help message (we default to ext3 not ext2 now) and a typo whereby moblin-image-sdk wouldn't be autofound. Signed-off-by: Joshua Lock <josh@linux.intel.com>
-rwxr-xr-xscripts/runqemu4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index eaee811187..2bd9d7736d 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -30,7 +30,7 @@ if [ "x$1" = "x" ]; then
30 echo "Run as $0 MACHINE IMAGETYPE ZIMAGE IMAGEFILE" 30 echo "Run as $0 MACHINE IMAGETYPE ZIMAGE IMAGEFILE"
31 echo "where:" 31 echo "where:"
32 echo " MACHINE - the machine to emulate (qemuarm, qemux86)" 32 echo " MACHINE - the machine to emulate (qemuarm, qemux86)"
33 echo " IMAGETYPE - the type of image to run (ext2, nfs) (default: ext2)" 33 echo " IMAGETYPE - the type of image to run (ext3, nfs) (default: ext3)"
34 echo " ZIMAGE - the kernel to use (optional)" 34 echo " ZIMAGE - the kernel to use (optional)"
35 echo " IMAGEFILE - the image file/location to use (optional)" 35 echo " IMAGEFILE - the image file/location to use (optional)"
36 exit 1 36 exit 1
@@ -134,7 +134,7 @@ if [ "$MACHINE" = "qemux86" ]; then
134 if [ "$TYPE" = "ext3" ]; then 134 if [ "$TYPE" = "ext3" ]; then
135 if [ "x$HDIMAGE" = "x" ]; then 135 if [ "x$HDIMAGE" = "x" ]; then
136 T=$BUILDDIR/tmp/deploy/images 136 T=$BUILDDIR/tmp/deploy/images
137 findimage $T qemux86 ext3 "molbin-image-sdk moblin-image-netbook poky-image-sdk poky-image-sato poky-image-minimal" 137 findimage $T qemux86 ext3 "moblin-image-sdk moblin-image-netbook poky-image-sdk poky-image-sato poky-image-minimal"
138 fi 138 fi
139 fi 139 fi
140 CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux/bin 140 CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux/bin