summaryrefslogtreecommitdiff
path: root/target/config
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2024-01-17 19:31:45 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2024-01-17 19:31:45 +0100
commit6eacd00ca052663aa1e3fdd6378990618b0db69a (patch)
treecc1c6f8893cc7f892257387bd0d42c984bcd82be /target/config
parentf590e7e918469cd1e8472c5c1eca1f6345b39510 (diff)
add zstd support for Linux kernel compression
Diffstat (limited to 'target/config')
-rw-r--r--target/config/Config.in.tools9
1 files changed, 9 insertions, 0 deletions
diff --git a/target/config/Config.in.tools b/target/config/Config.in.tools
index 0f20f3afe..9433bfa89 100644
--- a/target/config/Config.in.tools
+++ b/target/config/Config.in.tools
@@ -191,6 +191,14 @@ config ADK_HOST_BUILD_GENEXT2FS
bool
default n
+config ADK_HOST_NEED_ZSTD
+ bool
+ default n
+
+config ADK_HOST_BUILD_ZSTD
+ bool
+ default n
+
config ADK_HOST_NEED_LZ4
bool
default n
@@ -315,6 +323,7 @@ config ADK_COMPRESSION_TOOL
default "gzip -n9" if ADK_LINUX_KERNEL_INITRAMFS_COMPRESSION_GZIP
default "bzip2" if ADK_LINUX_KERNEL_INITRAMFS_COMPRESSION_BZIP2
default "xz -v --check=crc32 --lzma2=dict=1MiB" if ADK_LINUX_KERNEL_INITRAMFS_COMPRESSION_XZ
+ default "zstd" if ADK_LINUX_KERNEL_INITRAMFS_COMPRESSION_ZSTD
default "lz4c -l" if ADK_LINUX_KERNEL_INITRAMFS_COMPRESSION_LZ4
default "lzma -9" if ADK_LINUX_KERNEL_INITRAMFS_COMPRESSION_LZMA
default "lzop" if ADK_LINUX_KERNEL_INITRAMFS_COMPRESSION_LZO