2019-05-19 13:07:45 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2005-09-09 13:10:26 -07:00
|
|
|
#
|
|
|
|
|
# Makefile for the FUSE filesystem.
|
|
|
|
|
#
|
|
|
|
|
|
2024-07-03 10:38:42 -04:00
|
|
|
# Needed for trace events
|
|
|
|
|
ccflags-y = -I$(src)
|
|
|
|
|
|
2005-09-09 13:10:26 -07:00
|
|
|
obj-$(CONFIG_FUSE_FS) += fuse.o
|
2009-04-14 10:54:54 +09:00
|
|
|
obj-$(CONFIG_CUSE) += cuse.o
|
2019-10-11 14:18:26 -04:00
|
|
|
obj-$(CONFIG_VIRTIO_FS) += virtiofs.o
|
2005-09-09 13:10:26 -07:00
|
|
|
|
2025-09-15 17:27:58 -07:00
|
|
|
fuse-y := trace.o # put trace.o first so we see ftrace errors sooner
|
|
|
|
|
fuse-y += dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o ioctl.o
|
2024-02-01 16:26:15 +02:00
|
|
|
fuse-y += iomode.o
|
2020-08-19 18:19:47 -04:00
|
|
|
fuse-$(CONFIG_FUSE_DAX) += dax.o
|
2025-09-15 17:27:11 -07:00
|
|
|
fuse-$(CONFIG_FUSE_PASSTHROUGH) += passthrough.o backing.o
|
2024-09-23 10:13:11 -07:00
|
|
|
fuse-$(CONFIG_SYSCTL) += sysctl.o
|
2025-01-20 02:28:59 +01:00
|
|
|
fuse-$(CONFIG_FUSE_IO_URING) += dev_uring.o
|
2020-08-19 18:19:47 -04:00
|
|
|
|
|
|
|
|
virtiofs-y := virtio_fs.o
|