Openembedded Core Discussions
 help / color / mirror / Atom feed
* [OE-Core][PATCH v3] wic: rawcopy: add support for zsdt decompression
@ 2023-11-13 14:01 lukas.funke-oss
  2023-11-14 11:04 ` Alexandre Belloni
  0 siblings, 1 reply; 2+ messages in thread
From: lukas.funke-oss @ 2023-11-13 14:01 UTC (permalink / raw)
  To: openembedded-core; +Cc: Malte Schmidt

From: Malte Schmidt <malte.schmidt@weidmueller.com>

---
 scripts/lib/wic/plugins/source/rawcopy.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/lib/wic/plugins/source/rawcopy.py b/scripts/lib/wic/plugins/source/rawcopy.py
index 7c90cd3cf8..82d38fbb84 100644
--- a/scripts/lib/wic/plugins/source/rawcopy.py
+++ b/scripts/lib/wic/plugins/source/rawcopy.py
@@ -52,7 +52,8 @@ class RawCopyPlugin(SourcePlugin):
         decompressor = {
             ".bz2": "bzip2",
             ".gz": "gzip",
-            ".xz": "xz"
+            ".xz": "xz",
+            ".zst": "zstd -f",
         }.get(extension)
         if not decompressor:
             raise WicError("Not supported compressor filename extension: %s" % extension)
-- 
2.30.2



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

end of thread, other threads:[~2023-11-14 11:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-13 14:01 [OE-Core][PATCH v3] wic: rawcopy: add support for zsdt decompression lukas.funke-oss
2023-11-14 11:04 ` Alexandre Belloni

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