diff options
author | attilio <attilio@FreeBSD.org> | 2012-10-17 11:16:17 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2012-10-17 11:16:17 +0000 |
commit | 3f4806915ef86ad20f5602a0e46a27fc609e65ba (patch) | |
tree | a36bb1b48615302d343a7afd78f6ea19a6b64b3e /sbin/mount | |
parent | f16dd753c48f6804e09296920d7c405356699352 (diff) | |
download | FreeBSD-src-3f4806915ef86ad20f5602a0e46a27fc609e65ba.zip FreeBSD-src-3f4806915ef86ad20f5602a0e46a27fc609e65ba.tar.gz |
Disconnect non-MPSAFE NWFS from the build in preparation for dropping
GIANT from VFS. In addition, disconnect also netncp, which is a base
requirement for NWFS.
In the possibility of a future maintenance of the code and later
readd to the FreeBSD base, maybe we should think about a better location
for netncp. I'm not entirely sure the / top location is actually right,
however I will let network people to comment on that more specifically.
This is not targeted for MFC.
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.8 | 2 | ||||
-rw-r--r-- | sbin/mount/mount.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index fea0171..7b81955 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -447,7 +447,6 @@ However, for the following file system types: .Cm msdosfs , .Cm nfs , .Cm ntfs , -.Cm nwfs , .Cm nullfs , .Cm oldnfs , .Cm smbfs , @@ -546,7 +545,6 @@ support for a particular file system might be provided either on a static .Xr mount_nfs 8 , .Xr mount_ntfs 8 , .Xr mount_nullfs 8 , -.Xr mount_nwfs 8 , .Xr mount_smbfs 8 , .Xr mount_udf 8 , .Xr mount_unionfs 8 , diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 63d53b0..7b97219 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -143,7 +143,7 @@ use_mountprog(const char *vfstype) unsigned int i; const char *fs[] = { "cd9660", "mfs", "msdosfs", "nfs", "ntfs", - "nwfs", "nullfs", "oldnfs", "smbfs", "udf", "unionfs", + "nullfs", "oldnfs", "smbfs", "udf", "unionfs", NULL }; |