diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-22 09:33:54 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-02 17:45:58 -0500 |
commit | ae625d92873d37679611e8d4bf58d2f23bf21446 (patch) | |
tree | f6a7d5a77fad769fe2c56f9eb18ea99222d51eac /lib | |
parent | 1d46753395316cebff1dac810577556a7d8f4f25 (diff) | |
download | u-boot-ae625d92873d37679611e8d4bf58d2f23bf21446.zip u-boot-ae625d92873d37679611e8d4bf58d2f23bf21446.tar.gz u-boot-ae625d92873d37679611e8d4bf58d2f23bf21446.tar.bz2 |
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 <sjg@chromium.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 83e5edd..1c93f52 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 |