public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: "vijaikumar....@gmail.com" <vijaikumar.kanagarajan@gmail.com>
To: isar-users <isar-users@googlegroups.com>
Subject: Re: [PATCH v5 0/8] WIC update
Date: Mon, 5 Oct 2020 09:59:09 -0700 (PDT)	[thread overview]
Message-ID: <50439b41-5c80-4ad6-80a2-f7aa7806fe8dn@googlegroups.com> (raw)
In-Reply-To: <20201005165307.14668-1-Vijaikumar_Kanagarajan@mentor.com>


[-- Attachment #1.1: Type: text/plain, Size: 3918 bytes --]

CI build in progress.
http://ci.isar-build.org:8080/job/isar_vkk_devel/85/

Git tree: https://github.com/vj-kumar/isar/tree/wic/staging4

Thanks,
Vijai Kumar K
On Monday, October 5, 2020 at 10:23:33 PM UTC+5:30 
vijaikumar_...@mentor.com wrote:

> Changes since v4:
> - Rebase against latest next
>
> Changes since v3:
>
> - Rebase against the latest next. Drop P4 & P5 from previous series.
> - P7 fixes the kernel update in legacy bios boot image
> - Minor documentation changes.
>
> Changes since v2:
>
> - Dropped P9 from previous series and updated oe-core to the latest 
> revision
> which includes that patch.
> - Some minor commit message & API changelog changes.
>
> Changes since RFC(v1):
>
> - P9 commit is upstreamed and replaced with the version from OE-core.
> - P10: Lot of downstream projects tend to use /boot mountpoints for 
> bootloader/EFI
> partitions. Added RECIPE-API-CHANGELOG entry to warn user about potential 
> issues
> that might arise when doing so with latest wic.
>
> Vijai Kumar K (8):
> wic: Update to the latest wic from openembedded core
> wic/plugins: Fix wic plugins to work with the latest wic
> wic-img: Satisfy the quirks of latest wic
> wic_fakeroot: Handle standalone pseudo invocations
> meta-isar/conf: Add provision to debug WIC
> debian-common: Add tar as a dependency for wic
> Fix legacy bios boot partition
> meta-isar/canned-wks: Remove unwanted /boot mountpoint
>
> RECIPE-API-CHANGELOG.md | 26 +
> meta-isar/conf/local.conf.sample | 3 +
> .../lib/wic/canned-wks/common-isar.wks.inc | 2 +-
> .../scripts/lib/wic/canned-wks/hikey.wks | 2 +-
> .../lib/wic/canned-wks/sdimage-efi.wks | 2 +-
> meta/classes/wic-img.bbclass | 20 +-
> meta/conf/distro/debian-common.conf | 3 +-
> .../wic/plugins/source/bootimg-efi-isar.py | 2 +-
> .../wic/plugins/source/bootimg-pcbios-isar.py | 40 +-
> .../lib/wic/plugins/source/rootfs-u-boot.py | 2 +-
> scripts/lib/scriptpath.py | 32 ++
> scripts/lib/wic/__init__.py | 14 +-
> scripts/lib/wic/canned-wks/common.wks.inc | 2 +-
> .../directdisk-bootloader-config.cfg | 8 +-
> .../lib/wic/canned-wks/efi-bootdisk.wks.in | 3 +
> scripts/lib/wic/canned-wks/mkhybridiso.wks | 2 +-
> scripts/lib/wic/canned-wks/qemuriscv.wks | 3 +
> .../lib/wic/canned-wks/qemux86-directdisk.wks | 2 +-
> .../lib/wic/canned-wks/sdimage-bootpart.wks | 4 +-
> .../lib/wic/canned-wks/systemd-bootdisk.wks | 4 +-
> scripts/lib/wic/engine.py | 421 +++++++++++++++-
> scripts/lib/wic/filemap.py | 170 ++++---
> scripts/lib/wic/help.py | 401 ++++++++++++++--
> scripts/lib/wic/ksparser.py | 121 +++--
> scripts/lib/wic/{utils => }/misc.py | 100 ++--
> scripts/lib/wic/partition.py | 234 ++++-----
> scripts/lib/wic/pluginbase.py | 36 +-
> scripts/lib/wic/plugins/imager/direct.py | 175 ++++---
> .../wic/plugins/source/bootimg-biosplusefi.py | 213 +++++++++
> scripts/lib/wic/plugins/source/bootimg-efi.py | 171 +++++--
> .../wic/plugins/source/bootimg-partition.py | 153 ++++--
> .../lib/wic/plugins/source/bootimg-pcbios.py | 91 ++--
> scripts/lib/wic/plugins/source/fsimage.py | 56 ---
> .../wic/plugins/source/isoimage-isohybrid.py | 185 +++----
> scripts/lib/wic/plugins/source/rawcopy.py | 44 +-
> scripts/lib/wic/plugins/source/rootfs.py | 159 ++++--
> scripts/lib/wic/utils/__init__.py | 0
> scripts/lib/wic/utils/runner.py | 114 -----
> scripts/wic | 452 +++++++++++++-----
> scripts/wic_fakeroot | 5 +
> 40 files changed, 2434 insertions(+), 1043 deletions(-)
> create mode 100644 scripts/lib/scriptpath.py
> create mode 100644 scripts/lib/wic/canned-wks/efi-bootdisk.wks.in
> create mode 100644 scripts/lib/wic/canned-wks/qemuriscv.wks
> rename scripts/lib/wic/{utils => }/misc.py (70%)
> create mode 100644 scripts/lib/wic/plugins/source/bootimg-biosplusefi.py
> delete mode 100644 scripts/lib/wic/plugins/source/fsimage.py
> delete mode 100644 scripts/lib/wic/utils/__init__.py
> delete mode 100644 scripts/lib/wic/utils/runner.py
>
> -- 
> 2.17.1
>
>

[-- Attachment #1.2: Type: text/html, Size: 5269 bytes --]

  parent reply	other threads:[~2020-10-05 16:59 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-05 16:52 Vijai Kumar K
2020-10-05 16:53 ` [PATCH v5 1/8] wic: Update to the latest wic from openembedded core Vijai Kumar K
2020-10-05 16:53 ` [PATCH v5 2/8] wic/plugins: Fix wic plugins to work with the latest wic Vijai Kumar K
2020-10-05 16:53 ` [PATCH v5 3/8] wic-img: Satisfy the quirks of " Vijai Kumar K
2020-10-14  8:59   ` vijaikumar....@gmail.com
2020-10-05 16:53 ` [PATCH v5 4/8] wic_fakeroot: Handle standalone pseudo invocations Vijai Kumar K
2020-10-05 16:55   ` [PATCH v5 5/8] meta-isar/conf: Add provision to debug WIC Vijai Kumar K
2020-10-05 16:55     ` [PATCH v5 6/8] debian-common: Add tar as a dependency for wic Vijai Kumar K
2020-10-05 16:55     ` [PATCH v5 7/8] Fix legacy bios boot partition Vijai Kumar K
2020-10-05 16:55     ` [PATCH v5 8/8] meta-isar/canned-wks: Remove unwanted /boot mountpoint Vijai Kumar K
2020-10-05 16:59 ` vijaikumar....@gmail.com [this message]
2020-10-06  4:55   ` [PATCH v5 0/8] WIC update vijaikumar....@gmail.com
2020-10-06  9:13     ` Baurzhan Ismagulov
2020-10-07 10:49       ` vijaikumar....@gmail.com
2020-10-13 18:22         ` Jan Kiszka
2020-10-13 18:30           ` Jan Kiszka
2020-10-14  5:56             ` vijaikumar....@gmail.com
2020-10-14 13:23             ` vijaikumar....@gmail.com
2020-10-14  5:54           ` vijaikumar....@gmail.com

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=50439b41-5c80-4ad6-80a2-f7aa7806fe8dn@googlegroups.com \
    --to=vijaikumar.kanagarajan@gmail.com \
    --cc=isar-users@googlegroups.com \
    /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