All of lore.kernel.org
 help / color / mirror / Atom feed
From: Brian Avery <avery.brian@gmail.com>
To: Ed Bartosh <ed.bartosh@linux.intel.com>
Cc: toaster@yoctoproject.org
Subject: Re: [PATCH v4 00/26] toaster: 8279: Provide a single way of starting Toaster
Date: Mon, 16 Nov 2015 10:40:52 -0800	[thread overview]
Message-ID: <CAKV_0egP7GzXW=Grj3aCsBjifOD5pzXJO6hYvrwmYDey9ZGm-g@mail.gmail.com> (raw)
In-Reply-To: <cover.1447328915.git.ed.bartosh@linux.intel.com>

Hi,

I *finally* had a chance to play with your branch and had a couple of
comments.  sorry for the delay :(.

I had 2 biggish issues, and a couple of  middling issues. I'll put
them in the bugzilla comments for 8279
(https://bugzilla.yoctoproject.org/show_bug.cgi?id=8279) so we don't
lose track.

Ty for all the hard work!!!
-b

On Thu, Nov 12, 2015 at 4:04 AM, Ed Bartosh <ed.bartosh@linux.intel.com> wrote:
> 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.
>
> 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.
>
> The following changes since commit aa7690e182c9c307785e6e9679f3490583176421:
>
>   toaster: builds pages Fix the download cooker log link (2015-11-10 17:04:19 +0000)
>
> are available in the git repository at:
>
>   git://git.yoctoproject.org/poky-contrib ed/toaster/8279-v4
>   http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/8279-v4
>
> Ed Bartosh (25):
>   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
>
> Michael Wood (1):
>   toaster: buildinfohelper Broaden the toaster created recipe data case
>
>  bitbake/bin/toaster                                | 186 +++++++--------------
>  bitbake/lib/bb/ui/buildinfohelper.py               |  68 +++-----
>  bitbake/lib/bb/ui/toasterui.py                     |  14 +-
>  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, 150 insertions(+), 439 deletions(-)
>  create mode 100644 bitbake/lib/toaster/toastermain/management/commands/get-dburl.py
>
> --
> Regards,
> Ed
>
> --
> _______________________________________________
> toaster mailing list
> toaster@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/toaster


      parent reply	other threads:[~2015-11-16 18:40 UTC|newest]

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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAKV_0egP7GzXW=Grj3aCsBjifOD5pzXJO6hYvrwmYDey9ZGm-g@mail.gmail.com' \
    --to=avery.brian@gmail.com \
    --cc=ed.bartosh@linux.intel.com \
    --cc=toaster@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.