0bf48626aa
On FreeBSD 13.0, the fuse driver will always be known as fusefs. The backwards compatibility symlink will still be used for stable/12 and stable/11, though. Reported by: jhibbits Reviewed by: rgrimes, imp, cem MFC after: Never Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D21181
11 lines
217 B
Makefile
11 lines
217 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/fs/fuse
|
|
|
|
KMOD= fusefs
|
|
SRCS= vnode_if.h \
|
|
fuse_node.c fuse_io.c fuse_device.c fuse_ipc.c fuse_file.c \
|
|
fuse_vfsops.c fuse_vnops.c fuse_internal.c fuse_main.c
|
|
|
|
.include <bsd.kmod.mk>
|