Our kconfig code is updated to the version of kernel 3.9-rc2. No major issues during the migration, except: * Some conflicts when applying 03-change-config-option-prefix.patch due to upstream kernel changes. * The need of adding a new patch, 15-fix-qconf-moc-rule.patch, to fix the make rule that generates the moc file for the Qt-based interface. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
45 lines
1.1 KiB
Diff
45 lines
1.1 KiB
Diff
---
|
|
confdata.c | 22 +++++++++++++++++++---
|
|
1 file changed, 19 insertions(+), 3 deletions(-)
|
|
|
|
Index: b/confdata.c
|
|
===================================================================
|
|
--- a/confdata.c
|
|
+++ b/confdata.c
|
|
@@ -1107,7 +1107,16 @@
|
|
void conf_set_all_new_symbols(enum conf_def_mode mode)
|
|
{
|
|
struct symbol *sym, *csym;
|
|
- int i, cnt;
|
|
+ int i, cnt, prob = 50;
|
|
+
|
|
+ if (mode == def_random) {
|
|
+ char *endp, *env = getenv("KCONFIG_PROBABILITY");
|
|
+ if (env && *env) {
|
|
+ int tmp = (int)strtol(env, &endp, 10);
|
|
+ if (*endp == '\0' && tmp >= 0 && tmp <= 100)
|
|
+ prob = tmp;
|
|
+ }
|
|
+ }
|
|
|
|
for_all_symbols(i, sym) {
|
|
if (sym_has_value(sym))
|
|
@@ -1126,8 +1135,15 @@
|
|
sym->def[S_DEF_USER].tri = no;
|
|
break;
|
|
case def_random:
|
|
- cnt = sym_get_type(sym) == S_TRISTATE ? 3 : 2;
|
|
- sym->def[S_DEF_USER].tri = (tristate)(rand() % cnt);
|
|
+ cnt = (rand() % 100) - (100 - prob);
|
|
+ if (cnt < 0)
|
|
+ sym->def[S_DEF_USER].tri = no;
|
|
+ else
|
|
+ if ((sym_get_type(sym) == S_TRISTATE)
|
|
+ && (cnt > prob/2))
|
|
+ sym->def[S_DEF_USER].tri = mod;
|
|
+ else
|
|
+ sym->def[S_DEF_USER].tri = yes;
|
|
break;
|
|
default:
|
|
continue;
|