aboutsummaryrefslogtreecommitdiffstats
path: root/fs/squashfs/squashfs_fs.h
diff options
context:
space:
mode:
authorPhillip Lougher <phillip@lougher.demon.co.uk>2009-10-14 03:58:11 +0100
committerPhillip Lougher <phillip@lougher.demon.co.uk>2010-01-20 21:47:48 +0000
commitdc3256782f88602953676c447b243dedb1be99ad (patch)
treedb94f1e5aa06f8260631a5a21bea332c1b6e14c8 /fs/squashfs/squashfs_fs.h
parentSquashfs: add a decompressor framework (diff)
downloadlinux-dev-dc3256782f88602953676c447b243dedb1be99ad.tar.xz
linux-dev-dc3256782f88602953676c447b243dedb1be99ad.zip
Squashfs: add decompressor entries for lzma and lzo
Add knowledge of lzma/lzo compression formats to the decompressor framework. For now these are added as unsupported. Without these entries lzma/lzo compressed filesystems will be flagged as having unknown compression which is undesirable. Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk>
Diffstat (limited to 'fs/squashfs/squashfs_fs.h')
-rw-r--r--fs/squashfs/squashfs_fs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/squashfs/squashfs_fs.h b/fs/squashfs/squashfs_fs.h
index 283daafc568e..36e1604ab1c1 100644
--- a/fs/squashfs/squashfs_fs.h
+++ b/fs/squashfs/squashfs_fs.h
@@ -211,7 +211,9 @@ struct meta_index {
/*
* definitions for structures on disk
*/
-#define ZLIB_COMPRESSION 1
+#define ZLIB_COMPRESSION 1
+#define LZMA_COMPRESSION 2
+#define LZO_COMPRESSION 3
struct squashfs_super_block {
__le32 s_magic;