All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] toaster: cummulative patch Aug 28 2018
@ 2018-08-26 22:33 David Reyna
  2018-08-26 22:33 ` [PATCH 1/9] toaster: allow pokydirname to be evaluated when all layers are local David Reyna
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: David Reyna @ 2018-08-26 22:33 UTC (permalink / raw)
  To: bitbake-devel; +Cc: Awais Belal

From: David Reyna <David.Reyna@windriver.com>

---
This cumulative enhancement patch includes the following, to support
flexibility and usability for Toaster.

* 12891 - "Allow flexible value for TOASTERDIR plus custom fixture support"

  This supports the flexibility of having the Toaster base directory (used
  got the database and project build directories) to be specified by the user.
  It also allows for flexibility in the location of bitbake to be within one
  the specified local layers instead of being in the default fixed location.

* 12902 - "Enable project import and merged Toaster settings"

  This optionally enables Toaster and command line compatibility, where
  the Toaster settings are saved in the normal "local.conf" and
  "bblayers.conf" in a well defined and contained append structure.
  It also supports importing and detaching existing command line build
  projects, where importing a project inherits the existing project
  settings.
---


The following changes since commit 87d3a9685dd9613e4f6718031d4ebd9344b01c47:

  bitbake: parse/ast: ensure saved event handlers really do get restored (2018-08-24 07:53:14 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib dreyna/toaster/import_builds_12902
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=dreyna/submit/dreyna/toaster/cummulative_082618

Awais Belal (8):
  toaster: allow pokydirname to be evaluated when all layers are local
  toaster: use a more flexible way to find bitbake
  toaster: allow TOASTER_DIR to be overridden from cmdline
  toaster/widgets.py: avoid divide by zero issues
  toastergui/newproject.html: fix release divs
  toaster/checksettings: allow CUSTOM_XML_ONLY setting through env
  toaster/models.py: allow local paths for custom recipe's base
  toaster/layerdetails.js: don't hide local layer info

David Reyna (1):
  toaster: enable project import and merged Toaster settings

 bin/toaster                                        |  9 +++-
 lib/toaster/bldcontrol/localhostbecontroller.py    | 39 ++++++++++++---
 .../management/commands/checksettings.py           |  3 +-
 lib/toaster/orm/models.py                          |  7 +++
 lib/toaster/toastergui/static/js/layerdetails.js   |  3 +-
 lib/toaster/toastergui/templates/newproject.html   | 57 +++++++++++-----------
 lib/toaster/toastergui/views.py                    | 22 ++++++---
 lib/toaster/toastergui/widgets.py                  | 19 +++++---
 .../toastermain/management/commands/buildimport.py |  7 +--
 9 files changed, 107 insertions(+), 59 deletions(-)

-- 
1.9.1



^ permalink raw reply	[flat|nested] 11+ messages in thread
* [SUMO][PATCH 0/9] toaster: SUMO cummulative patch Aug 28 2018
@ 2018-09-06  5:26 David Reyna
  2018-09-06  5:26 ` [PATCH 1/9] toaster: allow pokydirname to be evaluated when all layers are local David Reyna
  0 siblings, 1 reply; 11+ messages in thread
From: David Reyna @ 2018-09-06  5:26 UTC (permalink / raw)
  To: bitbake-devel; +Cc: Awais Belal

From: David Reyna <David.Reyna@windriver.com>


This cumulative enhancement patch includes the following, to support
flexibility and usability for Toaster.

* 12891 - "Allow flexible value for TOASTERDIR plus custom fixture support"

  This supports the flexibility of having the Toaster base directory (used
  got the database and project build directories) to be specified by the user.
  It also allows for flexibility in the location of bitbake to be within one
  the specified local layers instead of being in the default fixed location.

* bitbake: toaster: Fix comparison in recipe template

  This helps prevent a page failure for certain circumstances, and is well
  worth porting back to Sumo.

- David


The following changes since commit 45ef387cc54a0584807e05a952e1e4681ec4c664:

  bitbake: checksum: sanity check path when recursively checksumming (2018-08-29 15:23:51 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib dreyna/submit/dreyna/toaster/sumo_cummulative_082618
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=dreyna/submit/dreyna/toaster/sumo_cummulative_082618

Awais Belal (8):
  toaster: allow pokydirname to be evaluated when all layers are local
  toaster: use a more flexible way to find bitbake
  bitbake: toaster: allow TOASTER_DIR to be overridden from cmdline
  toaster/widgets.py: avoid divide by zero issues
  toastergui/newproject.html: fix release divs
  toaster/checksettings: allow CUSTOM_XML_ONLY setting through env
  toaster/models.py: allow local paths for custom recipe's base
  toaster/layerdetails.js: don't hide local layer info

Karsten Strand (1):
  bitbake: toaster: Fix comparison in recipe template

 bin/toaster                                        |  9 +++++--
 lib/toaster/bldcontrol/localhostbecontroller.py    | 31 +++++++++++++++++++---
 .../management/commands/checksettings.py           |  3 ++-
 lib/toaster/orm/models.py                          |  7 +++++
 lib/toaster/toastergui/static/js/layerdetails.js   |  3 ++-
 lib/toaster/toastergui/templates/newproject.html   |  4 +--
 lib/toaster/toastergui/templates/recipe.html       |  2 +-
 lib/toaster/toastergui/widgets.py                  | 19 ++++++++-----
 8 files changed, 61 insertions(+), 17 deletions(-)

-- 
1.9.1



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2018-09-06  5:30 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-26 22:33 [PATCH 0/9] toaster: cummulative patch Aug 28 2018 David Reyna
2018-08-26 22:33 ` [PATCH 1/9] toaster: allow pokydirname to be evaluated when all layers are local David Reyna
2018-08-26 22:33 ` [PATCH 2/9] toaster: use a more flexible way to find bitbake David Reyna
2018-08-26 22:33 ` [PATCH 3/9] toaster: allow TOASTER_DIR to be overridden from cmdline David Reyna
2018-08-26 22:33 ` [PATCH 4/9] toaster/widgets.py: avoid divide by zero issues David Reyna
2018-08-26 22:33 ` [PATCH 5/9] toastergui/newproject.html: fix release divs David Reyna
2018-08-26 22:33 ` [PATCH 6/9] toaster/checksettings: allow CUSTOM_XML_ONLY setting through env David Reyna
2018-08-26 22:33 ` [PATCH 7/9] toaster/models.py: allow local paths for custom recipe's base David Reyna
2018-08-26 22:33 ` [PATCH 8/9] toaster/layerdetails.js: don't hide local layer info David Reyna
2018-08-26 22:33 ` [PATCH 9/9] toaster: enable project import and merged Toaster settings David Reyna
2018-09-06  5:26 [SUMO][PATCH 0/9] toaster: SUMO cummulative patch Aug 28 2018 David Reyna
2018-09-06  5:26 ` [PATCH 1/9] toaster: allow pokydirname to be evaluated when all layers are local David Reyna

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.