[PATCH] scripts:extract-ikconfig: add support for zstd compression

From: Nour-eddine Taleb
Date: Sun Nov 21 2021 - 10:07:06 EST


update the to accept kernel images using zstd compression.

Signed-off-by: Nour-eddine Taleb <kernel.noureddine@xxxxxxxxx>
---
scripts/extract-ikconfig | 2 ++
1 file changed, 2 insertions(+)

diff --git a/scripts/extract-ikconfig b/scripts/extract-ikconfig
index 3b42f255e2ba..5cbf6f1d7f56 100755
--- a/scripts/extract-ikconfig
+++ b/scripts/extract-ikconfig
@@ -62,6 +62,8 @@ try_decompress 'BZh' xy bunzip2
try_decompress '\135\0\0\0' xxx unlzma
try_decompress '\211\114\132' xy 'lzop -d'
try_decompress '\002\041\114\030' xyy 'lz4 -d -l'
+try_decompress '\002!L\030' xxx 'lz4 -d'
+try_decompress '(\265/\375' xxx unzstd

# Bail out:
echo "$me: Cannot find kernel config." >&2
--
2.33.1