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

Jeff Garzik (jgarzik@pobox.com)
Wed, 09 Jun 1999 14:18:48 -0400


This is a multi-part message in MIME format.
--------------67D57FCCAC1527B5020E1302
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

The attached patch against 2.2.10pre3 corrects a scoping problem with
the CONFIG_SUN_NFSD symbol, and converts some define_bool statements to
use the more clear and correct define_tristate.

Jeff
--------------67D57FCCAC1527B5020E1302
Content-Type: text/plain; charset=us-ascii;
name="fs-config-in-fixes.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="fs-config-in-fixes.patch"

--- Config.in Wed Jun 9 14:14:57 1999
+++ /usr/local/home/jgarzik/tmp/l22/linux/fs/Config.in Sun Mar 7 18:25:23 1999
@@ -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
if [ "$CONFIG_NFS_FS" = "y" -o "$CONFIG_NFSD" = "y" ]; then
- define_tristate CONFIG_SUNRPC y
- define_tristate CONFIG_LOCKD y
+ define_bool CONFIG_SUNRPC y
+ define_bool CONFIG_LOCKD y
else
if [ "$CONFIG_NFS_FS" = "m" -o "$CONFIG_NFSD" = "m" ]; then
- define_tristate CONFIG_SUNRPC m
- define_tristate CONFIG_LOCKD m
+ define_bool CONFIG_SUNRPC m
+ define_bool CONFIG_LOCKD m
else
- define_tristate CONFIG_SUNRPC n
- define_tristate CONFIG_LOCKD n
+ define_bool CONFIG_SUNRPC n
+ define_bool CONFIG_LOCKD n
fi
fi
tristate 'SMB filesystem support (to mount WfW shares etc.)' CONFIG_SMB_FS

--------------67D57FCCAC1527B5020E1302--

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