diff options
author | rmacklem <rmacklem@FreeBSD.org> | 2011-04-27 17:51:51 +0000 |
---|---|---|
committer | rmacklem <rmacklem@FreeBSD.org> | 2011-04-27 17:51:51 +0000 |
commit | 66b402e198b741aaef0494b904ca943e26928dcf (patch) | |
tree | ee19f38f0278c8c957f0412e1d8ee665274c8aa4 /sys/amd64/conf/GENERIC | |
parent | cb70a2e3166cf143bb017b92be577d0eef083a1e (diff) | |
download | FreeBSD-src-66b402e198b741aaef0494b904ca943e26928dcf.zip FreeBSD-src-66b402e198b741aaef0494b904ca943e26928dcf.tar.gz |
This patch changes head so that the default NFS client is now the new
NFS client (which I guess is no longer experimental). The fstype "newnfs"
is now "nfs" and the regular/old NFS client is now fstype "oldnfs".
Although mounts via fstype "nfs" will usually work without userland
changes, an updated mount_nfs(8) binary is needed for kernels built with
"options NFSCL" but not "options NFSCLIENT". Updated mount_nfs(8) and
mount(8) binaries are needed to do mounts for fstype "oldnfs".
The GENERIC kernel configs have been changed to use options
NFSCL and NFSD (the new client and server) instead of NFSCLIENT and NFSSERVER.
For kernels being used on diskless NFS root systems, "options NFSCL"
must be in the kernel config.
Discussed on freebsd-fs@.
Diffstat (limited to 'sys/amd64/conf/GENERIC')
-rw-r--r-- | sys/amd64/conf/GENERIC | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index f9396e8..4ece39e 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -34,8 +34,8 @@ options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories options UFS_GJOURNAL # Enable gjournal-based UFS journaling options MD_ROOT # MD is a potential root device -options NFSCLIENT # Network Filesystem Client -options NFSSERVER # Network Filesystem Server +options NFSCL # New Network Filesystem Client +options NFSD # New Network Filesystem Server options NFSLOCKD # Network Lock Manager options NFS_ROOT # NFS usable as /, requires NFSCLIENT options MSDOSFS # MSDOS Filesystem |