diff options
author | Atish Patra <atish.patra@wdc.com> | 2020-03-05 16:24:21 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-17 12:32:36 -0400 |
commit | 2a2119e10ca364d7c1539a9103b9fd3839dbe6ac (patch) | |
tree | d62865666dd0a6ddacb36893c4f9f6a8b6c10adf | |
parent | 8e434cb705d463bc8cff935160e4fb4c77cb99ab (diff) |
lib: kconfig: Add option to set BZIP2 compression method
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>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | lib/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 452f390c80..144a54da28 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 |