summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-07-17 13:25:31 +0000
committerRichard Purdie <richard@openedhand.com>2007-07-17 13:25:31 +0000
commit58184103e4b1785a7f743e9d3ea93aebce67e4b6 (patch)
tree4971c63e46b17ad3ce265d1bfaef76dfd739ef7d /scripts
parent3f450bf49ae92ad5feca23294e062423752850d6 (diff)
downloadopenembedded-core-58184103e4b1785a7f743e9d3ea93aebce67e4b6.tar.gz
runqemu: Fix image names
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2193 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu18
1 files changed, 9 insertions, 9 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index aa796fbd5d..04d86e5187 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -68,11 +68,11 @@ fi
if [ "$MACHINE" = "qemuarm" ]; then
if [ "$TYPE" = "ext2" ]; then
if [ "x$HDIMAGE" = "x" ]; then
- T=$BUILDDIR/tmp/deploy/images/poky-image-
+ T=$BUILDDIR/tmp/deploy/images/poky-image
if [ -e "$T-sdk-qemuarm.ext2" ]; then
- HDIMAGE=$T-sdk-qemuarm.ext2
- elif [ -e "$T-pda-qemuarm.ext2" ]; then
- HDIMAGE=$T-pda-qemuarm.ext2
+ HDIMAGE="$T-sdk-qemuarm.ext2"
+ elif [ -e "$T-sato-qemuarm.ext2" ]; then
+ HDIMAGE="$T-sato-qemuarm.ext2"
fi
fi
fi
@@ -81,7 +81,7 @@ fi
if [ "$MACHINE" = "spitz" ]; then
if [ "$TYPE" = "ext3" ]; then
if [ "x$HDIMAGE" = "x" ]; then
- HDIMAGE=$BUILDDIR/tmp/deploy/images/poky-image-pda-spitz.ext3
+ HDIMAGE=$BUILDDIR/tmp/deploy/images/poky-image-sato-spitz.ext3
fi
fi
fi
@@ -89,7 +89,7 @@ fi
if [ "$MACHINE" = "akita" ]; then
if [ "$TYPE" = "jffs2" ]; then
if [ "x$HDIMAGE" = "x" ]; then
- HDIMAGE=$BUILDDIR/tmp/deploy/images/poky-image-pda-akita.jffs2
+ HDIMAGE=$BUILDDIR/tmp/deploy/images/poky-image-sato-akita.jffs2
fi
fi
fi
@@ -100,11 +100,11 @@ if [ "$MACHINE" = "qemux86" ]; then
fi
if [ "$TYPE" = "ext2" ]; then
if [ "x$HDIMAGE" = "x" ]; then
- T=$BUILDDIR/tmp/deploy/images/poky-image-
+ T=$BUILDDIR/tmp/deploy/images/poky-image
if [ -e "$T-sdk-qemux86.ext2" ]; then
HDIMAGE=$T-sdk-qemux86.ext2
- elif [ -e "$T-pda-qemux86.ext2" ]; then
- HDIMAGE=$T-pda-qemux86.ext2
+ elif [ -e "$T-sato-qemux86.ext2" ]; then
+ HDIMAGE=$T-sato-qemux86.ext2
fi
fi
fi