mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
systems were repo-copied from sys/miscfs to sys/fs.
- Renamed the following file systems and their modules:
fdesc -> fdescfs, portal -> portalfs, union -> unionfs.
- Renamed corresponding kernel options:
FDESC -> FDESCFS, PORTAL -> PORTALFS, UNION -> UNIONFS.
- Install header files for the above file systems.
- Removed bogus -I${.CURDIR}/../../sys CFLAGS from userland
Makefiles.
10 lines
143 B
Makefile
10 lines
143 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../fs/fdescfs
|
|
|
|
KMOD= fdescfs
|
|
SRCS= vnode_if.h \
|
|
fdesc_vfsops.c fdesc_vnops.c
|
|
NOMAN=
|
|
|
|
.include <bsd.kmod.mk>
|