[bitbake-devel] [PATCH 00/11] toaster update database models patchset

Alex DAMIAN alexandru.damian at intel.com
Wed Aug 27 17:23:30 UTC 2014


From: Alexandru DAMIAN <alexandru.damian at intel.com>

This patchset adds changes to the database that allow compatibility with
the layerindex application. The functionality include:

 * update layer information from the layer index application
 * loading poky configuration file
 * updates to UI to allow use of the new data

The information contained in this model suffices for displaying data
in the designed 1.7 version.

Can you please review and pull at your convenience ?

Cheers,
Alex


The following changes since commit 5d858e23de8b15badc3ab7f56ad5160a76a89de1:

  bitbake.conf: Drop unused MKTEMP* variables (2014-08-24 10:09:53 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib adamian/20140827-submission-bb
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=adamian/20140827-submission-bb

Alexandru DAMIAN (11):
  toasterui: refactor log saving and save out-of-build errors
  toaster: fix application discovery in settings.py
  toaster: update orm models for layerindex compatibility
  toaster: enable admin interface on select models
  toaster: create project section navigation structure
  toaster: add all layers page
  toaster: update checksettings command for auto-detection
  toaster: update the bldcontrol to the new orm models
  toatergui:  update pages to match project models
  buildinfohelper: BuildRequest project file update soft linked
  toaster: create Build methods for calculating progress and ETA

 bin/toaster                                        |   9 +-
 lib/bb/ui/buildinfohelper.py                       |  81 ++-
 lib/bb/ui/toasterui.py                             |  10 +-
 lib/toaster/bldcontrol/admin.py                    |   8 +
 lib/toaster/bldcontrol/bbcontroller.py             |  35 +-
 .../management/commands/checksettings.py           | 190 +++++-
 .../bldcontrol/management/commands/runbuilds.py    |   2 +-
 .../migrations/0006_auto__add_brbitbake.py         | 128 ++++
 lib/toaster/bldcontrol/models.py                   |   5 +
 lib/toaster/orm/admin.py                           |  17 +
 lib/toaster/orm/management/__init__.py             |   0
 lib/toaster/orm/management/commands/__init__.py    |   0
 lib/toaster/orm/management/commands/lsupdates.py   |  12 +
 ...erversiondependency__add_unique_layerversion.py | 710 +++++++++++++++++++++
 lib/toaster/orm/models.py                          | 395 ++++++++++--
 lib/toaster/orm/tests.py                           |  33 +
 lib/toaster/toastergui/templates/layers.html       | 173 +++++
 lib/toaster/toastergui/templates/newproject.html   |   5 +-
 lib/toaster/toastergui/templates/project.html      |  51 +-
 lib/toaster/toastergui/urls.py                     |  11 +-
 lib/toaster/toastergui/views.py                    | 138 +++-
 lib/toaster/toastermain/settings.py                |  16 +-
 lib/toaster/toastermain/urls.py                    |  18 +-
 23 files changed, 1891 insertions(+), 156 deletions(-)
 create mode 100644 lib/toaster/bldcontrol/admin.py
 create mode 100644 lib/toaster/bldcontrol/migrations/0006_auto__add_brbitbake.py
 create mode 100644 lib/toaster/orm/admin.py
 create mode 100644 lib/toaster/orm/management/__init__.py
 create mode 100644 lib/toaster/orm/management/commands/__init__.py
 create mode 100644 lib/toaster/orm/management/commands/lsupdates.py
 create mode 100644 lib/toaster/orm/migrations/0013_auto__add_release__add_layerversiondependency__add_unique_layerversion.py
 create mode 100644 lib/toaster/orm/tests.py
 create mode 100755 lib/toaster/toastergui/templates/layers.html

-- 
1.9.1




More information about the bitbake-devel mailing list