From c2f71a86f5eb040932adf695887a1885d760f536 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 22 Jul 2010 13:14:24 +0100 Subject: poky-env-internal/runqemu: Move BUILD_SYS handling which is runqemu specific into runqemu Signed-off-by: Richard Purdie --- scripts/runqemu | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scripts/runqemu') diff --git a/scripts/runqemu b/scripts/runqemu index 82fc4e93b7..c45b2a1c86 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -23,9 +23,13 @@ if [ "x$BUILDDIR" = "x" ]; then type -P bitbake &>/dev/null || { echo "You either need bitbake in your PATH or to source poky-init-build-env before running this script" >&2; exit 1; } - # we have bitbake in PATH, get TMPDIR from the environment + # we have bitbake in PATH, get TMPDIR and BUILD_SYS from the environment TMPDIR=`bitbake -e | grep TMPDIR=\" | cut -d '=' -f2 | cut -d '"' -f2` + BUILD_SYS=`bitbake -e | grep BUILD_SYS=\" | cut -d '=' -f2 | cut -d '"' -f2` else + BUILD_ARCH=`uname -m` + BUILD_OS=`uname | tr '[A-Z]' '[a-z]'` + BUILD_SYS="$BUILD_ARCH-$BUILD_OS" TMPDIR=$BUILDDIR/tmp fi -- cgit v1.2.3-54-g00ecf