aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/symbol.c
diff options
context:
space:
mode:
authorDirk Gouders <dirk@gouders.net>2016-04-29 04:24:52 -0400
committerMichal Marek <mmarek@suse.com>2016-05-10 15:14:27 -0400
commitfa64e5f6a35efd5e77d639125d973077ca506074 (patch)
tree1d6cc33db89d34eb50ef0b37ca30c99e5ff77cc8 /scripts/kconfig/symbol.c
parent032a3187194e050383d7c2df804b194b6fecc6f3 (diff)
kconfig/symbol.c: handle choice_values that depend on 'm' symbols
If choices consist of choice_values of type tristate that depend on symbols set to 'm', those choice_values are not set to 'n' if the choice is changed from 'm' to 'y' (in which case only one active choice_value is allowed). Those values are also written to the config file causing modules to be built when they should not. The following config can be used to reproduce and examine the problem; with the frontend of your choice set "Choice 0" and "Choice 1" to 'm', then set "Tristate Choice" to 'y' and save the configuration: config modules boolean modules default y option modules config dependency tristate "Dependency" default m choice prompt "Tristate Choice" default choice0 config choice0 tristate "Choice 0" config choice1 tristate "Choice 1" depends on dependency endchoice This patch sets tristate choice_values' visibility that depend on symbols set to 'm' to 'n' if the corresponding choice is set to 'y'. This makes them disappear from the choice list and will also cause the choice_values' value set to 'n' in sym_calc_value() and as a result they are written as "not set" to the resulting .config file. Reported-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Dirk Gouders <dirk@gouders.net> Tested-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Tested-by: Roger Quadros <rogerq@ti.com> Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts/kconfig/symbol.c')
-rw-r--r--scripts/kconfig/symbol.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c
index 25cf0c2c0c79..2432298487fb 100644
--- a/scripts/kconfig/symbol.c
+++ b/scripts/kconfig/symbol.c
@@ -209,12 +209,26 @@ static void sym_set_all_changed(void)
209static void sym_calc_visibility(struct symbol *sym) 209static void sym_calc_visibility(struct symbol *sym)
210{ 210{
211 struct property *prop; 211 struct property *prop;
212 struct symbol *choice_sym = NULL;
212 tristate tri; 213 tristate tri;
213 214
214 /* any prompt visible? */ 215 /* any prompt visible? */
215 tri = no; 216 tri = no;
217
218 if (sym_is_choice_value(sym))
219 choice_sym = prop_get_symbol(sym_get_choice_prop(sym));
220
216 for_all_prompts(sym, prop) { 221 for_all_prompts(sym, prop) {
217 prop->visible.tri = expr_calc_value(prop->visible.expr); 222 prop->visible.tri = expr_calc_value(prop->visible.expr);
223 /*
224 * Tristate choice_values with visibility 'mod' are
225 * not visible if the corresponding choice's value is
226 * 'yes'.
227 */
228 if (choice_sym && sym->type == S_TRISTATE &&
229 prop->visible.tri == mod && choice_sym->curr.tri == yes)
230 prop->visible.tri = no;
231
218 tri = EXPR_OR(tri, prop->visible.tri); 232 tri = EXPR_OR(tri, prop->visible.tri);
219 } 233 }
220 if (tri == mod && (sym->type != S_TRISTATE || modules_val == no)) 234 if (tri == mod && (sym->type != S_TRISTATE || modules_val == no))