diff options
author | peter <peter@FreeBSD.org> | 2000-04-29 13:34:28 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-04-29 13:34:28 +0000 |
commit | ff69b85a830ca118614e0c953c0216d8ed90e24b (patch) | |
tree | 8faec2e2d21ea280a03427bd3e0337606c9fb537 /sys | |
parent | 505cc5752fe7841cc0e2242adf062593e522bad6 (diff) | |
download | FreeBSD-src-ff69b85a830ca118614e0c953c0216d8ed90e24b.zip FreeBSD-src-ff69b85a830ca118614e0c953c0216d8ed90e24b.tar.gz |
nwfs depends on ncp
Diffstat (limited to 'sys')
-rw-r--r-- | sys/fs/nwfs/nwfs_vfsops.c | 2 | ||||
-rw-r--r-- | sys/netncp/ncp_mod.c | 2 | ||||
-rw-r--r-- | sys/nwfs/nwfs_vfsops.c | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/sys/fs/nwfs/nwfs_vfsops.c b/sys/fs/nwfs/nwfs_vfsops.c index ac89567..d9257af 100644 --- a/sys/fs/nwfs/nwfs_vfsops.c +++ b/sys/fs/nwfs/nwfs_vfsops.c @@ -66,6 +66,8 @@ SYSCTL_NODE(_vfs, OID_AUTO, nwfs, CTLFLAG_RW, 0, "Netware file system"); SYSCTL_INT(_vfs_nwfs, OID_AUTO, version, CTLFLAG_RD, &nwfs_version, 0, ""); SYSCTL_INT(_vfs_nwfs, OID_AUTO, debuglevel, CTLFLAG_RW, &nwfs_debuglevel, 0, ""); +MODULE_DEPEND(nwfs, ncp, 1, 1, 1); + static int nwfs_mount __P((struct mount *, char *, caddr_t, struct nameidata *, struct proc *)); static int nwfs_quotactl __P((struct mount *, int, uid_t, caddr_t, diff --git a/sys/netncp/ncp_mod.c b/sys/netncp/ncp_mod.c index aabfc0f..11df855 100644 --- a/sys/netncp/ncp_mod.c +++ b/sys/netncp/ncp_mod.c @@ -57,6 +57,8 @@ SYSCTL_NODE(_net, OID_AUTO, ncp, CTLFLAG_RW, NULL, "NetWare requester"); SYSCTL_INT(_net_ncp, OID_AUTO, sysent, CTLFLAG_RD, &ncp_sysent, 0, ""); SYSCTL_INT(_net_ncp, OID_AUTO, version, CTLFLAG_RD, &ncp_version, 0, ""); +MODULE_VERSION(ncp, 1); + static int ncp_conn_frag_rq(struct ncp_conn *conn, struct proc *p, struct ncp_conn_frag *nfp); diff --git a/sys/nwfs/nwfs_vfsops.c b/sys/nwfs/nwfs_vfsops.c index ac89567..d9257af 100644 --- a/sys/nwfs/nwfs_vfsops.c +++ b/sys/nwfs/nwfs_vfsops.c @@ -66,6 +66,8 @@ SYSCTL_NODE(_vfs, OID_AUTO, nwfs, CTLFLAG_RW, 0, "Netware file system"); SYSCTL_INT(_vfs_nwfs, OID_AUTO, version, CTLFLAG_RD, &nwfs_version, 0, ""); SYSCTL_INT(_vfs_nwfs, OID_AUTO, debuglevel, CTLFLAG_RW, &nwfs_debuglevel, 0, ""); +MODULE_DEPEND(nwfs, ncp, 1, 1, 1); + static int nwfs_mount __P((struct mount *, char *, caddr_t, struct nameidata *, struct proc *)); static int nwfs_quotactl __P((struct mount *, int, uid_t, caddr_t, |