diff options
author | Weijie Gao <weijie.gao@mediatek.com> | 2020-04-21 09:28:38 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2020-04-27 20:29:33 +0200 |
commit | 04cb39946c96e119a6a0978436662358aa33dbc9 (patch) | |
tree | 60c8f1979340a59621d9d94b8a47901f508ea41b /lib/Kconfig | |
parent | df3bad96f35fdf0eeb5ddac87c4fc924c134882d (diff) | |
download | u-boot-04cb39946c96e119a6a0978436662358aa33dbc9.tar.gz |
lib: enable lzma decompression support for SPL build
This patch enables LZMA decompression support for SPL build
Reviewed-by: Stefan Roese <sr@denx.de>
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 144a54da28..868de3bf3b 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -434,6 +434,11 @@ config SPL_LZ4 fast compression and decompression speed. It belongs to the LZ77 family of byte-oriented compression schemes. +config SPL_LZMA + bool "Enable LZMA decompression support for SPL build" + help + This enables support for LZMA compression altorithm for SPL boot. + config SPL_LZO bool "Enable LZO decompression support in SPL" help |