summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/toaster
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin/toaster')
-rwxr-xr-xbitbake/bin/toaster10
1 files changed, 6 insertions, 4 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster
index 6641dbc576..f92d38ecab 100755
--- a/bitbake/bin/toaster
+++ b/bitbake/bin/toaster
@@ -129,7 +129,7 @@ fi
129 129
130export BBBASEDIR=`dirname $TOASTER`/.. 130export BBBASEDIR=`dirname $TOASTER`/..
131MANAGE="python3 $BBBASEDIR/lib/toaster/manage.py" 131MANAGE="python3 $BBBASEDIR/lib/toaster/manage.py"
132OEROOT=`dirname $TOASTER`/../.. 132OE_ROOT=`dirname $TOASTER`/../..
133 133
134# this is the configuraton file we are using for toaster 134# this is the configuraton file we are using for toaster
135# we are using the same logic that oe-setup-builddir uses 135# we are using the same logic that oe-setup-builddir uses
@@ -139,16 +139,18 @@ OEROOT=`dirname $TOASTER`/../..
139# in the local layers that currently make using an arbitrary 139# in the local layers that currently make using an arbitrary
140# toasterconf.json difficult. 140# toasterconf.json difficult.
141 141
142. $OEROOT/.templateconf 142. $OE_ROOT/.templateconf
143if [ -n "$TEMPLATECONF" ]; then 143if [ -n "$TEMPLATECONF" ]; then
144 if [ ! -d "$TEMPLATECONF" ]; then 144 if [ ! -d "$TEMPLATECONF" ]; then
145 # Allow TEMPLATECONF=meta-xyz/conf as a shortcut 145 # Allow TEMPLATECONF=meta-xyz/conf as a shortcut
146 if [ -d "$OEROOT/$TEMPLATECONF" ]; then 146 if [ -d "$OE_ROOT/$TEMPLATECONF" ]; then
147 TEMPLATECONF="$OEROOT/$TEMPLATECONF" 147 TEMPLATECONF="$OE_ROOT/$TEMPLATECONF"
148 fi 148 fi
149 fi 149 fi
150fi 150fi
151 151
152unset OE_ROOT
153
152# this defines the dir toaster will use for 154# this defines the dir toaster will use for
153# 1) clones of layers (in _toaster_clones ) 155# 1) clones of layers (in _toaster_clones )
154# 2) the build dir (in build) 156# 2) the build dir (in build)