1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

The linprocfs sources have moved to sys/compat/linprocfs.

This commit is contained in:
Dag-Erling Smørgrav 2000-12-12 22:00:05 +00:00
parent 1426b70df8
commit 190a3b2513
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=69931

View File

@ -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>