Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 00/12] V3: Build wic images with bitbake
@ 2015-08-30 17:46 Ed Bartosh
  2015-08-30 17:46 ` [PATCH 01/12] image.py: write bitbake variables to .env file Ed Bartosh
                   ` (11 more replies)
  0 siblings, 12 replies; 14+ messages in thread
From: Ed Bartosh @ 2015-08-30 17:46 UTC (permalink / raw)
  To: openembedded-core

Hi Reviewers,

This patchset adds new image type 'wic' to the list of image types
supported by bitbake. This should allow to build partitioned image
the same way as any other images.

New image type can be used in image recipes almost the same way as other
image types. There is just one difference - <image>[.<machine>].wks file
should be put to the same location as image recipe.

To enable this functionality I've implemented generating .env files with
bitbake variables and reading them by wic. This seems to be the only way
to get bitbake variables in wic when it's run by bitbake as running
'bitbake -e' is not possible as bitbake is locked.

Test cases for new functionality and small improvements are also included
into this patchset.

Changes in V2:
- Fixed typo in the comment. Thanks Mario!
- Rebased on fresh master

Changes in V3:
- introduced WICVARS variable to define a list of variables used by wic.
  only variables mentioned in WICVARS will be written to <image>.env
- rebased on top of fresh master

The following changes since commit 6b17c3831897ee1d46a763d807c5bd863d426bc1:

  linux-yocto-3.14: Update to latest revisions (2015-08-30 12:47:51 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ed/wic/wic-image-type
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/wic/wic-image-type

Ed Bartosh (12):
  image.py: write bitbake variables to .env file
  oe-selftest: test generation of <image>.env
  wic: add BitbakeVars class
  wic: create new method _parse_line
  wic: add default_image attribute to BitbakeVars
  wic: set default image
  wic: implement getting variables from .env files
  wic: implement --vars option
  image_types.bbclass: add wic image type
  wic-image-minimal: add wic image recipe and .wks
  oe-selftest: test building wic image by bitbake
  wic: use bitbake variable ROOTFS_SIZE

 meta/classes/image_types.bbclass                   |  16 +++
 meta/lib/oe/image.py                               |  18 ++++
 meta/lib/oeqa/selftest/wic.py                      |  34 ++++++
 meta/recipes-extended/images/wic-image-minimal.bb  |  14 +++
 meta/recipes-extended/images/wic-image-minimal.wks |  10 ++
 scripts/lib/wic/imager/direct.py                   |  14 +++
 scripts/lib/wic/utils/oe/misc.py                   | 115 ++++++++++++++-------
 scripts/wic                                        |  12 ++-
 8 files changed, 195 insertions(+), 38 deletions(-)
 create mode 100644 meta/recipes-extended/images/wic-image-minimal.bb
 create mode 100644 meta/recipes-extended/images/wic-image-minimal.wks

--
Ed



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

end of thread, other threads:[~2015-08-30 20:37 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-30 17:46 [PATCH 00/12] V3: Build wic images with bitbake Ed Bartosh
2015-08-30 17:46 ` [PATCH 01/12] image.py: write bitbake variables to .env file Ed Bartosh
2015-08-30 17:46 ` [PATCH 02/12] oe-selftest: test generation of <image>.env Ed Bartosh
2015-08-30 17:47 ` [PATCH 03/12] wic: add BitbakeVars class Ed Bartosh
2015-08-30 17:47 ` [PATCH 04/12] wic: create new method _parse_line Ed Bartosh
2015-08-30 17:47 ` [PATCH 05/12] wic: add default_image attribute to BitbakeVars Ed Bartosh
2015-08-30 17:47 ` [PATCH 06/12] wic: set default image Ed Bartosh
2015-08-30 17:47 ` [PATCH 07/12] wic: implement getting variables from .env files Ed Bartosh
2015-08-30 17:47 ` [PATCH 08/12] wic: implement --vars option Ed Bartosh
2015-08-30 17:47 ` [PATCH 09/12] image_types.bbclass: add wic image type Ed Bartosh
2015-08-30 17:47 ` [PATCH 10/12] wic-image-minimal: add wic image recipe and .wks Ed Bartosh
2015-08-30 20:37   ` Richard Purdie
2015-08-30 17:47 ` [PATCH 11/12] oe-selftest: test building wic image by bitbake Ed Bartosh
2015-08-30 17:47 ` [PATCH 12/12] wic: use bitbake variable ROOTFS_SIZE Ed Bartosh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox