From 190a3b2513a463d40cf965da3fa10b21dc1cfe7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Tue, 12 Dec 2000 22:00:05 +0000 Subject: [PATCH] The linprocfs sources have moved to sys/compat/linprocfs. --- sys/modules/linprocfs/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sys/modules/linprocfs/Makefile b/sys/modules/linprocfs/Makefile index 187195c0867..e69f3ceb3b3 100644 --- a/sys/modules/linprocfs/Makefile +++ b/sys/modules/linprocfs/Makefile @@ -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