diff options
author | Li Zefan <lizf@cn.fujitsu.com> | 2010-05-07 01:56:50 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-06-02 09:10:32 -0400 |
commit | 70ed074718a6704ac2f82d014f372ba25c42ba12 (patch) | |
tree | e5ece7af4dec24c16aba02bbeaf648ae2e83ec38 /scripts | |
parent | b040b44c35c251882da8488a5f038435a531312c (diff) |
kconfig: print the range of integer/hex symbol in help text
Without this patch, one has to refer to the Kconfig file to find
out the range of an integer/hex symbol.
│ Symbol: NR_CPUS [=4]
│ Type : integer
│ Range : [2 8]
│ Prompt: Maximum number of CPUs
│ Defined at arch/x86/Kconfig:761
│ Depends on: SMP [=y] && !MAXSMP [=n]
│ Location:
│ -> Processor type and features
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/expr.c | 2 | ||||
-rw-r--r-- | scripts/kconfig/menu.c | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c index d83f2322893a..8f18e37892cb 100644 --- a/scripts/kconfig/expr.c +++ b/scripts/kconfig/expr.c | |||
@@ -1121,7 +1121,7 @@ static void expr_print_gstr_helper(void *data, struct symbol *sym, const char *s | |||
1121 | } | 1121 | } |
1122 | 1122 | ||
1123 | str_append(gs, str); | 1123 | str_append(gs, str); |
1124 | if (sym) | 1124 | if (sym && sym->type != S_UNKNOWN) |
1125 | str_printf(gs, " [=%s]", sym_str); | 1125 | str_printf(gs, " [=%s]", sym_str); |
1126 | } | 1126 | } |
1127 | 1127 | ||
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 187caa9142fd..9d1f2adf2289 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c | |||
@@ -505,6 +505,14 @@ void get_symbol_str(struct gstr *r, struct symbol *sym) | |||
505 | str_printf(r, "Symbol: %s [=%s]\n", sym->name, | 505 | str_printf(r, "Symbol: %s [=%s]\n", sym->name, |
506 | sym_get_string_value(sym)); | 506 | sym_get_string_value(sym)); |
507 | str_printf(r, "Type : %s\n", sym_type_name(sym->type)); | 507 | str_printf(r, "Type : %s\n", sym_type_name(sym->type)); |
508 | if (sym->type == S_INT || sym->type == S_HEX) { | ||
509 | prop = sym_get_range_prop(sym); | ||
510 | if (prop) { | ||
511 | str_printf(r, "Range : "); | ||
512 | expr_gstr_print(prop->expr, r); | ||
513 | str_append(r, "\n"); | ||
514 | } | ||
515 | } | ||
508 | } | 516 | } |
509 | for_all_prompts(sym, prop) | 517 | for_all_prompts(sym, prop) |
510 | get_prompt_str(r, prop); | 518 | get_prompt_str(r, prop); |