mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-25 11:37:56 +00:00
Move the pseudofs, procfs and linprocfs modules out from the fs directory.
Keeping them there seemed like a good idea at the time, but it annoys bde and confuses people who do not understand how MODULES_OVERRIDE works.
This commit is contained in:
parent
825830b9c0
commit
3fd18735a4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90223
@ -27,7 +27,6 @@ SUBDIR= 3dfx \
|
||||
ed \
|
||||
fdescfs \
|
||||
fdc \
|
||||
fs \
|
||||
fxp \
|
||||
gx \
|
||||
if_disc \
|
||||
@ -50,6 +49,7 @@ SUBDIR= 3dfx \
|
||||
lge \
|
||||
libiconv \
|
||||
libmchain \
|
||||
linprocfs \
|
||||
lnc \
|
||||
lomac \
|
||||
lpt \
|
||||
@ -69,6 +69,8 @@ SUBDIR= 3dfx \
|
||||
ppbus \
|
||||
ppi \
|
||||
pps \
|
||||
procfs \
|
||||
pseudofs \
|
||||
${_random} \
|
||||
rl \
|
||||
rp \
|
||||
|
@ -1,8 +0,0 @@
|
||||
# $FreeBSD$
|
||||
|
||||
SUBDIR =
|
||||
SUBDIR += linprocfs
|
||||
SUBDIR += procfs
|
||||
SUBDIR += pseudofs
|
||||
|
||||
.include <bsd.subdir.mk>
|
@ -1,20 +0,0 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.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_type.c \
|
||||
procfs.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../compat/linprocfs
|
||||
.PATH: ${.CURDIR}/../../compat/linprocfs
|
||||
|
||||
KMOD= linprocfs
|
||||
SRCS= vnode_if.h \
|
29
sys/modules/procfs/Makefile
Normal file
29
sys/modules/procfs/Makefile
Normal file
@ -0,0 +1,29 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../fs/procfs
|
||||
|
||||
KMOD= procfs
|
||||
SRCS=
|
||||
SRCS+= vnode_if.h
|
||||
SRCS+= procfs_ctl.c
|
||||
SRCS+= procfs_dbregs.c
|
||||
SRCS+= procfs_fpregs.c
|
||||
SRCS+= procfs_ioctl.c
|
||||
SRCS+= procfs_map.c
|
||||
SRCS+= procfs_mem.c
|
||||
SRCS+= procfs_note.c
|
||||
SRCS+= procfs_regs.c
|
||||
SRCS+= procfs_rlimit.c
|
||||
SRCS+= procfs_status.c
|
||||
SRCS+= procfs_type.c
|
||||
SRCS+= procfs.c
|
||||
|
||||
EXPORT_SYMS=
|
||||
EXPORT_SYMS+= procfs_attr
|
||||
EXPORT_SYMS+= procfs_candebug
|
||||
EXPORT_SYMS+= procfs_docurproc
|
||||
EXPORT_SYMS+= procfs_doprocfile
|
||||
EXPORT_SYMS+= procfs_doprocmem
|
||||
EXPORT_SYMS+= procfs_notsystem
|
||||
|
||||
.include <bsd.kmod.mk>
|
@ -1,6 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../fs/pseudofs
|
||||
.PATH: ${.CURDIR}/../../fs/pseudofs
|
||||
|
||||
KMOD= pseudofs
|
||||
SRCS= vnode_if.h \
|
Loading…
Reference in New Issue
Block a user