summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2021-09-23 22:38:21 -0400
committerTom Rini <[email protected]>2021-09-23 22:38:21 -0400
commit657668348b5d677afca029673479266ef601f8a6 (patch)
tree88d807a4872e12a0df8eefc8463da8af9b286bd5 /common
parent7b57e56739ed2c550d17a072a7f4c8326c0c83dc (diff)
parent8e85f36a8fabb4bd5216f6bfcc9a8224adb63496 (diff)
Merge branch '2021-09-23-assorted-updates' into next
- Rework lmb reservation so we have common code for all arches to use - armv8 cache.S cleanups, crc32 speedup - ENV_IS_NOWHWERE, pci io/memory base configuration fixes
Diffstat (limited to 'common')
-rw-r--r--common/image.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/image.c b/common/image.c
index 59c52a1f9ad..e199d61a4c3 100644
--- a/common/image.c
+++ b/common/image.c
@@ -216,6 +216,8 @@ static const struct comp_magic_map image_comp[] = {
{ IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
{ IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
{ IH_COMP_LZO, "lzo", {0x89, 0x4c},},
+ { IH_COMP_LZ4, "lz4", {0x04, 0x22},},
+ { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},},
{ IH_COMP_NONE, "none", {}, },
};