summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu
diff options
context:
space:
mode:
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