aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/mconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig/mconf.c')
-rw-r--r--scripts/kconfig/mconf.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index 48f67448af7b..5f29618d1845 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -348,15 +348,19 @@ static void search_conf(void)
348{ 348{
349 struct symbol **sym_arr; 349 struct symbol **sym_arr;
350 struct gstr res; 350 struct gstr res;
351 struct gstr title;
351 char *dialog_input; 352 char *dialog_input;
352 int dres, vscroll = 0, hscroll = 0; 353 int dres, vscroll = 0, hscroll = 0;
353 bool again; 354 bool again;
354 355
356 title = str_new();
357 str_printf( &title, _("Enter %s (sub)string to search for "
358 "(with or without \"%s\")"), CONFIG_, CONFIG_);
359
355again: 360again:
356 dialog_clear(); 361 dialog_clear();
357 dres = dialog_inputbox(_("Search Configuration Parameter"), 362 dres = dialog_inputbox(_("Search Configuration Parameter"),
358 _("Enter " CONFIG_ " (sub)string to search for " 363 str_get(&title),
359 "(with or without \"" CONFIG_ "\")"),
360 10, 75, ""); 364 10, 75, "");
361 switch (dres) { 365 switch (dres) {
362 case 0: 366 case 0:
@@ -365,6 +369,7 @@ again:
365 show_helptext(_("Search Configuration"), search_help); 369 show_helptext(_("Search Configuration"), search_help);
366 goto again; 370 goto again;
367 default: 371 default:
372 str_free(&title);
368 return; 373 return;
369 } 374 }
370 375
@@ -398,6 +403,7 @@ again:
398 str_free(&res); 403 str_free(&res);
399 } while (again); 404 } while (again);
400 free(sym_arr); 405 free(sym_arr);
406 str_free(&title);
401} 407}
402 408
403static void build_conf(struct menu *menu) 409static void build_conf(struct menu *menu)