summaryrefslogtreecommitdiffstats
path: root/scripts/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/bitbake')
-rwxr-xr-xscripts/bitbake25
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/bitbake b/scripts/bitbake
new file mode 100755
index 0000000000..2c03314e0b
--- /dev/null
+++ b/scripts/bitbake
@@ -0,0 +1,25 @@
1#!/bin/sh
2OLDPATH=$PATH
3export PATH=`echo $PATH | sed s#[^:]*/scripts:##`
4if [ ! -e "$BUILDDIR/pseudodone" ]; then
5 echo "Pseudo has not been built, building this first before the main build"
6 bitbake pseudo-native
7 ret=$?
8 if [ "$ret" != "0" ]; then
9 exit 1
10 fi
11 PSEUDOBINDIR=`bitbake -e | grep STAGING_BINDIR_NATIVE=\" | cut -d '=' -f2 | cut -d '"' -f2`
12 ret=$?
13 if [ "$ret" != "0" ]; then
14 exit 1
15 fi
16 echo $PSEUDOBINDIR > $BUILDDIR/pseudodone
17 # This needs to exist in case pseudo has to log somewhere
18 mkdir -p $PSEUDOBINDIR/../../var/pseudo
19fi
20BITBAKE=`which bitbake`
21export PATH=$OLDPATH
22PSEUDOBINDIR=`cat $BUILDDIR/pseudodone`
23PSEUDO_BINDIR=$PSEUDOBINDIR PSEUDO_LIBDIR=$PSEUDOBINDIR/../lib/pseudo/lib PSEUDO_PREFIX=$PSEUDOBINDIR/../../ PSEUDO_DISABLED=1 $PSEUDOBINDIR/pseudo $BITBAKE $@
24ret=$?
25exit $ret