mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
The linprocfs sources have moved to sys/compat/linprocfs.
This commit is contained in:
parent
1426b70df8
commit
190a3b2513
1 changed files with 11 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../i386/linux/linprocfs
|
||||
.PATH: ${.CURDIR}/../../compat/linprocfs
|
||||
KMOD= linprocfs
|
||||
SRCS= vnode_if.h linprocfs_misc.c linprocfs_subr.c \
|
||||
linprocfs_vfsops.c linprocfs_vnops.c
|
||||
|
|
@ -8,4 +8,14 @@ NOMAN=
|
|||
VFS_KLD=
|
||||
CFLAGS+= -DLINPROCFS
|
||||
|
||||
test: unload install load
|
||||
|
||||
load:
|
||||
kldload ${KMOD}
|
||||
mount /compat/linux/proc
|
||||
|
||||
unload:
|
||||
-umount /compat/linux/proc
|
||||
kldunload ${KMOD}
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue