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.
This commit is contained in:
Ondřej Budai 2023-02-06 17:25:34 +01:00 committed by Simon de Vlieger
parent 917f628bba
commit c01caae3ac

View file

@ -26,7 +26,7 @@ SCHEMA_2 = """
"required": ["method"],
"properties": {
"method": {
"enum": ["gzip", "xz", "lz4"]
"enum": ["gzip", "lz4", "xz", "zstd"]
},
"options": {
"type": "object",