Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Ed Bartosh <ed.bartosh@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 00/17] wic improvements
Date: Wed,  2 Sep 2015 13:58:00 +0300	[thread overview]
Message-ID: <cover.1441191270.git.ed.bartosh@linux.intel.com> (raw)

Hi,

This patchset included various wic improvements:
- Fixed boot failure caused by switched off ext3 in the kernel
- Moved all wic modules to scripts/lib/wic
- Removed mic leftovers
- Removed 3rd party command line parser cmdln
- Covered building of all canned images with tests
- Code cleanup

The following changes since commit 71b0568fa43285f0946fae93fb43cea5f3bbecec:

  rt-tests: drop unnecessary added-missing-dependencies.patch (2015-09-01 11:44:04 +0100)

are available in the git repository at:

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

Ed Bartosh (17):
  wic: use ext4 in canned .wks files
  wic: get rid of scripts/lib/image
  oe-selftest: wic: configure a build
  wic: add test cases for 3 images
  wic: fix typo
  wic: remove micpartition.py
  wic: remove micboot.py
  wic: fix errors in partition.py module
  wic: get rid of wildcard imports
  wic: fix pylint warning multiple-statements
  wic: use optparse instead of cmdln
  wic: fix pylint warning no-member
  wic: fix pylint warning unused-variable
  wic: fix pylint warning redefined-builtin
  wic: get rid of listing properties
  wic: fix short variable names
  image.py: rename _write_env -> _write_wic_env

 meta/lib/oe/image.py                               |    4 +-
 meta/lib/oeqa/selftest/wic.py                      |   34 +-
 scripts/lib/image/__init__.py                      |   22 -
 .../{image => wic}/canned-wks/directdisk-gpt.wks   |    4 +-
 .../canned-wks/directdisk-multi-rootfs.wks         |    6 +-
 .../lib/{image => wic}/canned-wks/directdisk.wks   |    4 +-
 .../lib/{image => wic}/canned-wks/mkefidisk.wks    |    4 +-
 .../lib/{image => wic}/canned-wks/mkgummidisk.wks  |    4 +-
 .../lib/{image => wic}/canned-wks/mkhybridiso.wks  |    2 +-
 .../canned-wks/qemux86-directdisk.wks              |    0
 .../{image => wic}/canned-wks/sdimage-bootpart.wks |    0
 scripts/lib/wic/conf.py                            |    5 +-
 scripts/lib/{image => wic}/config/wic.conf         |    0
 scripts/lib/wic/creator.py                         |  115 +-
 scripts/lib/{image => wic}/engine.py               |  141 +-
 scripts/lib/{image => wic}/help.py                 |   97 +-
 scripts/lib/wic/imager/baseimager.py               |    8 +-
 scripts/lib/wic/imager/direct.py                   |   74 +-
 scripts/lib/wic/kickstart/__init__.py              |   66 +-
 .../lib/wic/kickstart/custom_commands/__init__.py  |    4 -
 .../lib/wic/kickstart/custom_commands/micboot.py   |   50 -
 .../wic/kickstart/custom_commands/micpartition.py  |   57 -
 .../lib/wic/kickstart/custom_commands/partition.py |  108 +-
 .../lib/wic/kickstart/custom_commands/wicboot.py   |   31 +-
 scripts/lib/wic/msger.py                           |   13 +-
 scripts/lib/wic/plugin.py                          |   14 +-
 scripts/lib/wic/pluginbase.py                      |   14 +-
 scripts/lib/wic/plugins/imager/direct_plugin.py    |    6 +-
 scripts/lib/wic/plugins/source/bootimg-efi.py      |   32 +-
 scripts/lib/wic/plugins/source/bootimg-pcbios.py   |   34 +-
 .../lib/wic/plugins/source/isoimage-isohybrid.py   |   32 +-
 scripts/lib/wic/utils/cmdln.py                     | 1585 --------------------
 scripts/lib/wic/utils/oe/misc.py                   |    2 +-
 scripts/lib/wic/utils/partitionedfs.py             |  154 +-
 scripts/lib/wic/utils/runner.py                    |   19 +-
 scripts/wic                                        |   23 +-
 36 files changed, 463 insertions(+), 2305 deletions(-)
 delete mode 100644 scripts/lib/image/__init__.py
 rename scripts/lib/{image => wic}/canned-wks/directdisk-gpt.wks (75%)
 rename scripts/lib/{image => wic}/canned-wks/directdisk-multi-rootfs.wks (87%)
 rename scripts/lib/{image => wic}/canned-wks/directdisk.wks (70%)
 rename scripts/lib/{image => wic}/canned-wks/mkefidisk.wks (76%)
 rename scripts/lib/{image => wic}/canned-wks/mkgummidisk.wks (76%)
 rename scripts/lib/{image => wic}/canned-wks/mkhybridiso.wks (96%)
 rename scripts/lib/{image => wic}/canned-wks/qemux86-directdisk.wks (100%)
 rename scripts/lib/{image => wic}/canned-wks/sdimage-bootpart.wks (100%)
 rename scripts/lib/{image => wic}/config/wic.conf (100%)
 rename scripts/lib/{image => wic}/engine.py (59%)
 rename scripts/lib/{image => wic}/help.py (88%)
 delete mode 100644 scripts/lib/wic/kickstart/custom_commands/micboot.py
 delete mode 100644 scripts/lib/wic/kickstart/custom_commands/micpartition.py
 delete mode 100644 scripts/lib/wic/utils/cmdln.py

--
Ed



             reply	other threads:[~2015-09-02 10:58 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-02 10:58 Ed Bartosh [this message]
2015-09-02 10:58 ` [PATCH 01/17] wic: use ext4 in canned .wks files Ed Bartosh
2015-09-02 10:58 ` [PATCH 02/17] wic: get rid of scripts/lib/image Ed Bartosh
2015-09-02 10:58 ` [PATCH 03/17] oe-selftest: wic: configure a build Ed Bartosh
2015-09-02 10:58 ` [PATCH 04/17] wic: add test cases for 3 images Ed Bartosh
2015-09-02 10:58 ` [PATCH 05/17] wic: fix typo Ed Bartosh
2015-09-02 10:58 ` [PATCH 06/17] wic: remove micpartition.py Ed Bartosh
2015-09-02 10:58 ` [PATCH 07/17] wic: remove micboot.py Ed Bartosh
2015-09-02 10:58 ` [PATCH 08/17] wic: fix errors in partition.py module Ed Bartosh
2015-09-02 10:58 ` [PATCH 09/17] wic: get rid of wildcard imports Ed Bartosh
2015-09-02 10:58 ` [PATCH 10/17] wic: fix pylint warning multiple-statements Ed Bartosh
2015-09-02 10:58 ` [PATCH 11/17] wic: use optparse instead of cmdln Ed Bartosh
2015-09-02 10:58 ` [PATCH 12/17] wic: fix pylint warning no-member Ed Bartosh
2015-09-02 10:58 ` [PATCH 13/17] wic: fix pylint warning unused-variable Ed Bartosh
2015-09-02 10:58 ` [PATCH 14/17] wic: fix pylint warning redefined-builtin Ed Bartosh
2015-09-02 10:58 ` [PATCH 15/17] wic: get rid of listing properties Ed Bartosh
2015-09-02 10:58 ` [PATCH 16/17] wic: fix short variable names Ed Bartosh
2015-09-02 10:58 ` [PATCH 17/17] image.py: rename _write_env -> _write_wic_env Ed Bartosh

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=cover.1441191270.git.ed.bartosh@linux.intel.com \
    --to=ed.bartosh@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox