diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-11-23 14:02:40 -0500 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:44 +0000 |
commit | a92caf45c86809274def5a80bc58afcf8b7ad044 (patch) | |
tree | 2aa42de760057bf492b57d38c8ed1aa128a4a3bb | |
parent | 7a7e2f4e59a076ce166da53af5d8bbec310b1665 (diff) | |
download | poky-a92caf45c86809274def5a80bc58afcf8b7ad044.tar.gz |
knotty: drop the ETA from the progressbar for now
Currently, the progress bar is an indication of the processing of our recipes,
which includes loading the cache file, then for each recipe, either adding the
existing cached information to the CacheData or parsing the recipe from disk.
These tasks clearly take different amounts of time, so the ETA is unreliable
today. We'll resurrect this functionality after we revamp the progress
handling, fully incorporating the load of the cache file.
(Bitbake rev: 80867372dcbef91ebaf7d77a77ca871741dd3f74)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 326f164353..8e5249bb62 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -31,7 +31,7 @@ from bb.ui import uihelper | |||
31 | 31 | ||
32 | logger = logging.getLogger("BitBake") | 32 | logger = logging.getLogger("BitBake") |
33 | widgets = ['Parsing recipes: ', progressbar.Percentage(), ' ', | 33 | widgets = ['Parsing recipes: ', progressbar.Percentage(), ' ', |
34 | progressbar.Bar(), ' ', progressbar.ETA()] | 34 | progressbar.Bar()] |
35 | 35 | ||
36 | class BBLogFormatter(logging.Formatter): | 36 | class BBLogFormatter(logging.Formatter): |
37 | """Formatter which ensures that our 'plain' messages (logging.INFO + 1) are used as is""" | 37 | """Formatter which ensures that our 'plain' messages (logging.INFO + 1) are used as is""" |