diff mbox series

[U-Boot,v5,07/10] lib: allow building lzo and gunzip for the SPL

Message ID 1505227539-17560-8-git-send-email-jjhiblot@ti.com
State Superseded
Delegated to: Tom Rini
Headers show
Series spl: dm: Make it possible for the SPL to pick its own DTB from a FIT | expand

Commit Message

Jean-Jacques Hiblot Sept. 12, 2017, 2:45 p.m. UTC
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 lib/Kconfig  | 17 ++++++++++++++++-
 lib/Makefile |  6 +++---
 2 files changed, 19 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/lib/Kconfig b/lib/Kconfig
index fe337ac..7617006 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -175,7 +175,22 @@  config LZMA
 config LZO
 	bool "Enable LZO decompression support"
 	help
-	  This enables support for LZO compression algorithm.r
+	  This enables support for LZO compression algorithm.
+
+config SPL_LZO
+	bool "Enable LZO decompression support in SPL"
+	help
+	  This enables support for LZO compression algorithm in the SPL.
+
+config SPL_GZIP
+	bool "Enable GZIP decompression support in SPL"
+	select SPL_ZLIB
+	help
+	  This enables support for GZIP compression algorithm in the SPL.
+
+config SPL_ZLIB
+	bool
+
 endmenu
 
 config ERRNO_STR
diff --git a/lib/Makefile b/lib/Makefile
index 2eef1eb..767983c 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -4,14 +4,15 @@ 
 #
 # SPDX-License-Identifier:	GPL-2.0+
 #
+obj-$(CONFIG_$(SPL_)ZLIB) += zlib/
+obj-$(CONFIG_$(SPL_)GZIP) += gunzip.o
+obj-$(CONFIG_$(SPL_)LZO) += lzo/
 
 ifndef CONFIG_SPL_BUILD
 
 obj-$(CONFIG_EFI) += efi/
 obj-$(CONFIG_EFI_LOADER) += efi_loader/
 obj-$(CONFIG_LZMA) += lzma/
-obj-$(CONFIG_LZO) += lzo/
-obj-$(CONFIG_ZLIB) += zlib/
 obj-$(CONFIG_BZIP2) += bzip2/
 obj-$(CONFIG_TIZEN) += tizen/
 obj-$(CONFIG_FIT) += libfdt/
@@ -26,7 +27,6 @@  obj-y += crc16.o
 obj-$(CONFIG_ERRNO_STR) += errno_str.o
 obj-$(CONFIG_FIT) += fdtdec_common.o
 obj-$(CONFIG_TEST_FDTDEC) += fdtdec_test.o
-obj-$(CONFIG_GZIP) += gunzip.o
 obj-$(CONFIG_GZIP_COMPRESSED) += gzip.o
 obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += smbios.o
 obj-y += initcall.o