diff options
author | Phillip Lougher <phillip@lougher.demon.co.uk> | 2010-12-09 02:08:31 +0000 |
---|---|---|
committer | Phillip Lougher <phillip@lougher.demon.co.uk> | 2011-01-13 21:16:52 +0000 |
commit | 7a43ae523744c01b6187013e781f44c2281c579c (patch) | |
tree | 7f122fb883ef7cd86f08f90b770e03cae601efd3 /fs/squashfs/decompressor.c | |
parent | 81bb8debd0d570dc67dc1e9d8b612632cb941893 (diff) | |
download | op-kernel-dev-7a43ae523744c01b6187013e781f44c2281c579c.zip op-kernel-dev-7a43ae523744c01b6187013e781f44c2281c579c.tar.gz |
Squashfs: Add XZ compression configuration option
Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk>
Diffstat (limited to 'fs/squashfs/decompressor.c')
-rw-r--r-- | fs/squashfs/decompressor.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/squashfs/decompressor.c b/fs/squashfs/decompressor.c index 24af9ce..482d781 100644 --- a/fs/squashfs/decompressor.c +++ b/fs/squashfs/decompressor.c @@ -46,6 +46,12 @@ static const struct squashfs_decompressor squashfs_lzo_unsupported_comp_ops = { }; #endif +#ifndef CONFIG_SQUASHFS_XZ +static const struct squashfs_decompressor squashfs_xz_comp_ops = { + NULL, NULL, NULL, XZ_COMPRESSION, "xz", 0 +}; +#endif + static const struct squashfs_decompressor squashfs_unknown_comp_ops = { NULL, NULL, NULL, 0, "unknown", 0 }; @@ -58,6 +64,7 @@ static const struct squashfs_decompressor *decompressor[] = { #else &squashfs_lzo_unsupported_comp_ops, #endif + &squashfs_xz_comp_ops, &squashfs_unknown_comp_ops }; |