[PATCH 14/26 v6] lib: enable lzma decompression support for SPL build
Stefan Roese
sr at denx.de
Wed Apr 8 10:09:30 CEST 2020
From: Weijie Gao <weijie.gao at mediatek.com>
This patch enables LZMA decompression support for SPL build
Reviewed-by: Stefan Roese <sr at denx.de>
Reviewed-by: Tom Rini <trini at konsulko.com>
Signed-off-by: Weijie Gao <weijie.gao at mediatek.com>
---
Changes since v3: none
lib/Kconfig | 5 +++++
lib/Makefile | 1 +
2 files changed, 6 insertions(+)
diff --git a/lib/Kconfig b/lib/Kconfig
index ab6aff710d..5f52f14686 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -429,6 +429,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
diff --git a/lib/Makefile b/lib/Makefile
index 15259d0473..fa497a366d 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -66,6 +66,7 @@ obj-$(CONFIG_$(SPL_)ZLIB) += zlib/
obj-$(CONFIG_$(SPL_)ZSTD) += zstd/
obj-$(CONFIG_$(SPL_)GZIP) += gunzip.o
obj-$(CONFIG_$(SPL_)LZO) += lzo/
+obj-$(CONFIG_$(SPL_)LZMA) += lzma/
obj-$(CONFIG_$(SPL_)LZ4) += lz4_wrapper.o
obj-$(CONFIG_LIBAVB) += libavb/
--
2.26.0
More information about the U-Boot
mailing list