Re: [2.2.10pre3] fs/Config.in fix and cleanup

Andrzej Krzysztofowicz (ankry@pg.gda.pl)
Thu, 10 Jun 1999 08:36:11 -0400


Hi
This part of your patch is incorrect:

> @@ -69,20 +69,20 @@
> fi
> if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
> tristate 'NFS server support' CONFIG_NFSD
> - if [ "$CONFIG_NFSD" != "n" ]; then
> - bool ' Emulate SUN NFS server' CONFIG_NFSD_SUN
> - fi
> + fi
> + if [ "$CONFIG_NFSD" != "n" ]; then
> + bool ' Emulate SUN NFS server' CONFIG_NFSD_SUN
> fi

Notice, that if CONFIG_EXPERIMENTAL is set to "n" the CONFIG_NFSD question
does not appear. In effect you have CONFIG_NFSD not defined.
It obviously means that $CONFIG_NFSD is not equal to "n".
This part of your patch should be replaced by something like:

+ if [ "$CONFIG_NFSD" = "y" -o "$CONFIG_NFSD" = "m" ]; then
+ bool ' Emulate SUN NFS server' CONFIG_NFSD_SUN

Regards
Andrzej

--
=======================================================================
  Andrzej M. Krzysztofowicz               ankry@mif.pg.gda.pl
  phone (48)(58) 347 14 61
Faculty of Applied Phys. & Math.,   Technical University of Gdansk

- 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/