All of lore.kernel.org
 help / color / mirror / Atom feed
* [isar-cip-core][RFC v1 0/6] Integrate Delta Update with rdiff_image and delta handler
@ 2024-03-07  7:46 Adithya Balakumar
  2024-03-07  7:46 ` [isar-cip-core][RFC v1 1/6] conf: Use bookworm backports for enabling delta handler in swupdate Adithya Balakumar
                   ` (6 more replies)
  0 siblings, 7 replies; 40+ messages in thread
From: Adithya Balakumar @ 2024-03-07  7:46 UTC (permalink / raw)
  To: cip-dev, jan.kiszka
  Cc: shivanand.kunijadar, sai.sathujoda, dinesh.kumar, kazuhiro3.hayashi

These series of patches enable the support for delta update for the root file system 
with swupdate's rdiff_image and delta handler(zchunk). For now, I send this as an RFC, 
as this needs to be reviewed by a broader audience.
 
A couple notes about the implementation:
- In this patchset, Delta update is only supported for the root file system.
- The newly added delta-update.bbclass handles the creation of the delta update artifacts.
- The update handler type i.e rdiff_image or delta handler is set in the variable "DELTA_UPDATE_TYPE" 
in the newly added delta-udpate.yml file along some variables required for each handler.
- The creation of delta artifact for the rdiff_image handler requires a reference image 
(against which the delta is computed). Currently the reference image (.wic) file is passed to the 
build system by path to the file from the project's root directory in the variable DELTA_RDIFF_REF_IMAGE 
in the delta-udpate.yml file.

Adithya Balakumar (6):
  conf: Use bookworm backports for enabling delta handler in swupdate
  swupdate-handler-roundrobin: Increase revision for Delta Handler
    support
  swupdate: Enable Delta handler in swupdate
  Add Delta update support with rdiff_image and delta handler
  swupdate.bbclass: Generate swu for delta updates
  doc/README.swupdate.md: Update steps to test Delta software Update

 classes/delta_update.bbclass                  | 90 ++++++++++++++++++
 classes/swupdate.bbclass                      | 35 ++++++-
 conf/distro/cip-core-bookworm.conf            |  3 +
 conf/distro/debian-bookworm-backports.list    |  1 +
 ...eferences.swupdate-bookworm-backports.conf | 12 +++
 doc/README.swupdate.md                        | 95 +++++++++++++++++++
 kas/opt/delta-update.yml                      | 21 ++++
 .../swupdate-handler-roundrobin_0.1.bb        |  2 +-
 recipes-core/swupdate/swupdate_2023.05.bb     |  3 +
 9 files changed, 259 insertions(+), 3 deletions(-)
 create mode 100644 classes/delta_update.bbclass
 create mode 100644 conf/distro/debian-bookworm-backports.list
 create mode 100644 conf/distro/preferences.swupdate-bookworm-backports.conf
 create mode 100644 kas/opt/delta-update.yml

-- 
2.39.2




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

end of thread, other threads:[~2024-03-18 11:51 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-07  7:46 [isar-cip-core][RFC v1 0/6] Integrate Delta Update with rdiff_image and delta handler Adithya Balakumar
2024-03-07  7:46 ` [isar-cip-core][RFC v1 1/6] conf: Use bookworm backports for enabling delta handler in swupdate Adithya Balakumar
2024-03-08 10:28   ` MOESSBAUER, Felix
2024-03-08 11:35   ` Jan Kiszka
2024-03-14  7:55     ` [cip-dev] " Gylstorff Quirin
2024-03-18  5:02       ` Adithya.Balakumar
2024-03-18  9:31         ` Gylstorff Quirin
2024-03-07  7:46 ` [isar-cip-core][RFC v1 2/6] swupdate-handler-roundrobin: Increase revision for Delta Handler support Adithya Balakumar
2024-03-07  7:46 ` [isar-cip-core][RFC v1 3/6] swupdate: Enable Delta handler in swupdate Adithya Balakumar
2024-03-08 11:35   ` Jan Kiszka
2024-03-13  9:32     ` Adithya.Balakumar
2024-03-14  6:56     ` [cip-dev] " Gylstorff Quirin
2024-03-14  7:51       ` Adithya.Balakumar
2024-03-07  7:46 ` [isar-cip-core][RFC v1 4/6] Add Delta update support with rdiff_image and delta handler Adithya Balakumar
2024-03-08 10:52   ` MOESSBAUER, Felix
2024-03-08 16:43     ` Gylstorff Quirin
2024-03-13  6:11     ` Adithya.Balakumar
2024-03-13 17:19       ` Gylstorff Quirin
2024-03-18 10:28         ` MOESSBAUER, Felix
2024-03-08 11:44   ` Jan Kiszka
2024-03-13  9:20     ` Adithya.Balakumar
2024-03-13 12:29       ` Jan Kiszka
2024-03-14  7:16         ` [cip-dev] " Adithya.Balakumar
2024-03-18 11:45   ` Wang, Qi
2024-03-18 11:51   ` Wang, Qi
2024-03-07  7:46 ` [isar-cip-core][RFC v1 5/6] swupdate.bbclass: Generate swu for delta updates Adithya Balakumar
2024-03-08 10:56   ` MOESSBAUER, Felix
2024-03-13  7:03     ` Adithya.Balakumar
2024-03-13 17:15       ` [cip-dev] " Gylstorff Quirin
2024-03-14  7:41         ` Adithya.Balakumar
2024-03-14  9:26           ` Gylstorff Quirin
2024-03-15  6:45             ` Adithya.Balakumar
2024-03-15  8:42               ` Gylstorff Quirin
2024-03-18  4:59                 ` Adithya.Balakumar
2024-03-18  9:34                   ` Gylstorff Quirin
2024-03-18 10:09                     ` Adithya.Balakumar
2024-03-07  7:46 ` [isar-cip-core][RFC v1 6/6] doc/README.swupdate.md: Update steps to test Delta software Update Adithya Balakumar
2024-03-08 11:47   ` Jan Kiszka
2024-03-12 13:16   ` [cip-dev] " Gylstorff Quirin
2024-03-08 11:48 ` [isar-cip-core][RFC v1 0/6] Integrate Delta Update with rdiff_image and delta handler Jan Kiszka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.