diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-20 21:15:31 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-11 17:21:46 +0000 |
| commit | f94e71c40afc34ab5d77e46d64897011f114c7c1 (patch) | |
| tree | 4d6d7a6422385748629cb1fa70262139d02db022 /bitbake | |
| parent | 30259219ca69fa9322b3777826a371c3419a8d73 (diff) | |
| download | poky-f94e71c40afc34ab5d77e46d64897011f114c7c1.tar.gz | |
bitbake: build/uihelper: Show better information about multiconfig tasks on UI
Currently the UI shows X is building, possibly multiple times but doesn't
say which of the multilibs that might be. This adds a prefix to the task
name so the mulitconfig being built can be identified.
(Bitbake rev: dfb775c67a96a79f3b85104870c0ade46ef2a9ea)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
| -rw-r--r-- | bitbake/lib/bb/build.py | 1 | ||||
| -rw-r--r-- | bitbake/lib/bb/ui/uihelper.py | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index e807a0948c..b59a49bc1f 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py | |||
| @@ -92,6 +92,7 @@ class TaskBase(event.Event): | |||
| 92 | def __init__(self, t, logfile, d): | 92 | def __init__(self, t, logfile, d): |
| 93 | self._task = t | 93 | self._task = t |
| 94 | self._package = d.getVar("PF", True) | 94 | self._package = d.getVar("PF", True) |
| 95 | self._mc = d.getVar("BB_CURRENT_MC", True) | ||
| 95 | self.taskfile = d.getVar("FILE", True) | 96 | self.taskfile = d.getVar("FILE", True) |
| 96 | self.taskname = self._task | 97 | self.taskname = self._task |
| 97 | self.logfile = logfile | 98 | self.logfile = logfile |
diff --git a/bitbake/lib/bb/ui/uihelper.py b/bitbake/lib/bb/ui/uihelper.py index fda7cc2c7c..113fcedeaf 100644 --- a/bitbake/lib/bb/ui/uihelper.py +++ b/bitbake/lib/bb/ui/uihelper.py | |||
| @@ -32,7 +32,10 @@ class BBUIHelper: | |||
| 32 | 32 | ||
| 33 | def eventHandler(self, event): | 33 | def eventHandler(self, event): |
| 34 | if isinstance(event, bb.build.TaskStarted): | 34 | if isinstance(event, bb.build.TaskStarted): |
| 35 | self.running_tasks[event.pid] = { 'title' : "%s %s" % (event._package, event._task), 'starttime' : time.time() } | 35 | if event._mc != "default": |
| 36 | self.running_tasks[event.pid] = { 'title' : "mc:%s:%s %s" % (event._mc, event._package, event._task), 'starttime' : time.time() } | ||
| 37 | else: | ||
| 38 | self.running_tasks[event.pid] = { 'title' : "%s %s" % (event._package, event._task), 'starttime' : time.time() } | ||
| 36 | self.running_pids.append(event.pid) | 39 | self.running_pids.append(event.pid) |
| 37 | self.needUpdate = True | 40 | self.needUpdate = True |
| 38 | elif isinstance(event, bb.build.TaskSucceeded): | 41 | elif isinstance(event, bb.build.TaskSucceeded): |
