All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/30] toaster: Merge analysis and managed modes
@ 2015-12-02 18:02 brian avery
  2015-12-02 18:02 ` [PATCH 01/30] toaster: don't allow to run toaster as a script brian avery
                   ` (29 more replies)
  0 siblings, 30 replies; 37+ messages in thread
From: brian avery @ 2015-12-02 18:02 UTC (permalink / raw)
  To: bitbake-devel

This large patchset merges the analysis (cli) and managed (toaster ui) modes so that
toaster can be started in one way (sourced just like oe-init-build-env) and can then
handle builds of both types.
-brian

The following changes since commit f09bf40d0d1a6fbaf2251f903d41d970c8a66e3a:

  toaster: toastergui tests Add generic test for ToasterTables widget (2015-12-02 10:41:34 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib bavery/submit/ed/2015-12-2_runOneWay-8279
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=bavery/submit/ed/2015-12-2_runOneWay-8279

Ed Bartosh (29):
  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
  toaster: get rid of complicated heuristics
  toaster: unset environment variables
  command: add CommandStarted event
  bb/ui: ignore CommandStarted event
  toasterui: process CommandStarted event

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

 bin/toaster                                        | 166 +++++++++------------
 lib/bb/command.py                                  |   6 +
 lib/bb/ui/buildinfohelper.py                       |  68 +++------
 lib/bb/ui/crumbs/runningbuild.py                   |   3 +-
 lib/bb/ui/knotty.py                                |   3 +-
 lib/bb/ui/toasterui.py                             |  21 +--
 lib/toaster/bldcontrol/bbcontroller.py             |  15 +-
 lib/toaster/bldcontrol/localhostbecontroller.py    | 140 ++++-------------
 .../bldcontrol/management/commands/runbuilds.py    |  13 +-
 lib/toaster/bldcontrol/sshbecontroller.py          |  10 --
 lib/toaster/bldcontrol/tests.py                    |   4 -
 lib/toaster/toastergui/templates/base.html         |   9 +-
 lib/toaster/toastergui/templates/landing.html      |  10 --
 lib/toaster/toastergui/templates/projectconf.html  |  70 +--------
 lib/toaster/toastergui/tests.py                    |   4 -
 lib/toaster/toastergui/views.py                    |  29 ----
 .../toastermain/management/commands/get-dburl.py   |   9 ++
 lib/toaster/toastermain/settings.py                |   3 -
 lib/toaster/toastermain/urls.py                    |   9 +-
 19 files changed, 167 insertions(+), 425 deletions(-)
 create mode 100644 bitbake/lib/toaster/toastermain/management/commands/get-dburl.py

--
1.9.1


^ permalink raw reply	[flat|nested] 37+ messages in thread
* [PATCH v6 00/30] toaster: 8279: Provide a single way of starting Toaster
@ 2015-11-26 11:27 Ed Bartosh
  2015-11-26 11:27 ` [PATCH 28/30] command: add CommandStarted event Ed Bartosh
  0 siblings, 1 reply; 37+ messages in thread
From: Ed Bartosh @ 2015-11-26 11:27 UTC (permalink / raw)
  To: toaster

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.

Please note that you need to also apply these 2 patches:
https://lists.yoctoproject.org/pipermail/toaster/2015-November/003254.html
They're logically belong to this patchset, but the upstream for them is
different, so I decided to send them separately.

Please review and test.

Changes in v4: Removed buildinfohelper code which was trying to guess layer
               version of the recipe. As a result of this bug Toaster
               UI was not showing any information about recipes.

Changes in v5: Rebased on top of latest toaster-next.
               Unset environment variables when toaster stops

Changes in v6: Fixed handling of parsing failures https://bugzilla.yoctoproject.org/show_bug.cgi?id=8279#c25

The following changes since commit c68c75e946fb166d8e7b42fb5da4f50917924095:

  toaster: change toasterconf.json logic to use TEMPLATECONF, like oe-setup-builddir (2015-11-23 11:58:16 +0200)

are available in the git repository at:

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

Ed Bartosh (29):
  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
  toaster: get rid of complicated heuristics
  toaster: unset environment variables
  command: add CommandStarted event
  bb/ui: ignore CommandStarted event
  toasterui: process CommandStarted event

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

 bitbake/bin/toaster                                | 166 +++++++++------------
 bitbake/lib/bb/command.py                          |   6 +
 bitbake/lib/bb/ui/buildinfohelper.py               |  68 +++------
 bitbake/lib/bb/ui/crumbs/runningbuild.py           |   3 +-
 bitbake/lib/bb/ui/knotty.py                        |   3 +-
 bitbake/lib/bb/ui/toasterui.py                     |  21 +--
 bitbake/lib/toaster/bldcontrol/bbcontroller.py     |  15 +-
 .../toaster/bldcontrol/localhostbecontroller.py    | 140 ++++-------------
 .../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 |   9 +-
 .../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 +-
 19 files changed, 167 insertions(+), 425 deletions(-)
 create mode 100644 bitbake/lib/toaster/toastermain/management/commands/get-dburl.py

--
Regards,
Ed



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

end of thread, other threads:[~2015-12-07 23:23 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-02 18:02 [PATCH 00/30] toaster: Merge analysis and managed modes brian avery
2015-12-02 18:02 ` [PATCH 01/30] toaster: don't allow to run toaster as a script brian avery
2015-12-02 18:02 ` [PATCH 02/30] toaster: implement get-dburl command brian avery
2015-12-02 18:02 ` [PATCH 03/30] toaster: set DATABASE_URL in toaster script brian avery
2015-12-02 18:02 ` [PATCH 04/30] toaster: run bitbake the same way brian avery
2015-12-02 18:02 ` [PATCH 05/30] toaster: remove unused variable brian avery
2015-12-03 13:49   ` Peter Kjellerstedt
2015-12-05 18:35     ` Brian Avery
2015-12-02 18:02 ` [PATCH 06/30] toaster: check for toaster configuration later brian avery
2015-12-02 18:02 ` [PATCH 07/30] toaster: use parent of the build dir brian avery
2015-12-02 18:02 ` [PATCH 08/30] toaster: make runbuilds to loop brian avery
2015-12-02 18:02 ` [PATCH 09/30] toaster: start 'manage.py runbuilds' in the script brian avery
2015-12-02 18:02 ` [PATCH 10/30] toaster: update brbe and project attributes brian avery
2015-12-02 18:02 ` [PATCH 11/30] toaster: implement stop_bitbake function brian avery
2015-12-02 18:02 ` [PATCH 12/30] toaster: implement start_bitbake function brian avery
2015-12-02 18:02 ` [PATCH 13/30] toaster: implement 'toaster restart-bitbake' brian avery
2015-12-02 18:02 ` [PATCH 14/30] toaster: remove _setupBE function brian avery
2015-12-02 18:02 ` [PATCH 15/30] toaster: reimplemented startBBServer method brian avery
2015-12-02 18:02 ` [PATCH 16/30] toaster: remove stopBBServer API brian avery
2015-12-02 18:02 ` [PATCH 17/30] toaster: do not terminate bb server brian avery
2015-12-02 18:02 ` [PATCH 18/30] toaster: remove usage of BUILD_MODE variable brian avery
2015-12-02 18:02 ` [PATCH 19/30] toaster: do not create duplicate HelpText objects brian avery
2015-12-02 18:02 ` [PATCH 20/30] toaster: buildinfohelper Broaden the toaster created recipe data case brian avery
2015-12-02 18:02 ` [PATCH 21/30] toaster: implement BitbakeController.getVariable brian avery
2015-12-02 18:02 ` [PATCH 22/30] toaster: set varibales on bitbake server brian avery
2015-12-02 18:02 ` [PATCH 23/30] toaster: remove writeConfFile API brian avery
2015-12-02 18:02 ` [PATCH 24/30] toaster: stop using toaster-pre.conf brian avery
2015-12-02 18:02 ` [PATCH 25/30] toaster: remove SDKMACHINE from project variables brian avery
2015-12-02 18:02 ` [PATCH 26/30] toaster: get rid of complicated heuristics brian avery
2015-12-02 18:02 ` [PATCH 27/30] toaster: unset environment variables brian avery
2015-12-02 18:03 ` [PATCH 28/30] command: add CommandStarted event brian avery
2015-12-07 17:36   ` Richard Purdie
2015-12-07 18:22     ` Ed Bartosh
2015-12-07 23:23       ` Richard Purdie
2015-12-02 18:03 ` [PATCH 29/30] bb/ui: ignore " brian avery
2015-12-02 18:03 ` [PATCH 30/30] toasterui: process " brian avery
  -- strict thread matches above, loose matches on Subject: below --
2015-11-26 11:27 [PATCH v6 00/30] toaster: 8279: Provide a single way of starting Toaster Ed Bartosh
2015-11-26 11:27 ` [PATCH 28/30] command: add CommandStarted event Ed Bartosh

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.