From 1d6286d833a886753ca8163b8eed8f301a52c733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Sun, 10 Jun 2001 23:20:38 +0000 Subject: [PATCH] Disconnect linprocfs prior to moving it. --- sys/modules/Makefile | 2 +- sys/modules/linprocfs/Makefile | 20 -------------------- 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 sys/modules/linprocfs/Makefile diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 4c0303d23478..efd4880c6d7a 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -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 diff --git a/sys/modules/linprocfs/Makefile b/sys/modules/linprocfs/Makefile deleted file mode 100644 index a6fa4f5941ea..000000000000 --- a/sys/modules/linprocfs/Makefile +++ /dev/null @@ -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