The patch titled Strip 'CONFIG_' automatically in kernel configuration search has been added to the -mm tree. Its filename is strip-config_-automatically-in-kernel-configuration-search.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Strip 'CONFIG_' automatically in kernel configuration search From: Bernhard Walle <bwalle@xxxxxxx> Modify the ncurses configuration tool ('make menuconfig') in a way that the user can enter the search string (/) both with or without the leading 'CONFIG_'. This simplifies using copy & paste from .config files because you can select the whole word. Signed-off-by: Bernhard Walle <bwalle@xxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/kconfig/mconf.c | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff -puN scripts/kconfig/mconf.c~strip-config_-automatically-in-kernel-configuration-search scripts/kconfig/mconf.c --- a/scripts/kconfig/mconf.c~strip-config_-automatically-in-kernel-configuration-search +++ a/scripts/kconfig/mconf.c @@ -419,11 +419,13 @@ static void search_conf(void) { struct symbol **sym_arr; struct gstr res; + char *dialog_input; int dres; again: dialog_clear(); dres = dialog_inputbox(_("Search Configuration Parameter"), - _("Enter CONFIG_ (sub)string to search for (omit CONFIG_)"), + _("Enter CONFIG_ (sub)string to search for " + "(with or without \"CONFIG\")"), 10, 75, ""); switch (dres) { case 0: @@ -435,7 +437,12 @@ again: return; } - sym_arr = sym_re_search(dialog_input_result); + /* strip CONFIG_ if necessary */ + dialog_input = dialog_input_result; + if (strncasecmp(dialog_input_result, "CONFIG_", 7) == 0) + dialog_input += 7; + + sym_arr = sym_re_search(dialog_input); res = get_relations_str(sym_arr); free(sym_arr); show_textbox(_("Search Results"), str_get(&res), 0, 0); _ Patches currently in -mm which might be from bwalle@xxxxxxx are strip-config_-automatically-in-kernel-configuration-search.patch git-scsi-misc.patch blink-only-blink-when-parameter-is-set.patch blink-only-blink-when-parameter-is-set-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html