From: Simon Glass Date: Mon, 5 Jul 2021 22:32:40 +0000 (-0600) Subject: dm: Support lzma in the flashmap X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=504fb6699778c77be80498400ef6206204f69a6b;p=u-boot.git dm: Support lzma in the flashmap Allow lzma compression as well as lz4. Signed-off-by: Simon Glass --- diff --git a/drivers/core/of_extra.c b/drivers/core/of_extra.c index 7702beff97..632a1c2210 100644 --- a/drivers/core/of_extra.c +++ b/drivers/core/of_extra.c @@ -31,6 +31,8 @@ int ofnode_read_fmap_entry(ofnode node, struct fmap_entry *entry) if (prop) { if (!strcmp(prop, "lz4")) entry->compress_algo = FMAP_COMPRESS_LZ4; + else if (!strcmp(prop, "lzma")) + entry->compress_algo = FMAP_COMPRESS_LZMA; else return log_msg_ret("compression algo", -EINVAL); } else {