From c01caae3ac587377e1a397ec6c24b22951b9c9a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Mon, 6 Feb 2023 17:25:34 +0100 Subject: [PATCH] stages/squashfs: add support for zstd compression Fedora and RHEL 9 kernels support it and since it's an interesting alternative to other compression methods, we should support it in osbuild. I also took the liberty of sorting the compression methods alphabetically. --- stages/org.osbuild.squashfs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/org.osbuild.squashfs b/stages/org.osbuild.squashfs index 71eee41b..4eb53772 100755 --- a/stages/org.osbuild.squashfs +++ b/stages/org.osbuild.squashfs @@ -26,7 +26,7 @@ SCHEMA_2 = """ "required": ["method"], "properties": { "method": { - "enum": ["gzip", "xz", "lz4"] + "enum": ["gzip", "lz4", "xz", "zstd"] }, "options": { "type": "object",