mirror of
https://github.com/LineageOS/android_kernel_fxtec_sm6115.git
synced 2026-04-02 21:28:06 +00:00
Bug: 202785178 Test: test_fuse passes on linux, feature works on cuttlefish Signed-off-by: Paul Lawrence <paullawrence@google.com> Signed-off-by: Daniel Rosenberg <drosen@google.com> Change-Id: I987684b799b07391ccde350e98fde7976f5601aa
14 lines
323 B
Makefile
14 lines
323 B
Makefile
#
|
|
# Makefile for the FUSE filesystem.
|
|
#
|
|
|
|
obj-$(CONFIG_FUSE_FS) += fuse.o
|
|
obj-$(CONFIG_CUSE) += cuse.o
|
|
obj-$(CONFIG_VIRTIO_FS) += virtiofs.o
|
|
|
|
fuse-y := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o passthrough.o
|
|
fuse-$(CONFIG_FUSE_DAX) += dax.o
|
|
fuse-$(CONFIG_FUSE_BPF) += backing.o
|
|
|
|
virtiofs-y := virtio_fs.o
|