diff options
author | brian avery <brian.avery@intel.com> | 2017-02-07 12:36:13 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 20:08:15 -0800 |
commit | 3b7ab16bf8bbfa0e38fa35a31142853eb8d6f760 (patch) | |
tree | 936169ee6f6bd48e25d53d74523ac221eaed0631 /bitbake | |
parent | f0d5eb39c3ec939d4d42796ab53490d08c7609a5 (diff) | |
download | poky-3b7ab16bf8bbfa0e38fa35a31142853eb8d6f760.tar.gz |
bitbake: 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.
(Bitbake rev: 1f0eac0a172a4fbe1799675f2c3ce989743bd862)
Signed-off-by: brian avery <brian.avery@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-x | bitbake/bin/toaster | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index daaf8eaac8..37a11165d2 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster | |||
@@ -255,7 +255,10 @@ case $CMD in | |||
255 | return 4 | 255 | return 4 |
256 | fi | 256 | fi |
257 | export BITBAKE_UI='toasterui' | 257 | export BITBAKE_UI='toasterui' |
258 | $MANAGE runbuilds & | 258 | $MANAGE runbuilds \ |
259 | </dev/null >>${BUILDDIR}/toaster_runbuilds.log 2>&1 \ | ||
260 | & echo $! >${BUILDDIR}/.runbuilds.pid | ||
261 | |||
259 | # set fail safe stop system on terminal exit | 262 | # set fail safe stop system on terminal exit |
260 | trap stop_system SIGHUP | 263 | trap stop_system SIGHUP |
261 | echo "Successful ${CMD}." | 264 | echo "Successful ${CMD}." |