From 3c343d79a839fd027a7810915f9cab3393b1d7fd Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Wed, 22 Feb 2023 09:33:54 -0700 Subject: [PATCH] lib: Add a Kconfig for SPL_BZIP2 This is implicitly used in the source and seems useful, so add it. Signed-off-by: Simon Glass --- lib/Kconfig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/Kconfig b/lib/Kconfig index 83e5edd73b..1c93f523b3 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -727,6 +727,12 @@ config ZSTD_LIB_MINIFY endif +config SPL_BZIP2 + bool "Enable bzip2 decompression support for SPL build" + depends on SPL + help + This enables support for bzip2 compression algorithm for SPL boot. + config SPL_LZ4 bool "Enable LZ4 decompression support in SPL" depends on SPL -- 2.39.5