aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/runqemu
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-01-09 14:14:12 +0000
committerRichard Purdie <richard@openedhand.com>2008-01-09 14:14:12 +0000
commit4a7acb65f6fb783a5a40a7fec606795280cbf1fe (patch)
tree6d53a8e306e6430d1d2f99dc520f3db627a60c8a /scripts/runqemu
parent0f1ddc5c32e59065c1b21e04743c6771b2f8ea33 (diff)
downloadopenembedded-core-contrib-4a7acb65f6fb783a5a40a7fec606795280cbf1fe.tar.gz
scripts: Various tweaks/fixes for the qemu scripts
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3440 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-xscripts/runqemu8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index d3df26c48a..bc40b46745 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -62,7 +62,7 @@ if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "spitz" -o "$MACHINE" = "borzoi" -o
if [ "x$ZIMAGE" = "x" ]; then
ZIMAGE=$BUILDDIR/tmp/deploy/images/zImage-$MACHINE.bin
fi
- CROSSPATH=$BUILDDIR/tmp/cross/arm-poky-linux/bin
+ CROSSPATH=$BUILDDIR/tmp/cross/arm-poky-linux-gnueabi/bin
fi
if [ "$MACHINE" = "qemuarm" ]; then
@@ -73,6 +73,8 @@ if [ "$MACHINE" = "qemuarm" ]; then
HDIMAGE="$T-sdk-qemuarm.ext2"
elif [ -e "$T-sato-qemuarm.ext2" ]; then
HDIMAGE="$T-sato-qemuarm.ext2"
+ elif [ -e "$T-minimal-qemuarm.ext2" ]; then
+ HDIMAGE="$T-minimal-qemuarm.ext2"
fi
fi
fi
@@ -105,10 +107,12 @@ if [ "$MACHINE" = "qemux86" ]; then
HDIMAGE=$T-sdk-qemux86.ext2
elif [ -e "$T-sato-qemux86.ext2" ]; then
HDIMAGE=$T-sato-qemux86.ext2
+ elif [ -e "$T-minimal-qemux86.ext2" ]; then
+ HDIMAGE=$T-minimal-qemux86.ext2
fi
fi
fi
- CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux/bin
+ CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux-gnueabi/bin
fi
export PATH=$CROSSPATH:$PATH