[U-Boot] [PATCH 3/3] gunzip.c: Only include gzwrite on CONFIG_CMD_UNZIP

Tom Rini trini at konsulko.com
Thu Jan 14 19:02:05 CET 2016


Only when we have CONFIG_CMD_UNZIP enabled do we have the 'gzwrite'
command.  While this command should be separated from CONFIG_CMD_UNZIP
we should also only include the write portion of the gz code in that
case as well.

Signed-off-by: Tom Rini <trini at konsulko.com>
---
 lib/gunzip.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/gunzip.c b/lib/gunzip.c
index d86aa87..80b157f 100644
--- a/lib/gunzip.c
+++ b/lib/gunzip.c
@@ -70,6 +70,7 @@ int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp)
 	return zunzip(dst, dstlen, src, lenp, 1, i);
 }
 
+#ifdef CONFIG_CMD_UNZIP
 __weak
 void gzwrite_progress_init(u64 expectedsize)
 {
@@ -258,6 +259,7 @@ out:
 
 	return r;
 }
+#endif
 
 /*
  * Uncompress blocks compressed with zlib without headers
-- 
2.6.4



More information about the U-Boot mailing list