* [PATCH 0/6] Fixes for toastergui
@ 2015-09-28 8:56 Ed Bartosh
2015-09-28 8:57 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
` (6 more replies)
0 siblings, 7 replies; 12+ messages in thread
From: Ed Bartosh @ 2015-09-28 8:56 UTC (permalink / raw)
To: toaster
Hi,
This patchset fixes creation of Target objects for command line builds
and couple of usability fixes for toastergui module.
The following changes since commit 5a51fb28dbdfcae8ceb503a5290532dd38aeb09f:
bitbake: prserv/serv: Start/Stop daemon using ip instead of host (2015-09-24 17:55:05 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib ed/toaster/target-task
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/target-task
Ed Bartosh (6):
event: add new property to BuildBase class
event: add new parameter to Build* event APIs
toaster: add task to the target_information
toaster: add get_target_objects API
toaster: ignore ReachableStamps event
toaster: use meaningful logging levels
bitbake/lib/bb/cooker.py | 8 ++++----
bitbake/lib/bb/event.py | 18 +++++++++++++-----
bitbake/lib/bb/ui/buildinfohelper.py | 20 +++++++++++++++++++-
bitbake/lib/bb/ui/toasterui.py | 11 ++++++-----
4 files changed, 42 insertions(+), 15 deletions(-)
--
2.1.4
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 1/6] event: add new property to BuildBase class
2015-09-28 8:56 [PATCH 0/6] Fixes for toastergui Ed Bartosh
@ 2015-09-28 8:57 ` Ed Bartosh
2015-09-28 8:57 ` [PATCH 2/6] event: add new parameter to Build* event APIs Ed Bartosh
` (5 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Ed Bartosh @ 2015-09-28 8:57 UTC (permalink / raw)
To: toaster
Added 'task' property to the base class of BuildStarted and
BuildCompleted classes to store bitbake task if it's specified.
This is done as without task Build* events can't fully represent
bitbake build. Task information is needed by UI classes to properly
show or process Build* events.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
bitbake/lib/bb/event.py | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index 366bc41..68496e5 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -331,6 +331,7 @@ class BuildBase(Event):
def __init__(self, n, p, failures = 0):
self._name = n
self._pkgs = p
+ self._task = None
Event.__init__(self)
self._failures = failures
@@ -352,6 +353,12 @@ class BuildBase(Event):
def setCfg(self, cfg):
self.data = cfg
+ def getTask(self):
+ return self._task
+
+ def setTask(self, task):
+ self._task = task
+
def getFailures(self):
"""
Return the number of failed packages
@@ -361,6 +368,7 @@ class BuildBase(Event):
pkgs = property(getPkgs, setPkgs, None, "pkgs property")
name = property(getName, setName, None, "name property")
cfg = property(getCfg, setCfg, None, "cfg property")
+ task = property(getTask, setTask, None, "task property")
--
2.1.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 2/6] event: add new parameter to Build* event APIs
2015-09-28 8:56 [PATCH 0/6] Fixes for toastergui Ed Bartosh
2015-09-28 8:57 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
@ 2015-09-28 8:57 ` Ed Bartosh
2015-09-28 8:57 ` [PATCH 3/6] toaster: add task to the target_information Ed Bartosh
` (4 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Ed Bartosh @ 2015-09-28 8:57 UTC (permalink / raw)
To: toaster
Added 't'(task) parameter to BuildStarted and BuildCompleted
event APIs. Modified existing calls of above mentioned APIs:
passed bitbake task name as a parameter.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
bitbake/lib/bb/cooker.py | 8 ++++----
bitbake/lib/bb/event.py | 12 ++++++------
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index a0d7d59..ef81c3a 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1313,7 +1313,7 @@ class BBCooker:
taskdata.add_provider(self.data, self.recipecache, item)
buildname = self.data.getVar("BUILDNAME", True)
- bb.event.fire(bb.event.BuildStarted(buildname, [item]), self.expanded_data)
+ bb.event.fire(bb.event.BuildStarted(buildname, [item], task), self.expanded_data)
# Execute the runqueue
if not task.startswith("do_"):
@@ -1345,7 +1345,7 @@ class BBCooker:
return False
if not retval:
- bb.event.fire(bb.event.BuildCompleted(len(rq.rqdata.runq_fnid), buildname, item, failures, interrupted), self.expanded_data)
+ bb.event.fire(bb.event.BuildCompleted(len(rq.rqdata.runq_fnid), buildname, item, task, failures, interrupted), self.expanded_data)
self.command.finishAsyncCommand(msg)
return False
if retval is True:
@@ -1381,7 +1381,7 @@ class BBCooker:
return False
if not retval:
- bb.event.fire(bb.event.BuildCompleted(len(rq.rqdata.runq_fnid), buildname, targets, failures, interrupted), self.data)
+ bb.event.fire(bb.event.BuildCompleted(len(rq.rqdata.runq_fnid), buildname, targets, task, failures, interrupted), self.data)
self.command.finishAsyncCommand(msg)
return False
if retval is True:
@@ -1394,7 +1394,7 @@ class BBCooker:
taskdata, runlist, fulltargetlist = self.buildTaskData(targets, task, self.configuration.abort)
buildname = self.data.getVar("BUILDNAME", False)
- bb.event.fire(bb.event.BuildStarted(buildname, fulltargetlist), self.data)
+ bb.event.fire(bb.event.BuildStarted(buildname, fulltargetlist, task), self.data)
rq = bb.runqueue.RunQueue(self, self.data, self.recipecache, taskdata, runlist)
if 'universe' in targets:
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index 68496e5..bf67ee9 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -328,10 +328,10 @@ class StampUpdate(Event):
class BuildBase(Event):
"""Base class for bbmake run events"""
- def __init__(self, n, p, failures = 0):
+ def __init__(self, n, p, t, failures = 0):
self._name = n
self._pkgs = p
- self._task = None
+ self._task = t
Event.__init__(self)
self._failures = failures
@@ -376,19 +376,19 @@ class BuildBase(Event):
class BuildStarted(BuildBase, OperationStarted):
"""bbmake build run started"""
- def __init__(self, n, p, failures = 0):
+ def __init__(self, n, p, t, failures = 0):
OperationStarted.__init__(self, "Building Started")
- BuildBase.__init__(self, n, p, failures)
+ BuildBase.__init__(self, n, p, t, failures)
class BuildCompleted(BuildBase, OperationCompleted):
"""bbmake build run completed"""
- def __init__(self, total, n, p, failures=0, interrupted=0):
+ def __init__(self, total, n, p, t, failures=0, interrupted=0):
if not failures:
OperationCompleted.__init__(self, total, "Building Succeeded")
else:
OperationCompleted.__init__(self, total, "Building Failed")
self._interrupted = interrupted
- BuildBase.__init__(self, n, p, failures)
+ BuildBase.__init__(self, n, p, t, failures)
class DiskFull(Event):
"""Disk full case build aborted"""
--
2.1.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 3/6] toaster: add task to the target_information
2015-09-28 8:56 [PATCH 0/6] Fixes for toastergui Ed Bartosh
2015-09-28 8:57 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
2015-09-28 8:57 ` [PATCH 2/6] event: add new parameter to Build* event APIs Ed Bartosh
@ 2015-09-28 8:57 ` Ed Bartosh
2015-09-28 8:57 ` [PATCH 4/6] toaster: add get_target_objects API Ed Bartosh
` (3 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Ed Bartosh @ 2015-09-28 8:57 UTC (permalink / raw)
To: toaster
Added task information from BuildStarted event to the
target_information structure.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
bitbake/lib/bb/ui/buildinfohelper.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index 5098448..6a26172 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -856,6 +856,10 @@ class BuildInfoHelper(object):
target_information = {}
target_information['targets'] = event._pkgs
target_information['build'] = build_obj
+ task = getattr(event, 'task', '')
+ if task.startswith('do_'):
+ task = task[3:]
+ target_information['task'] = task
self.internal_state['targets'] = Target.objects.filter(build=target_information['build'])
--
2.1.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 4/6] toaster: add get_target_objects API
2015-09-28 8:56 [PATCH 0/6] Fixes for toastergui Ed Bartosh
` (2 preceding siblings ...)
2015-09-28 8:57 ` [PATCH 3/6] toaster: add task to the target_information Ed Bartosh
@ 2015-09-28 8:57 ` Ed Bartosh
2015-09-28 9:41 ` Smith, Elliot
2015-09-28 8:57 ` [PATCH 5/6] toaster: ignore ReachableStamps event Ed Bartosh
` (2 subsequent siblings)
6 siblings, 1 reply; 12+ messages in thread
From: Ed Bartosh @ 2015-09-28 8:57 UTC (permalink / raw)
To: toaster
Target objects are created before the build if build is
started from UI in build mode. However, in analysis mode Target
objects don't exist and need to be created using information
from bitbake events.
Added new API call get_target_objects to retrive existing
target objects or create them if they don't exist yet.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
bitbake/lib/bb/ui/buildinfohelper.py | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index 6a26172..50640e73 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -181,6 +181,20 @@ class ORMWrapper(object):
return build
+ @staticmethod
+ def get_target_objects(target_info):
+ result = []
+ for target in target_info['targets']:
+ obj, created = Target.objects.get_or_create(build=target_info['build'],
+ target=target)
+ if created:
+ obj.is_image = False
+ if target_info['task']:
+ obj.task = target_info['task']
+ obj.save()
+ result.append(obj)
+ return result
+
def update_build_object(self, build, errors, warnings, taskfailures):
assert isinstance(build,Build)
assert isinstance(errors, int)
@@ -861,7 +875,7 @@ class BuildInfoHelper(object):
task = task[3:]
target_information['task'] = task
- self.internal_state['targets'] = Target.objects.filter(build=target_information['build'])
+ self.internal_state['targets'] = self.orm_wrapper.get_target_objects(target_information)
# Save build configuration
data = self.server.runCommand(["getAllKeysWithFlags", ["doc", "func"]])[0]
--
2.1.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 5/6] toaster: ignore ReachableStamps event
2015-09-28 8:56 [PATCH 0/6] Fixes for toastergui Ed Bartosh
` (3 preceding siblings ...)
2015-09-28 8:57 ` [PATCH 4/6] toaster: add get_target_objects API Ed Bartosh
@ 2015-09-28 8:57 ` Ed Bartosh
2015-09-28 8:57 ` [PATCH 6/6] toaster: use meaningful logging levels Ed Bartosh
2015-09-28 11:14 ` [PATCH 0/6] Fixes for toastergui Smith, Elliot
6 siblings, 0 replies; 12+ messages in thread
From: Ed Bartosh @ 2015-09-28 8:57 UTC (permalink / raw)
To: toaster
Added ReachableStamps event to the list of known events to
ignore. This should stop toaster throwing error message:
ERROR: Unknown event: <bb.event.ReachableStamps>
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
bitbake/lib/bb/ui/toasterui.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py
index e0c278b..3891e63 100644
--- a/bitbake/lib/bb/ui/toasterui.py
+++ b/bitbake/lib/bb/ui/toasterui.py
@@ -308,7 +308,8 @@ def main(server, eventHandler, params ):
bb.event.OperationProgress,
bb.command.CommandFailed,
bb.command.CommandExit,
- bb.command.CommandCompleted)):
+ bb.command.CommandCompleted,
+ bb.event.ReachableStamps)):
continue
if isinstance(event, bb.event.DepTreeGenerated):
--
2.1.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 6/6] toaster: use meaningful logging levels
2015-09-28 8:56 [PATCH 0/6] Fixes for toastergui Ed Bartosh
` (4 preceding siblings ...)
2015-09-28 8:57 ` [PATCH 5/6] toaster: ignore ReachableStamps event Ed Bartosh
@ 2015-09-28 8:57 ` Ed Bartosh
2015-09-28 11:14 ` [PATCH 0/6] Fixes for toastergui Smith, Elliot
6 siblings, 0 replies; 12+ messages in thread
From: Ed Bartosh @ 2015-09-28 8:57 UTC (permalink / raw)
To: toaster
Changed logging levels to more appropriate ones.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
bitbake/lib/bb/ui/toasterui.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py
index 3891e63..dbe0d09 100644
--- a/bitbake/lib/bb/ui/toasterui.py
+++ b/bitbake/lib/bb/ui/toasterui.py
@@ -130,14 +130,14 @@ def main(server, eventHandler, params ):
if isinstance(event, (bb.build.TaskStarted, bb.build.TaskSucceeded, bb.build.TaskFailedSilent)):
buildinfohelper.update_and_store_task(event)
- logger.warn("Logfile for task %s", event.logfile)
+ logger.info("Logfile for task %s", event.logfile)
continue
if isinstance(event, bb.build.TaskBase):
logger.info(event._message)
if isinstance(event, bb.event.LogExecTTY):
- logger.warn(event.msg)
+ logger.info(event.msg)
continue
if isinstance(event, logging.LogRecord):
@@ -316,7 +316,7 @@ def main(server, eventHandler, params ):
buildinfohelper.store_dependency_information(event)
continue
- logger.error("Unknown event: %s", event)
+ logger.warn("Unknown event: %s", event)
return_value += 1
except EnvironmentError as ioerror:
@@ -336,7 +336,7 @@ def main(server, eventHandler, params ):
if tb is not None:
curr = tb
while curr is not None:
- logger.warn("Error data dump %s\n%s\n" , traceback.format_tb(curr,1), pformat(curr.tb_frame.f_locals))
+ logger.error("Error data dump %s\n%s\n" , traceback.format_tb(curr,1), pformat(curr.tb_frame.f_locals))
curr = curr.tb_next
# save them to database, if possible; if it fails, we already logged to console.
--
2.1.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 4/6] toaster: add get_target_objects API
2015-09-28 8:57 ` [PATCH 4/6] toaster: add get_target_objects API Ed Bartosh
@ 2015-09-28 9:41 ` Smith, Elliot
2015-09-28 11:16 ` Ed Bartosh
0 siblings, 1 reply; 12+ messages in thread
From: Smith, Elliot @ 2015-09-28 9:41 UTC (permalink / raw)
To: Ed Bartosh; +Cc: toaster
[-- Attachment #1: Type: text/plain, Size: 2589 bytes --]
On 28 September 2015 at 09:57, Ed Bartosh <ed.bartosh@linux.intel.com>
wrote:
> Target objects are created before the build if build is
> started from UI in build mode. However, in analysis mode Target
> objects don't exist and need to be created using information
> from bitbake events.
>
> Added new API call get_target_objects to retrive existing
> target objects or create them if they don't exist yet.
>
> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
> ---
> bitbake/lib/bb/ui/buildinfohelper.py | 16 +++++++++++++++-
> 1 file changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/bitbake/lib/bb/ui/buildinfohelper.py
> b/bitbake/lib/bb/ui/buildinfohelper.py
> index 6a26172..50640e73 100644
> --- a/bitbake/lib/bb/ui/buildinfohelper.py
> +++ b/bitbake/lib/bb/ui/buildinfohelper.py
> @@ -181,6 +181,20 @@ class ORMWrapper(object):
>
> return build
>
> + @staticmethod
> + def get_target_objects(target_info):
> + result = []
> + for target in target_info['targets']:
> + obj, created =
> Target.objects.get_or_create(build=target_info['build'],
> + target=target)
> + if created:
> + obj.is_image = False
> + if target_info['task']:
> + obj.task = target_info['task']
> + obj.save()
> + result.append(obj)
> + return result
> +
>
I think we should call this get_or_create_target_objects(), for consistency
with existing methods, and also to highlight that the method has potential
database writes as a side effect.
Elliot
> def update_build_object(self, build, errors, warnings, taskfailures):
> assert isinstance(build,Build)
> assert isinstance(errors, int)
> @@ -861,7 +875,7 @@ class BuildInfoHelper(object):
> task = task[3:]
> target_information['task'] = task
>
> - self.internal_state['targets'] =
> Target.objects.filter(build=target_information['build'])
> + self.internal_state['targets'] =
> self.orm_wrapper.get_target_objects(target_information)
>
> # Save build configuration
> data = self.server.runCommand(["getAllKeysWithFlags", ["doc",
> "func"]])[0]
> --
> 2.1.4
>
> --
> _______________________________________________
> toaster mailing list
> toaster@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/toaster
>
--
Elliot Smith
Software Engineer
Intel Open Source Technology Centre
[-- Attachment #2: Type: text/html, Size: 3759 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/6] Fixes for toastergui
2015-09-28 8:56 [PATCH 0/6] Fixes for toastergui Ed Bartosh
` (5 preceding siblings ...)
2015-09-28 8:57 ` [PATCH 6/6] toaster: use meaningful logging levels Ed Bartosh
@ 2015-09-28 11:14 ` Smith, Elliot
2015-09-28 11:29 ` Barros Pena, Belen
6 siblings, 1 reply; 12+ messages in thread
From: Smith, Elliot @ 2015-09-28 11:14 UTC (permalink / raw)
To: Ed Bartosh; +Cc: toaster
[-- Attachment #1: Type: text/plain, Size: 1905 bytes --]
On 28 September 2015 at 09:56, Ed Bartosh <ed.bartosh@linux.intel.com>
wrote:
> This patchset fixes creation of Target objects for command line builds
> and couple of usability fixes for toastergui module.
>
I've tested this in analysis and managed mode, and it seems to be working
fine.
The only thing I've noticed is that command line builds (shown in the
"Latest builds" and "Project builds" areas) always show the task (e.g.
"zlib:build"), while builds started from the UI don't show it (e.g. "zlib").
I think we should either always hide the suffix when it is ":build", or
always show it, to be consistent.
Elliot
>
> The following changes since commit
> 5a51fb28dbdfcae8ceb503a5290532dd38aeb09f:
>
> bitbake: prserv/serv: Start/Stop daemon using ip instead of host
> (2015-09-24 17:55:05 +0100)
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib ed/toaster/target-task
>
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/target-task
>
> Ed Bartosh (6):
> event: add new property to BuildBase class
> event: add new parameter to Build* event APIs
> toaster: add task to the target_information
> toaster: add get_target_objects API
> toaster: ignore ReachableStamps event
> toaster: use meaningful logging levels
>
> bitbake/lib/bb/cooker.py | 8 ++++----
> bitbake/lib/bb/event.py | 18 +++++++++++++-----
> bitbake/lib/bb/ui/buildinfohelper.py | 20 +++++++++++++++++++-
> bitbake/lib/bb/ui/toasterui.py | 11 ++++++-----
> 4 files changed, 42 insertions(+), 15 deletions(-)
>
> --
> 2.1.4
>
> --
> _______________________________________________
> toaster mailing list
> toaster@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/toaster
>
--
Elliot Smith
Software Engineer
Intel Open Source Technology Centre
[-- Attachment #2: Type: text/html, Size: 3078 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 4/6] toaster: add get_target_objects API
2015-09-28 9:41 ` Smith, Elliot
@ 2015-09-28 11:16 ` Ed Bartosh
0 siblings, 0 replies; 12+ messages in thread
From: Ed Bartosh @ 2015-09-28 11:16 UTC (permalink / raw)
To: Smith, Elliot; +Cc: toaster
On Mon, Sep 28, 2015 at 10:41:07AM +0100, Smith, Elliot wrote:
> I think we should call this get_or_create_target_objects(), for consistency
> with existing methods, and also to highlight that the method has potential
> database writes as a side effect.
>
yep, agree. I'll send updated patchset for review soon.
--
Regards,
Ed
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/6] Fixes for toastergui
2015-09-28 11:14 ` [PATCH 0/6] Fixes for toastergui Smith, Elliot
@ 2015-09-28 11:29 ` Barros Pena, Belen
0 siblings, 0 replies; 12+ messages in thread
From: Barros Pena, Belen @ 2015-09-28 11:29 UTC (permalink / raw)
To: Smith, Elliot, Ed Bartosh; +Cc: toaster@yoctoproject.org
On 28/09/2015 12:14, "toaster-bounces@yoctoproject.org on behalf of Smith,
Elliot" <toaster-bounces@yoctoproject.org on behalf of
elliot.smith@intel.com> wrote:
>On 28 September 2015 at 09:56, Ed Bartosh
><ed.bartosh@linux.intel.com> wrote:
>
>This patchset fixes creation of Target objects for command line builds
>and couple of usability fixes for toastergui module.
>
>
>
>
>I've tested this in analysis and managed mode, and it seems to be working
>fine.
>
>
>The only thing I've noticed is that command line builds (shown in the
>"Latest builds" and "Project builds" areas) always show the task (e.g.
>"zlib:build"), while builds started from the UI don't show it (e.g.
>"zlib").
>
>
>I think we should either always hide the suffix when it is ":build", or
>always show it, to be consistent.
The 'build' task should not show: I suspect that would create more
confusion than clarity.
Cheers
Belén
>
>
>Elliot
>
>
>
>The following changes since commit
>5a51fb28dbdfcae8ceb503a5290532dd38aeb09f:
>
> bitbake: prserv/serv: Start/Stop daemon using ip instead of host
>(2015-09-24 17:55:05 +0100)
>
>are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib
><http://git.yoctoproject.org/poky-contrib> ed/toaster/target-task
>
>http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/target
>-task
><http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/targe
>t-task>
>
>Ed Bartosh (6):
> event: add new property to BuildBase class
> event: add new parameter to Build* event APIs
> toaster: add task to the target_information
> toaster: add get_target_objects API
> toaster: ignore ReachableStamps event
> toaster: use meaningful logging levels
>
> bitbake/lib/bb/cooker.py | 8 ++++----
> bitbake/lib/bb/event.py | 18 +++++++++++++-----
> bitbake/lib/bb/ui/buildinfohelper.py | 20 +++++++++++++++++++-
> bitbake/lib/bb/ui/toasterui.py | 11 ++++++-----
> 4 files changed, 42 insertions(+), 15 deletions(-)
>
>--
>2.1.4
>
>--
>_______________________________________________
>toaster mailing list
>toaster@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/toaster
>
>
>
>
>
>
>
>--
>Elliot Smith
>Software Engineer
>Intel Open Source Technology Centre
>
>
>
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 0/6] Fixes for toastergui
@ 2015-10-05 9:43 Elliot Smith
0 siblings, 0 replies; 12+ messages in thread
From: Elliot Smith @ 2015-10-05 9:43 UTC (permalink / raw)
To: bitbake-devel
This patchset fixes creation of Target objects for command line builds
and provides a couple of usability fixes for toastergui module.
The following changes since commit 78b7cfc2d29209354a1ed3a3a787c651efd31f28:
toaster: test get_alldeps API (2015-10-05 10:37:47 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib elliot/submit/ed/toaster/target-task
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=elliot/submit/ed/toaster/target-task
Ed Bartosh (6):
event: add new property to BuildBase class
event: add new parameter to Build* event APIs
toaster: add task to the target_information
toaster: add get_or_create_targets API
toaster: ignore ReachableStamps event
toaster: use meaningful logging levels
lib/bb/cooker.py | 8 ++++----
lib/bb/event.py | 18 +++++++++++++-----
lib/bb/ui/buildinfohelper.py | 37 +++++++++++++++++++++----------------
lib/bb/ui/toasterui.py | 11 ++++++-----
4 files changed, 44 insertions(+), 30 deletions(-)
--
1.9.3
---------------------------------------------------------------------
Intel Corporation (UK) Limited
Registered No. 1134945 (England)
Registered Office: Pipers Way, Swindon SN3 1RJ
VAT No: 860 2173 47
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2015-10-05 9:43 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-28 8:56 [PATCH 0/6] Fixes for toastergui Ed Bartosh
2015-09-28 8:57 ` [PATCH 1/6] event: add new property to BuildBase class Ed Bartosh
2015-09-28 8:57 ` [PATCH 2/6] event: add new parameter to Build* event APIs Ed Bartosh
2015-09-28 8:57 ` [PATCH 3/6] toaster: add task to the target_information Ed Bartosh
2015-09-28 8:57 ` [PATCH 4/6] toaster: add get_target_objects API Ed Bartosh
2015-09-28 9:41 ` Smith, Elliot
2015-09-28 11:16 ` Ed Bartosh
2015-09-28 8:57 ` [PATCH 5/6] toaster: ignore ReachableStamps event Ed Bartosh
2015-09-28 8:57 ` [PATCH 6/6] toaster: use meaningful logging levels Ed Bartosh
2015-09-28 11:14 ` [PATCH 0/6] Fixes for toastergui Smith, Elliot
2015-09-28 11:29 ` Barros Pena, Belen
-- strict thread matches above, loose matches on Subject: below --
2015-10-05 9:43 Elliot Smith
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.