aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2001-12-04 01:35:06 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2001-12-04 01:35:06 +0000
commit3a669c52a81fa52a7c3aa5ac06ef6f1da5981db9 (patch)
tree07f1c8ada3010a162b86de0898b3c815f2d89562 /sys/modules
parent3bff55e81bf6df4dd825d27356637a459cd84a5b (diff)
Notes
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile1
-rw-r--r--sys/modules/fs/Makefile1
-rw-r--r--sys/modules/fs/procfs/Makefile (renamed from sys/modules/procfs/Makefile)8
3 files changed, 4 insertions, 6 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 6d92802153c4..e6660b2bccc2 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -68,7 +68,6 @@ SUBDIR= 3dfx \
ppbus \
ppi \
pps \
- procfs \
${_random} \
rl \
rp \
diff --git a/sys/modules/fs/Makefile b/sys/modules/fs/Makefile
index 49244f360ee5..bedaa5aa79f9 100644
--- a/sys/modules/fs/Makefile
+++ b/sys/modules/fs/Makefile
@@ -2,6 +2,7 @@
SUBDIR =
SUBDIR += linprocfs
+SUBDIR += procfs
SUBDIR += pseudofs
.include <bsd.subdir.mk>
diff --git a/sys/modules/procfs/Makefile b/sys/modules/fs/procfs/Makefile
index 3d9338e31c51..ffb2ae7a336f 100644
--- a/sys/modules/procfs/Makefile
+++ b/sys/modules/fs/procfs/Makefile
@@ -1,22 +1,20 @@
# $FreeBSD$
-.PATH: ${.CURDIR}/../../fs/procfs
+.PATH: ${.CURDIR}/../../../fs/procfs
KMOD= procfs
SRCS= vnode_if.h \
procfs_ctl.c \
procfs_dbregs.c \
procfs_fpregs.c \
+ procfs_ioctl.c \
procfs_map.c \
procfs_mem.c \
procfs_note.c \
procfs_regs.c \
procfs_rlimit.c \
procfs_status.c \
- procfs_subr.c \
procfs_type.c \
- procfs_vfsops.c \
- procfs_vnops.c
-NOMAN=
+ procfs.c
.include <bsd.kmod.mk>