[Fwd: Re: Menuconfig problem [PATCH]]

christophe leroy (christophe.leroy5@capway.com)
Thu, 25 Feb 1999 10:54:34 +0000


This is a multi-part message in MIME format.

--------------40FA0C7979926A2224BF3181
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Here's a patch that solves a problem in Menuconfig

Christophe

--------------40FA0C7979926A2224BF3181
Content-Type: message/rfc822
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Message-ID: <36D51EBE.33BBE129@capway.com>
Date: Thu, 25 Feb 1999 09:58:22 +0000
From: christophe leroy <christophe.leroy5@capway.com>
Organization: ENSEA
X-Mailer: Mozilla 3.0 (X11; I; Linux 2.2.1 i586)
MIME-Version: 1.0
To: Philip Blundell <pb@nexus.co.uk>
CC: linux-arm@vger.rutgers.edu
Subject: Re: Menuconfig problem [PATCH]
References: <E10Fduv-0002HE-00@fountain.nexus.co.uk>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Philip Blundell wrote:
>
> >With philb kernels, It doesn't crash but it ALWAYS defines
> >CONFIG_MSDOS_FS and CONFIG_VFAT_FS, even when CONFIG_FAT_FS is unset
>
> Does it define them to M or Y? If the former I suspect this is because
> menuconfig has a different idea about dep_tristate to the other config
> systems, and they need wrapping in a 'if [ $CONFIG_FAT_FS != "n" ]' type
> construct.
>
> If the latter I've no idea.

I've found the problem. Here is a patch

christophe

--- linux.2.2.1-arm/scripts/Menuconfig.org Thu Feb 25 09:52:04 1999
+++ linux.2.2.1-arm/scripts/Menuconfig Thu Feb 25 09:52:31 1999
@@ -190,7 +190,7 @@
else if [ "$3" = "m" ]; then
mod_bool "$1" "$2"
else
- define_bool "$2" "$n"
+ define_bool "$2" "n"
fi; fi
}

--------------40FA0C7979926A2224BF3181--

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