From 7264f2928b46c5f5685e39ed607652c8991e47b6 Mon Sep 17 00:00:00 2001 From: York Sun Date: Tue, 15 Aug 2017 11:14:43 -0700 Subject: spl: fit: Eanble GZIP support for image decompression Add Kconfig option SPL_GZIP and SPL_ZLIB to enable gunzip support for SPL boot, eg. falcon boot compressed kernel image. Signed-off-by: York Sun Reviewed-by: Tom Rini Reviewed-by: Simon Glass --- lib/Kconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/Kconfig') diff --git a/lib/Kconfig b/lib/Kconfig index fe337acaeb..628ef8ddb6 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -176,6 +176,18 @@ config LZO bool "Enable LZO decompression support" help This enables support for LZO compression algorithm.r + +config SPL_GZIP + bool "Enable gzip decompression support for SPL build" + select SPL_ZLIB + help + This enables support for GZIP compression altorithm for SPL boot. + +config SPL_ZLIB + bool + help + This enables compression lib for SPL boot. + endmenu config ERRNO_STR -- cgit v1.2.1