From patchwork Tue Feb 7 20:36:11 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/3] toaster: put runbuilds output into a log file From: "Avery, Brian" X-Patchwork-Id: 136842 Message-Id: To: toaster@yoctoproject.org Cc: brian avery Date: Tue, 7 Feb 2017 12:36:11 -0800 The output from runbuilds should not spout over the console where you would be running cmdline builds. Redirected to TOASTER_DIR/toaster_runbuilds.log. [YOCTO #11006] Signed-off-by: brian avery --- bitbake/bin/toaster | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index daaf8ea..37a1116 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster @@ -255,7 +255,10 @@ case $CMD in return 4 fi export BITBAKE_UI='toasterui' - $MANAGE runbuilds & + $MANAGE runbuilds \ + >${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}."