Disconnect linprocfs prior to moving it.

This commit is contained in:
Dag-Erling Smørgrav 2001-06-10 23:20:38 +00:00
parent 064484f9b3
commit 1d6286d833
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=78023
2 changed files with 1 additions and 21 deletions

View file

@ -18,7 +18,7 @@ SUBDIR= 3dfx accf_data accf_http agp aha amr an aue \
# XXX some of these can move to the general case when de-i386'ed
.if ${MACHINE_ARCH} == "i386"
SUBDIR+=aac aic ar asr atspeaker bktr coff el fpu gnufpu ibcs2 linprocfs mly \
SUBDIR+=aac aic ar asr atspeaker bktr coff el fpu gnufpu ibcs2 mly \
pecoff ray s3 smbfs splash sr streams vesa wi
.endif

View file

@ -1,20 +0,0 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../compat/linprocfs
KMOD= linprocfs
SRCS= vnode_if.h linprocfs_misc.c linprocfs_subr.c \
linprocfs_vfsops.c linprocfs_vnops.c
NOMAN=
test: unload install load
load:
kldload ${KMOD}
mount /compat/linux/proc
unload:
-umount /compat/linux/proc
kldunload ${KMOD}
.include <bsd.kmod.mk>