public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Update WIC to bring in fspassno feature
@ 2022-06-13  7:53 Vijai Kumar K
  2022-06-13  7:54 ` [PATCH v2 1/2] meta-isar/wks: prepare wks for wic uprev Vijai Kumar K
  2022-06-13  7:54 ` [PATCH v2 2/2] wic: Update to the latest revision Vijai Kumar K
  0 siblings, 2 replies; 15+ messages in thread
From: Vijai Kumar K @ 2022-06-13  7:53 UTC (permalink / raw)
  To: isar-users; +Cc: henning.schild, jan.kiszka, Vijai Kumar K

Changes since v1:

- Captured potential breakage in RECIPE-API-CHANGELOG.

Thanks,
Vijai Kumar K

Vijai Kumar K (2):
  meta-isar/wks: prepare wks for wic uprev
  wic: Update to the latest revision

 RECIPE-API-CHANGELOG.md                       | 19 +++++++++++++++++++
 .../lib/wic/canned-wks/common-isar.wks.inc    |  2 +-
 .../lib/wic/canned-wks/de0-nano-soc.wks.in    |  2 +-
 .../lib/wic/canned-wks/efi-plus-pcbios.wks    |  2 +-
 .../scripts/lib/wic/canned-wks/hikey.wks      |  2 +-
 .../lib/wic/canned-wks/multipart-efi.wks      |  2 +-
 .../lib/wic/canned-wks/nanopi-neo.wks.in      |  2 +-
 .../scripts/lib/wic/canned-wks/rpi-sdimg.wks  |  2 +-
 .../lib/wic/canned-wks/sdimage-efi-sd.wks     |  2 +-
 .../lib/wic/canned-wks/sdimage-efi.wks        |  2 +-
 .../lib/wic/canned-wks/sifive-fu540.wks       |  2 +-
 .../lib/wic/canned-wks/stm32mp15x.wks.in      |  2 +-
 scripts/lib/wic/help.py                       |  6 ++++++
 scripts/lib/wic/ksparser.py                   |  1 +
 scripts/lib/wic/partition.py                  |  1 +
 scripts/lib/wic/plugins/imager/direct.py      |  5 +++--
 16 files changed, 41 insertions(+), 13 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 15+ messages in thread
* [PATCH v2 0/2] bump bitbake and wic for python 3.10 support
@ 2022-04-21  8:52 Henning Schild
  2022-04-21  8:52 ` [PATCH v2 2/2] wic: Update to the latest revision Henning Schild
  0 siblings, 1 reply; 15+ messages in thread
From: Henning Schild @ 2022-04-21  8:52 UTC (permalink / raw)
  To: isar-users; +Cc: Florian Bezdeka, Felix Moessbauer, Henning Schild

debian bookworm switched to python 3.10 recently, our versions of
bitbake and wic both have some issues with that new interpreter. All
these issues have been fixes in bitbake and OE, so all we need to do is
update the two tools in our tree.

v1 was send as "[PATCH] bitbake: Update to 1.50.5 release", which is p1
here, only later i found that wic also needs a bump to v2 added p2

If this series is applied we do not need "[PATCH] wic-img: use
python3.9 in bookworm", in case this one is applied before it should be
reverted after the version bumps.

Henning Schild (2):
  bitbake: Update to 1.50.5 release
  wic: Update to the latest revision

 bitbake/lib/bb/cache.py                       |  3 +-
 bitbake/lib/bb/cooker.py                      | 30 +++++++-
 bitbake/lib/bb/data_smart.py                  |  4 +-
 bitbake/lib/bb/fetch2/__init__.py             |  4 +
 bitbake/lib/bb/fetch2/perforce.py             |  2 +-
 bitbake/lib/bb/fetch2/wget.py                 |  2 +-
 bitbake/lib/bb/persist_data.py                |  5 +-
 bitbake/lib/bb/process.py                     |  2 +-
 bitbake/lib/bb/runqueue.py                    | 34 ++++----
 bitbake/lib/bb/server/process.py              |  2 +-
 bitbake/lib/bb/tests/fetch.py                 | 35 +++++----
 bitbake/lib/bb/utils.py                       | 13 +++-
 bitbake/lib/hashserv/server.py                |  4 +-
 bitbake/lib/toaster/tests/builds/buildtest.py |  2 +-
 .../wic/plugins/source/bootimg-efi-isar.py    | 77 ++++++++++++++++---
 .../wic/plugins/source/bootimg-pcbios-isar.py |  6 +-
 scripts/lib/wic/canned-wks/common.wks.inc     |  2 +-
 scripts/lib/wic/canned-wks/directdisk-gpt.wks |  2 +-
 scripts/lib/wic/canned-wks/mkefidisk.wks      |  2 +-
 scripts/lib/wic/engine.py                     |  6 +-
 scripts/lib/wic/help.py                       | 10 ++-
 scripts/lib/wic/ksparser.py                   |  8 +-
 scripts/lib/wic/misc.py                       |  4 +-
 scripts/lib/wic/partition.py                  | 25 ++++--
 scripts/lib/wic/pluginbase.py                 |  8 +-
 scripts/lib/wic/plugins/imager/direct.py      | 11 ++-
 scripts/lib/wic/plugins/source/bootimg-efi.py | 74 +++++++++++++++---
 .../lib/wic/plugins/source/bootimg-pcbios.py  |  6 +-
 scripts/lib/wic/plugins/source/rawcopy.py     | 35 ++++++++-
 scripts/lib/wic/plugins/source/rootfs.py      |  2 +-
 scripts/wic                                   |  9 ++-
 31 files changed, 320 insertions(+), 109 deletions(-)

-- 
2.35.1


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

end of thread, other threads:[~2022-09-26 12:34 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-13  7:53 [PATCH v2 0/2] Update WIC to bring in fspassno feature Vijai Kumar K
2022-06-13  7:54 ` [PATCH v2 1/2] meta-isar/wks: prepare wks for wic uprev Vijai Kumar K
2022-06-13  7:54 ` [PATCH v2 2/2] wic: Update to the latest revision Vijai Kumar K
2022-06-13  9:02   ` Henning Schild
2022-06-13  9:18     ` Kanagarajan, Vijaikumar
2022-06-17  5:45       ` Kanagarajan, Vijaikumar
2022-09-26  1:40         ` Moessbauer, Felix
2022-09-26  4:53           ` Kanagarajan, Vijaikumar
2022-09-26  5:57             ` Moessbauer, Felix
2022-09-26  7:46               ` Henning Schild
2022-09-26  7:56                 ` Kanagarajan, Vijaikumar
2022-09-26  8:02                   ` Moessbauer, Felix
2022-09-26 12:34                   ` Henning Schild
  -- strict thread matches above, loose matches on Subject: below --
2022-04-21  8:52 [PATCH v2 0/2] bump bitbake and wic for python 3.10 support Henning Schild
2022-04-21  8:52 ` [PATCH v2 2/2] wic: Update to the latest revision Henning Schild
2022-04-21  9:02   ` Henning Schild

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