aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/decompress.c
diff options
context:
space:
mode:
Diffstat (limited to 'xen/common/decompress.c')
-rw-r--r--xen/common/decompress.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/xen/common/decompress.c b/xen/common/decompress.c
index 1098481922..5f86af9cbe 100644
--- a/xen/common/decompress.c
+++ b/xen/common/decompress.c
@@ -29,5 +29,8 @@ int __init decompress(void *inbuf, unsigned int len, void *outbuf)
if ( len >= 5 && !memcmp(inbuf, "\x89LZO", 5) )
return unlzo(inbuf, len, NULL, NULL, outbuf, NULL, error);
+ if ( len >= 2 && !memcmp(inbuf, "\x02\x21", 2) )
+ return unlz4(inbuf, len, NULL, NULL, outbuf, NULL, error);
+
return 1;
}