kconfig: fix select in combination with default
authorRoman Zippel <zippel@linux-m68k.org>
Mon, 11 Feb 2008 20:13:47 +0000 (21:13 +0100)
committerSam Ravnborg <sam@ravnborg.org>
Wed, 13 Feb 2008 21:30:09 +0000 (22:30 +0100)
commit587c90616a5b44e6ccfac38e64d4fecee51d588c
treedf2f7792304500f75c089f0d710e7977fc267bab
parent10270d4838bdc493781f5a1cf2e90e9c34c9142f
kconfig: fix select in combination with default

> The attached .config (with current -git) results in a compile
> error since it contains:
>
> CONFIG_X86=y
> # CONFIG_EMBEDDED is not set
> CONFIG_SERIO=m
> CONFIG_SERIO_I8042=y
>
> Looking at drivers/input/serio/Kconfig I simply don't get how this
> can happen.

You've hit the rather subtle rules of select vs default. What happened is
that SERIO is selected to m, but SERIO_I8042 isn't selected so the default
of y is used instead.
We already had the problem in the past that select and default don't work
well together, so this patch cleans this up and makes the rule hopefully
more straightforward. Basically now the value is calculated like this:

(value && dependency) || select

where the value is the user choice (if available and the symbol is
visible) or default.

In this case it means SERIO and SERIO_I8042 are both set to y due to their
default and if SERIO didn't had the default, then the SERIO_I8042 value
would be limited to m due to the dependency.

I tested this patch with more 10000 random configs and above case is the
only the difference that showed up, so I hope there is nothing that
depended on the old more complex and subtle rules.

Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Tested-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
scripts/kconfig/symbol.c