aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/decompress.h
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-06-15 13:19:33 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-06-15 13:19:33 +0100
commitd371fcc85bac2de69b34a0d28293202a3b33cdef (patch)
tree21331ef473dcf3f0a1482c06ee0a8cb2c3f7f00c /xen/include/xen/decompress.h
parent135259fa862febfd04b98d12acf3ab897aa85312 (diff)
downloadxen-d371fcc85bac2de69b34a0d28293202a3b33cdef.tar.gz
xen-d371fcc85bac2de69b34a0d28293202a3b33cdef.tar.bz2
xen-d371fcc85bac2de69b34a0d28293202a3b33cdef.zip
x86: allow LZO compressed bzImage to be used as Dom0 kernel
... since recently Linux added this as another kernel compression method, and we already have LZO compression in the tree (from tmem), so that only glue logic is needed. Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'xen/include/xen/decompress.h')
-rw-r--r--xen/include/xen/decompress.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/xen/decompress.h b/xen/include/xen/decompress.h
index db74c00d24..2a13b04f70 100644
--- a/xen/include/xen/decompress.h
+++ b/xen/include/xen/decompress.h
@@ -31,7 +31,7 @@ typedef int decompress_fn(unsigned char *inbuf, unsigned int len,
* dependent).
*/
-decompress_fn bunzip2, unlzma;
+decompress_fn bunzip2, unlzma, unlzo;
int decompress(void *inbuf, unsigned int len, void *outbuf);