aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-08-11 15:36:57 +1200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-17 10:22:58 +0100
commit1b6f701cd9e7f4ea6c2ee960d0749c5f6c8a683f (patch)
tree0c5bf2deb963da06e1287d20ce91435fb75a6b3a /bitbake/lib
parent407ba77fe2e2726db0525d84961df7d7f726446c (diff)
downloadopenembedded-core-contrib-1b6f701cd9e7f4ea6c2ee960d0749c5f6c8a683f.tar.gz
bitbake: runqueue: fix two minor issues with the initialising tasks progress
A couple of fixes for the "Initialising tasks" progress bar behaviour: * Properly finish the progress bar when using bitbake -S * Finish the progress bar before calling BB_HASHCHECK_FUNCTION (so that in OE when that shows its own "Checking sstate mirror object availability" progress bar it gets shown on the next line as it should). (Bitbake rev: de6759d8e9990e426e6d6464a2e05381cd4c12d6) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/runqueue.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index aa939d0443..3a593b6c4b 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1148,6 +1148,7 @@ class RunQueue:
if self.state is runQueueSceneInit:
dump = self.cooker.configuration.dump_signatures
if dump:
+ self.rqdata.init_progress_reporter.finish()
if 'printdiff' in dump:
invalidtasks = self.print_diffscenetasks()
self.dump_signatures(dump)
@@ -1967,6 +1968,8 @@ class RunQueueExecuteScenequeue(RunQueueExecute):
if len(self.sq_revdeps[tid]) == 0:
self.runq_buildable.add(tid)
+ self.rqdata.init_progress_reporter.finish()
+
self.outrightfail = []
if self.rq.hashvalidate:
sq_hash = []
@@ -2018,8 +2021,6 @@ class RunQueueExecuteScenequeue(RunQueueExecute):
logger.debug(2, 'No package found, so skipping setscene task %s', tid)
self.outrightfail.append(tid)
- self.rqdata.init_progress_reporter.finish()
-
logger.info('Executing SetScene Tasks')
self.rq.state = runQueueSceneRun