summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrian avery <brian.avery@intel.com>2017-02-07 12:36:13 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-13 02:47:40 -0800
commit1f0eac0a172a4fbe1799675f2c3ce989743bd862 (patch)
tree69a404e07bf17da087645ef7664dbb7e94e87bf9
parent2300beb50333bb620013b058a7309e7f2042101d (diff)
downloadopenembedded-core-contrib-1f0eac0a172a4fbe1799675f2c3ce989743bd862.tar.gz
toaster: remove cut and paste cruft
There was a superfluous section in toaster start/stop script that was setting the TOASTER_DIR and had a set of comments around that setting. This was done in two places and only the last one was effective. This patch removes the spurious section to make it clearer what was happening and what TOASTER_DIR was actually getting set to. Signed-off-by: brian avery <brian.avery@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbin/toaster5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/toaster b/bin/toaster
index daaf8eaac8..37a11165d2 100755
--- a/bin/toaster
+++ b/bin/toaster
@@ -255,7 +255,10 @@ case $CMD in
return 4
fi
export BITBAKE_UI='toasterui'
- $MANAGE runbuilds &
+ $MANAGE runbuilds \
+ </dev/null >>${BUILDDIR}/toaster_runbuilds.log 2>&1 \
+ & echo $! >${BUILDDIR}/.runbuilds.pid
+
# set fail safe stop system on terminal exit
trap stop_system SIGHUP
echo "Successful ${CMD}."