diff options
| author | Robert Marko <robert.marko@sartura.hr> | 2020-04-25 19:37:21 +0200 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2020-07-07 15:37:13 -0400 |
| commit | 26073f9ed3ab0aaf3c2a2b433fecb30a95a067d6 (patch) | |
| tree | c6bf6bb316d7d925315ae1a6f3287d8268dfad59 /include | |
| parent | e369790843d87c2089ae93cd2345723a95ace71d (diff) | |
| download | u-boot-26073f9ed3ab0aaf3c2a2b433fecb30a95a067d6.tar.gz u-boot-26073f9ed3ab0aaf3c2a2b433fecb30a95a067d6.tar.xz u-boot-26073f9ed3ab0aaf3c2a2b433fecb30a95a067d6.zip | |
image: Add support for ZSTD decompression
This patch adds support for ZSTD decompression of FIT images.
Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Cc: Luka Perkov <luka.perkov@sartura.hr>
Diffstat (limited to 'include')
| -rw-r--r-- | include/image.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/image.h b/include/image.h index ebd581a594..9ababf2a2d 100644 --- a/include/image.h +++ b/include/image.h @@ -326,6 +326,7 @@ enum { IH_COMP_LZMA, /* lzma Compression Used */ IH_COMP_LZO, /* lzo Compression Used */ IH_COMP_LZ4, /* lz4 Compression Used */ + IH_COMP_ZSTD, /* zstd Compression Used */ IH_COMP_COUNT, }; |
