mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
gunzip.c: Only include gzwrite on CONFIG_CMD_UNZIP
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@konsulko.com>
This commit is contained in:
parent
b5db3c2c7e
commit
1811b7d38c
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue