Re: 2.6: Problem multiple bool/tristate prompts

From: Roman Zippel
Date: Fri Aug 08 2003 - 05:15:07 EST


Hi,

On Fri, 8 Aug 2003, Adrian Bunk wrote:

> config BLK_DEV_PS2
> tristate "PS/2 ESDI hard disk support" if BROKEN_MODULAR
> bool "PS/2 ESDI hard disk support" if !BROKEN_MODULAR
>
>
> Every "make *config" gives the warning
>
> drivers/block/Kconfig:45: prompt redefined
> drivers/block/Kconfig:45:warning: type of 'BLK_DEV_PS2' redefined from
> 'tristate' to 'boolean'
>
> and the symbol is handled as tristate although BROKEN_MODULAR isn't
> defined.

A symbol can have only a single type and the warning is a bit misleading,
the new type definition is simply ignored.
I'm not sure what you're trying makes really sense, but you have to use a
separate symbol:

config BLK_DEV_PS2_B
bool "PS/2 ESDI hard disk support" if !BROKEN_MODULAR

config BLK_DEV_PS2
tristate "PS/2 ESDI hard disk support" if BROKEN_MODULAR
default BLK_DEV_PS2_B

bye, Roman

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