diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-14 17:12:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-14 17:12:18 -0400 |
commit | 45e3e1935e2857c54783291107d33323b3ef33c8 (patch) | |
tree | 26a6e3228b52d0f96f6e56e5879ca898fe909592 /scripts/kconfig/mconf.c | |
parent | cf5046323ea254be72535648a9d090b18b8510f3 (diff) | |
parent | 3f8d9ced7746f3f329ccca0bb3f3c7a2c15c47bb (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next
* 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next: (53 commits)
.gitignore: ignore *.lzma files
kbuild: add generic --set-str option to scripts/config
kbuild: simplify argument loop in scripts/config
kbuild: handle non-existing options in scripts/config
kallsyms: generalize text region handling
kallsyms: support kernel symbols in Blackfin on-chip memory
documentation: make version fix
kbuild: fix a compile warning
gitignore: Add GNU GLOBAL files to top .gitignore
kbuild: fix delay in setlocalversion on readonly source
README: fix misleading pointer to the defconf directory
vmlinux.lds.h update
kernel-doc: cleanup perl script
Improve vmlinux.lds.h support for arch specific linker scripts
kbuild: fix headers_exports with boolean expression
kbuild/headers_check: refine extern check
kbuild: fix "Argument list too long" error for "make headers_check",
ignore *.patch files
Remove bashisms from scripts
menu: fix embedded menu presentation
...
Diffstat (limited to 'scripts/kconfig/mconf.c')
-rw-r--r-- | scripts/kconfig/mconf.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index 6841e95c0989..3bcacb4bfd3a 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c | |||
@@ -732,7 +732,12 @@ static void conf_choice(struct menu *menu) | |||
732 | for (child = menu->list; child; child = child->next) { | 732 | for (child = menu->list; child; child = child->next) { |
733 | if (!menu_is_visible(child)) | 733 | if (!menu_is_visible(child)) |
734 | continue; | 734 | continue; |
735 | item_make("%s", _(menu_get_prompt(child))); | 735 | if (child->sym) |
736 | item_make("%s", _(menu_get_prompt(child))); | ||
737 | else { | ||
738 | item_make("*** %s ***", _(menu_get_prompt(child))); | ||
739 | item_set_tag(':'); | ||
740 | } | ||
736 | item_set_data(child); | 741 | item_set_data(child); |
737 | if (child->sym == active) | 742 | if (child->sym == active) |
738 | item_set_selected(1); | 743 | item_set_selected(1); |
@@ -748,6 +753,9 @@ static void conf_choice(struct menu *menu) | |||
748 | case 0: | 753 | case 0: |
749 | if (selected) { | 754 | if (selected) { |
750 | child = item_data(); | 755 | child = item_data(); |
756 | if (!child->sym) | ||
757 | break; | ||
758 | |||
751 | sym_set_tristate_value(child->sym, yes); | 759 | sym_set_tristate_value(child->sym, yes); |
752 | } | 760 | } |
753 | return; | 761 | return; |