mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 08:37:50 -04:00
This makes it more consistent with other filesystems, which all end in "fs", and more consistent with its mount helper, which is already named "mount_fusefs". Reviewed by: cem, rgrimes MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D19649
13 lines
344 B
Makefile
13 lines
344 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
|
|
|
|
# Symlink for backwards compatibility with systems installed at 12.0 or older
|
|
LINKS= ${KMODDIR}/${KMOD}.ko ${KMODDIR}/fuse.ko
|
|
|
|
.include <bsd.kmod.mk>
|