summaryrefslogtreecommitdiffstats
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)
downloadpoky-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
62 if [ "x$ZIMAGE" = "x" ]; then 62 if [ "x$ZIMAGE" = "x" ]; then
63 ZIMAGE=$BUILDDIR/tmp/deploy/images/zImage-$MACHINE.bin 63 ZIMAGE=$BUILDDIR/tmp/deploy/images/zImage-$MACHINE.bin
64 fi 64 fi
65 CROSSPATH=$BUILDDIR/tmp/cross/arm-poky-linux/bin 65 CROSSPATH=$BUILDDIR/tmp/cross/arm-poky-linux-gnueabi/bin
66fi 66fi
67 67
68if [ "$MACHINE" = "qemuarm" ]; then 68if [ "$MACHINE" = "qemuarm" ]; then
@@ -73,6 +73,8 @@ if [ "$MACHINE" = "qemuarm" ]; then
73 HDIMAGE="$T-sdk-qemuarm.ext2" 73 HDIMAGE="$T-sdk-qemuarm.ext2"
74 elif [ -e "$T-sato-qemuarm.ext2" ]; then 74 elif [ -e "$T-sato-qemuarm.ext2" ]; then
75 HDIMAGE="$T-sato-qemuarm.ext2" 75 HDIMAGE="$T-sato-qemuarm.ext2"
76 elif [ -e "$T-minimal-qemuarm.ext2" ]; then
77 HDIMAGE="$T-minimal-qemuarm.ext2"
76 fi 78 fi
77 fi 79 fi
78 fi 80 fi
@@ -105,10 +107,12 @@ if [ "$MACHINE" = "qemux86" ]; then
105 HDIMAGE=$T-sdk-qemux86.ext2 107 HDIMAGE=$T-sdk-qemux86.ext2
106 elif [ -e "$T-sato-qemux86.ext2" ]; then 108 elif [ -e "$T-sato-qemux86.ext2" ]; then
107 HDIMAGE=$T-sato-qemux86.ext2 109 HDIMAGE=$T-sato-qemux86.ext2
110 elif [ -e "$T-minimal-qemux86.ext2" ]; then
111 HDIMAGE=$T-minimal-qemux86.ext2
108 fi 112 fi
109 fi 113 fi
110 fi 114 fi
111 CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux/bin 115 CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux-gnueabi/bin
112fi 116fi
113 117
114export PATH=$CROSSPATH:$PATH 118export PATH=$CROSSPATH:$PATH