mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -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
151 B
Makefile
10 lines
151 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../fs/nullfs
|
|
|
|
KMOD= nullfs
|
|
SRCS= vnode_if.h \
|
|
null_subr.c null_vfsops.c null_vnops.c
|
|
NOMAN=
|
|
|
|
.include <bsd.kmod.mk>
|