diff mbox series

[U-Boot,RFC/RFT,v3,1/3] lib: kconfig: Add option to set BZIP2 compression method

Message ID 20191106221522.28246-2-atish.patra@wdc.com
State Superseded
Delegated to: Tom Rini
Headers show
Series Add compressed Image booting support | expand

Commit Message

Atish Patra Nov. 6, 2019, 10:15 p.m. UTC
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 <atish.patra@wdc.com>
---
 lib/Kconfig | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Tom Rini Nov. 7, 2019, 10:22 p.m. UTC | #1
On Wed, Nov 06, 2019 at 02:15:20PM -0800, Atish Patra wrote:

> 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 <atish.patra@wdc.com>

With the note that when applying I need to run moveconfig.py on
CONFIG_BZIP2:

Reviewed-by: Tom Rini <trini@konsulko.com>
diff mbox series

Patch

diff --git a/lib/Kconfig b/lib/Kconfig
index 3da45a5ec322..b5dcdba23014 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -385,6 +385,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