Re: knfsd 2.2.1 (nfssvc: Function not implemented)

Dominik Kubla (dominik.kubla@uni-mainz.de)
Fri, 19 Feb 1999 15:21:05 +0100


--NzB8fVQJ5HfG6fxh
Content-Type: text/plain; charset=us-ascii

On Fri, Feb 19, 1999 at 10:11:42AM +0000, David Woodhouse wrote:
> jdeong@cnmnetwork.com said:
...
> > I have compiled nfs in my kernel. the network file system portion of my
> > .config
> > #
> > # Network File Systems
> > #
> > CONFIG_CODA_FS=m
> > CONFIG_NFS_FS=y
> > # CONFIG_NFSD_SUN is not set
...
> I can't see CONFIG_NFSD in there. It should be between CONFIG_NFS_FS and
> CONFIG_NFSD_SUN.
...

Correct. I assume the kernel was not compiled with CONFIG_EXPERIMENTAL, you
must enable that during configuration or you won't be asked about the NFS
server support. That CONFIG_NFSD_SUN shows up in this case is a bug because
it is a server option. The attached patch will fix this buglet.

Yours,
Dominik Kubla

--NzB8fVQJ5HfG6fxh
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="config.patch"

--- linux/fs/Config.in.orig Tue Jan 19 20:07:53 1999
+++ linux/fs/Config.in Fri Feb 19 15:17:59 1999
@@ -69,9 +69,9 @@
fi
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
tristate 'NFS server support' CONFIG_NFSD
- fi
- if [ "$CONFIG_NFSD" != "n" ]; then
- bool ' Emulate SUN NFS server' CONFIG_NFSD_SUN
+ if [ "$CONFIG_NFSD" != "n" ]; then
+ bool ' Emulate SUN NFS server' CONFIG_NFSD_SUN
+ fi
fi
if [ "$CONFIG_NFS_FS" = "y" -o "$CONFIG_NFSD" = "y" ]; then
define_bool CONFIG_SUNRPC y

--NzB8fVQJ5HfG6fxh--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/