[oe-commits] Khem Raj : runqemu: Explicitly specify MACHINE when calling bitbake

git at git.openembedded.org git at git.openembedded.org
Fri Sep 14 08:56:59 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: 5c3fec058a2d370fbb625901ca1822ce04927ac2
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=5c3fec058a2d370fbb625901ca1822ce04927ac2

Author: Khem Raj <raj.khem at gmail.com>
Date:   Tue Sep 11 22:59:14 2012 -0700

runqemu: Explicitly specify MACHINE when calling bitbake

When using runqemu with distros outside oe-core then
MACHINE may not be there in local.conf so use the one
thats available in environment of runqemu which is actually
the correct one.

Signed-off-by: Khem Raj <raj.khem at gmail.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 scripts/runqemu |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index a3c3509..e843946 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -281,7 +281,7 @@ setup_tmpdir() {
             exit 1; }
 
         # We have bitbake in PATH, get OE_TMPDIR from bitbake
-        OE_TMPDIR=`bitbake -e | grep ^TMPDIR=\" | cut -d '=' -f2 | cut -d '"' -f2`
+        OE_TMPDIR=`MACHINE=$MACHINE bitbake -e | grep ^TMPDIR=\" | cut -d '=' -f2 | cut -d '"' -f2`
         if [ -z "$OE_TMPDIR" ]; then
             echo "Error: this script needs to be run from your build directory,"
             echo "or you need to explicitly set OE_TMPDIR in your environment"





More information about the Openembedded-commits mailing list