Config cleanup

Riley Williams (rhw@bigfoot.com)
Wed, 9 Dec 1998 12:45:42 +0000 (GMT)


Hi Alan.

The enclosed patch just cleans up some of the conditions in the
various configuration scripts. It should make them a little easier to
follow without hurting anything...

===8<=== CUT ===>8===
--- linux/drivers/block/Config.in.orig Mon Jul 13 21:47:27 1998
+++ linux/drivers/block/Config.in Wed Dec 9 12:39:08 1998
@@ -55,7 +55,7 @@
tristate 'XT harddisk support' CONFIG_BLK_DEV_XD

tristate 'Parallel port IDE device support' CONFIG_PARIDE
-if [ "$CONFIG_PARIDE" = "y" -o "$CONFIG_PARIDE" = "m" ]; then
+if [ "$CONFIG_PARIDE" != "n" ]; then
source drivers/block/paride/Config.in
fi

--- linux/drivers/char/Config.in.orig Wed Jun 3 23:17:47 1998
+++ linux/drivers/char/Config.in Wed Dec 9 12:39:30 1998
@@ -15,7 +15,7 @@
tristate 'SDL RISCom/8 card support' CONFIG_RISCOM8
tristate 'Parallel printer support' CONFIG_PRINTER
tristate 'Specialix IO8+ card support' CONFIG_SPECIALIX
-if [ "$CONFIG_SPECIALIX" = "y" -o "$CONFIG_SPECIALIX" = "m" ]; then
+if [ "$CONFIG_SPECIALIX" != "n" ]; then
bool 'Specialix DTR/RTS pin is RTS' CONFIG_SPECIALIX_RTSCTS
fi

--- linux/drivers/net/Config.in.orig Mon Jul 13 21:47:31 1998
+++ linux/drivers/net/Config.in Wed Dec 9 12:40:01 1998
@@ -5,7 +5,7 @@
tristate 'EQL (serial line load balancing) support' CONFIG_EQUALIZER
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
tristate 'Frame relay DLCI support (EXPERIMENTAL)' CONFIG_DLCI
- if [ "$CONFIG_DLCI" = "y" -o "$CONFIG_DLCI" = "m" ]; then
+ if [ "$CONFIG_DLCI" != "n" ]; then
int ' Max open DLCI' CONFIG_DLCI_COUNT 24
int ' Max DLCI per device' CONFIG_DLCI_MAX 8
dep_tristate ' SDLA (Sangoma S502/S508) support' CONFIG_SDLA $CONFIG_DLCI
--- linux/fs/Config.in.orig Mon Jul 13 21:47:34 1998
+++ linux/fs/Config.in Wed Dec 9 12:37:02 1998
@@ -11,7 +11,7 @@
tristate 'xiafs filesystem support' CONFIG_XIA_FS

tristate 'Native language support (Needed for FAT and ISO9660)' CONFIG_NLS
-if [ "$CONFIG_NLS" = "y" -o "$CONFIG_NLS" = "m" ]; then
+if [ "$CONFIG_NLS" != "n" ]; then
dep_tristate 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS $CONFIG_NLS

# msdos filesystems
===8<=== CUT ===>8===

Best wishes from Riley.

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