From patchwork Fri Mar 6 00:24:21 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Atish Patra X-Patchwork-Id: 243272 List-Id: U-Boot discussion From: atish.patra at wdc.com (Atish Patra) Date: Thu, 5 Mar 2020 16:24:21 -0800 Subject: [RFT PATCH v5 1/3] lib: kconfig: Add option to set BZIP2 compression method In-Reply-To: <20200306002423.3954-1-atish.patra@wdc.com> References: <20200306002423.3954-1-atish.patra@wdc.com> Message-ID: <20200306002423.3954-2-atish.patra@wdc.com> There is no way to select BZIP2 compression method. Add it under library/compression config where all other compression related configs are present. Signed-off-by: Atish Patra Reviewed-by: Tom Rini --- lib/Kconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/Kconfig b/lib/Kconfig index ab6aff710dd6..ff8e955f899a 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -409,6 +409,11 @@ config GZIP help This enables support for GZIP compression algorithm. +config BZIP2 + bool "Enable bzip2 decompression support" + help + This enables support for BZIP2 compression algorithm. + config ZLIB bool default y