]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/runqemu: Fix some typos
authorJoshua Lock <josh@linux.intel.com>
Wed, 13 Jan 2010 16:31:21 +0000 (16:31 +0000)
committerJoshua Lock <josh@linux.intel.com>
Thu, 14 Jan 2010 13:42:16 +0000 (13:42 +0000)
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>
scripts/runqemu

index 225c53c0cf801b10891e024dec808e4ca0450313..ff3c3045ad092d89faac0d0e897c4d647b0fd479 100755 (executable)
@@ -30,7 +30,7 @@ if [ "x$1" = "x" ]; then
     echo "Run as $0 MACHINE IMAGETYPE ZIMAGE IMAGEFILE"
     echo "where:"
     echo "  MACHINE - the machine to emulate (qemuarm, qemux86)"
-    echo "  IMAGETYPE - the type of image to run (ext2, nfs) (default: ext2)"
+    echo "  IMAGETYPE - the type of image to run (ext3, nfs) (default: ext3)"
     echo "  ZIMAGE - the kernel to use (optional)"
     echo "  IMAGEFILE - the image file/location to use (optional)"
     exit 1
@@ -134,7 +134,7 @@ if [ "$MACHINE" = "qemux86" ]; then
     if [ "$TYPE" = "ext3" ]; then
         if [ "x$HDIMAGE" = "x" ]; then
             T=$BUILDDIR/tmp/deploy/images
-            findimage $T qemux86 ext3 "molbin-image-sdk moblin-image-netbook poky-image-sdk poky-image-sato poky-image-minimal"
+            findimage $T qemux86 ext3 "moblin-image-sdk moblin-image-netbook poky-image-sdk poky-image-sato poky-image-minimal"
         fi
     fi
     CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux/bin