All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] toaster: 8279: Provide a single way of starting Toaster
@ 2015-10-27 17:27 Ed Bartosh
  2015-10-27 17:27 ` [PATCH 01/25] toaster: don't allow to run toaster as a script Ed Bartosh
                   ` (26 more replies)
  0 siblings, 27 replies; 30+ messages in thread
From: Ed Bartosh @ 2015-10-27 17:27 UTC (permalink / raw)
  To: toaster

Hi,

This patchset merges two Toaster modes in one:

To run toaster you should source it in already prepared build environment:
  cd poky
  . oe-init-build-env
  . ../bitbake/bin/toaster

After that you should be able to trigger builds both ways:
from command line and from toaster UI.

The following changes since commit 8a0d8eee432924433c3e70198aaeab3161476c5f:

  toaster manual: Updated the set up and use chapter (2015-10-27 07:28:22 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ed/toaster/8279-v3
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/8279-v3

Ed Bartosh (24):
  toaster: don't allow to run toaster as a script
  toaster: implement get-dburl command
  toaster: set DATABASE_URL in toaster script
  toaster: run bitbake the same way
  toaster: remove unused variable
  toaster: check for toaster configuration later
  toaster: use parent of the build dir
  toaster: make runbuilds to loop
  toaster: start 'manage.py runbuilds' in the script
  toaster: update brbe and project attributes
  toaster: implement stop_bitbake function
  toaster: implement start_bitbake function
  toaster: implement 'toaster restart-bitbake'
  toaster: remove _setupBE function
  toaster: reimplemented startBBServer method
  toaster: remove stopBBServer API
  toaster: do not terminate bb server
  toaster: remove usage of BUILD_MODE variable
  toaster: do not create duplicate HelpText objects
  toaster: implement BitbakeController.getVariable
  toaster: set varibales on bitbake server
  toaster: remove writeConfFile API
  toaster: stop using toaster-pre.conf
  toaster: remove SDKMACHINE from project variables

Michael Wood (1):
  toaster: buildinfohelper Broaden the toaster created recipe data case

 bitbake/bin/toaster                                | 186 +++++++--------------
 bitbake/lib/bb/ui/buildinfohelper.py               |  23 +--
 bitbake/lib/bb/ui/toasterui.py                     |  15 +-
 bitbake/lib/toaster/bldcontrol/bbcontroller.py     |  15 +-
 .../toaster/bldcontrol/localhostbecontroller.py    | 132 ++++-----------
 .../bldcontrol/management/commands/runbuilds.py    |  13 +-
 bitbake/lib/toaster/bldcontrol/sshbecontroller.py  |  10 --
 bitbake/lib/toaster/bldcontrol/tests.py            |   4 -
 bitbake/lib/toaster/toastergui/templates/base.html |  13 +-
 .../lib/toaster/toastergui/templates/landing.html  |  10 --
 .../toaster/toastergui/templates/projectconf.html  |  70 +-------
 bitbake/lib/toaster/toastergui/tests.py            |   4 -
 bitbake/lib/toaster/toastergui/views.py            |  29 ----
 .../toastermain/management/commands/get-dburl.py   |   9 +
 bitbake/lib/toaster/toastermain/settings.py        |   3 -
 bitbake/lib/toaster/toastermain/urls.py            |   9 +-
 16 files changed, 142 insertions(+), 403 deletions(-)
 create mode 100644 bitbake/lib/toaster/toastermain/management/commands/get-dburl.py

--
Ed



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

end of thread, other threads:[~2015-11-09 16:55 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-27 17:27 [PATCH 00/25] toaster: 8279: Provide a single way of starting Toaster Ed Bartosh
2015-10-27 17:27 ` [PATCH 01/25] toaster: don't allow to run toaster as a script Ed Bartosh
2015-10-27 17:27 ` [PATCH 02/25] toaster: implement get-dburl command Ed Bartosh
2015-10-27 17:28 ` [PATCH 03/25] toaster: set DATABASE_URL in toaster script Ed Bartosh
2015-10-27 17:28 ` [PATCH 04/25] toaster: run bitbake the same way Ed Bartosh
2015-10-27 17:28 ` [PATCH 05/25] toaster: remove unused variable Ed Bartosh
2015-10-27 17:28 ` [PATCH 06/25] toaster: check for toaster configuration later Ed Bartosh
2015-10-27 17:28 ` [PATCH 07/25] toaster: use parent of the build dir Ed Bartosh
2015-10-27 17:28 ` [PATCH 08/25] toaster: make runbuilds to loop Ed Bartosh
2015-10-27 17:28 ` [PATCH 09/25] toaster: start 'manage.py runbuilds' in the script Ed Bartosh
2015-10-27 17:28 ` [PATCH 10/25] toaster: update brbe and project attributes Ed Bartosh
2015-10-27 17:28 ` [PATCH 11/25] toaster: implement stop_bitbake function Ed Bartosh
2015-10-27 17:28 ` [PATCH 12/25] toaster: implement start_bitbake function Ed Bartosh
2015-10-27 17:28 ` [PATCH 13/25] toaster: implement 'toaster restart-bitbake' Ed Bartosh
2015-10-27 17:28 ` [PATCH 14/25] toaster: remove _setupBE function Ed Bartosh
2015-10-27 17:28 ` [PATCH 15/25] toaster: reimplemented startBBServer method Ed Bartosh
2015-10-27 17:28 ` [PATCH 16/25] toaster: remove stopBBServer API Ed Bartosh
2015-10-27 17:28 ` [PATCH 17/25] toaster: do not terminate bb server Ed Bartosh
2015-10-27 17:28 ` [PATCH 18/25] toaster: remove usage of BUILD_MODE variable Ed Bartosh
2015-10-27 17:28 ` [PATCH 19/25] toaster: do not create duplicate HelpText objects Ed Bartosh
2015-10-27 17:28 ` [PATCH 20/25] toaster: buildinfohelper Broaden the toaster created recipe data case Ed Bartosh
2015-10-27 17:28 ` [PATCH 21/25] toaster: implement BitbakeController.getVariable Ed Bartosh
2015-10-27 17:28 ` [PATCH 22/25] toaster: set varibales on bitbake server Ed Bartosh
2015-10-27 17:28 ` [PATCH 23/25] toaster: remove writeConfFile API Ed Bartosh
2015-10-27 17:28 ` [PATCH 24/25] toaster: stop using toaster-pre.conf Ed Bartosh
2015-10-27 17:28 ` [PATCH 25/25] toaster: remove SDKMACHINE from project variables Ed Bartosh
2015-11-03 10:53 ` [PATCH 00/25] toaster: 8279: Provide a single way of starting Toaster Barros Pena, Belen
2015-11-09 16:23 ` Smith, Elliot
2015-11-09 16:30   ` Smith, Elliot
2015-11-09 16:54     ` Barros Pena, Belen

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.