Re: [PATCH] simplify i386 mca Kconfig bits

From: Roman Zippel (zippel@linux-m68k.org)
Date: Tue Aug 05 2003 - 07:00:40 EST


Hi,

On Tue, 5 Aug 2003, Christoph Hellwig wrote:

> --- 1.62/arch/i386/Kconfig Thu Jun 19 19:06:56 2003
> +++ edited/arch/i386/Kconfig Tue Jun 24 21:31:52 2003
> @@ -1104,16 +1104,13 @@
>
> config MCA
> bool "MCA support"
> - depends on !(X86_VISWS || X86_VOYAGER)
> + depends on !X86_VISWS
> + default y if X86_VOYAGER
> help
> MicroChannel Architecture is found in some IBM PS/2 machines and
> laptops. It is a bus system similar to PCI or ISA. See
> <file:Documentation/mca.txt> (and especially the web page given
> there) before attempting to build an MCA bus kernel.
> -
> -config MCA
> - depends on X86_VOYAGER
> - default y if X86_VOYAGER

This is not really the same as before, e.g. this might be better:

config MCA
        bool "MCA support" if !(X86_VISWS || X86_VOYAGER)
        default y if X86_VOYAGER

or you could do this:

config X86_VOYAGER
        bool "Voyager (NCR)"
        select MCA

config MCA
        bool "MCA support"
        depends on !X86_VISWS

bye, Roman

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



This archive was generated by hypermail 2b29 : Thu Aug 07 2003 - 22:00:28 EST