aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/erofs/Makefile
diff options
context:
space:
mode:
authorGao Xiang <gaoxiang25@huawei.com>2018-07-26 20:22:02 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-07-27 17:24:09 +0200
commit0d40d6e399c12c662eda395fe4f0602327d0d01f (patch)
treea66a64b0ab8154ee3d257d1af60d55550717de60 /drivers/staging/erofs/Makefile
parentstaging: erofs: introduce a customized LZ4 decompression (diff)
downloadlinux-dev-0d40d6e399c12c662eda395fe4f0602327d0d01f.tar.xz
linux-dev-0d40d6e399c12c662eda395fe4f0602327d0d01f.zip
staging: erofs: add a generic z_erofs VLE decompressor
Currently, this patch only simply implements LZ4 decompressor due to its development priority. In the future, erofs will support more compression algorithm and format other than LZ4, thus a generic decompressor interface will be needed. Signed-off-by: Gao Xiang <gaoxiang25@huawei.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/erofs/Makefile')
-rw-r--r--drivers/staging/erofs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/erofs/Makefile b/drivers/staging/erofs/Makefile
index e4096370b22e..9a766eb7ed75 100644
--- a/drivers/staging/erofs/Makefile
+++ b/drivers/staging/erofs/Makefile
@@ -9,5 +9,5 @@ obj-$(CONFIG_EROFS_FS) += erofs.o
ccflags-y += -I$(src)/include
erofs-objs := super.o inode.o data.o namei.o dir.o utils.o
erofs-$(CONFIG_EROFS_FS_XATTR) += xattr.o
-erofs-$(CONFIG_EROFS_FS_ZIP) += unzip_vle.o unzip_lz4.o
+erofs-$(CONFIG_EROFS_FS_ZIP) += unzip_vle.o unzip_lz4.o unzip_vle_lz4.o