diff options
author | Weijie Gao | 2020-04-21 09:28:38 +0200 |
---|---|---|
committer | Daniel Schwierzeck | 2020-04-27 20:29:33 +0200 |
commit | 04cb39946c96e119a6a0978436662358aa33dbc9 (patch) | |
tree | 60c8f1979340a59621d9d94b8a47901f508ea41b /lib/Makefile | |
parent | df3bad96f35fdf0eeb5ddac87c4fc924c134882d (diff) |
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/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index ded9a932aa0..c6f862b0c22 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -67,6 +67,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/ |