mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-03 03:33:01 +09:00
FILE_DIRECT is working fine and offers faster results and lower memory footprint. Removing FILE_CACHE makes our life easier because we don't have to maintain 2 differents function that does the same thing. Change-Id: Ib11dfeb6847fb79d166e10686a95eabb8c65710a Signed-off-by: Adrien Schildknecht <adriens@google.com>
17 lines
721 B
Makefile
17 lines
721 B
Makefile
#
|
|
# Makefile for the linux squashfs routines.
|
|
#
|
|
|
|
obj-$(CONFIG_SQUASHFS) += squashfs.o
|
|
squashfs-y += block.o cache.o dir.o export.o file.o fragment.o id.o inode.o
|
|
squashfs-y += namei.o super.o symlink.o decompressor.o
|
|
squashfs-y += file_direct.o page_actor.o
|
|
squashfs-$(CONFIG_SQUASHFS_DECOMP_SINGLE) += decompressor_single.o
|
|
squashfs-$(CONFIG_SQUASHFS_DECOMP_MULTI) += decompressor_multi.o
|
|
squashfs-$(CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU) += decompressor_multi_percpu.o
|
|
squashfs-$(CONFIG_SQUASHFS_XATTR) += xattr.o xattr_id.o
|
|
squashfs-$(CONFIG_SQUASHFS_LZ4) += lz4_wrapper.o
|
|
squashfs-$(CONFIG_SQUASHFS_LZO) += lzo_wrapper.o
|
|
squashfs-$(CONFIG_SQUASHFS_XZ) += xz_wrapper.o
|
|
squashfs-$(CONFIG_SQUASHFS_ZLIB) += zlib_wrapper.o
|