aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig
diff options
context:
space:
mode:
authorArnaud Lacombe <lacombar@gmail.com>2010-08-21 00:43:46 -0400
committerArnaud Lacombe <lacombar@gmail.com>2010-09-19 18:19:21 -0400
commit59dfa24da7cb02b3ccc39f5e74b74fe26ea9626a (patch)
tree2a38f07cf65023956077448f771af8add3797412 /scripts/kconfig
parent8baefd30b5b0101aa07aa75da44a9eee881eed28 (diff)
kconfig: rephrase help text not to mention the internal prefix
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r--scripts/kconfig/mconf.c10
-rw-r--r--scripts/kconfig/nconf.c12
2 files changed, 11 insertions, 11 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index d2f6e056c058..5c3d0c4b810f 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -232,7 +232,7 @@ save_config_help[] = N_(
232 "leave this blank.\n"), 232 "leave this blank.\n"),
233search_help[] = N_( 233search_help[] = N_(
234 "\n" 234 "\n"
235 "Search for CONFIG_ symbols and display their relations.\n" 235 "Search for symbols and display their relations.\n"
236 "Regular expressions are allowed.\n" 236 "Regular expressions are allowed.\n"
237 "Example: search for \"^FOO\"\n" 237 "Example: search for \"^FOO\"\n"
238 "Result:\n" 238 "Result:\n"
@@ -249,7 +249,7 @@ search_help[] = N_(
249 "Selected by: BAR\n" 249 "Selected by: BAR\n"
250 "-----------------------------------------------------------------\n" 250 "-----------------------------------------------------------------\n"
251 "o The line 'Prompt:' shows the text used in the menu structure for\n" 251 "o The line 'Prompt:' shows the text used in the menu structure for\n"
252 " this CONFIG_ symbol\n" 252 " this symbol\n"
253 "o The 'Defined at' line tell at what file / line number the symbol\n" 253 "o The 'Defined at' line tell at what file / line number the symbol\n"
254 " is defined\n" 254 " is defined\n"
255 "o The 'Depends on:' line tell what symbols needs to be defined for\n" 255 "o The 'Depends on:' line tell what symbols needs to be defined for\n"
@@ -265,9 +265,9 @@ search_help[] = N_(
265 "Only relevant lines are shown.\n" 265 "Only relevant lines are shown.\n"
266 "\n\n" 266 "\n\n"
267 "Search examples:\n" 267 "Search examples:\n"
268 "Examples: USB => find all CONFIG_ symbols containing USB\n" 268 "Examples: USB => find all symbols containing USB\n"
269 " ^USB => find all CONFIG_ symbols starting with USB\n" 269 " ^USB => find all symbols starting with USB\n"
270 " USB$ => find all CONFIG_ symbols ending with USB\n" 270 " USB$ => find all symbols ending with USB\n"
271 "\n"); 271 "\n");
272 272
273static int indent; 273static int indent;
diff --git a/scripts/kconfig/nconf.c b/scripts/kconfig/nconf.c
index 18a215de9f36..b8a9f37b036b 100644
--- a/scripts/kconfig/nconf.c
+++ b/scripts/kconfig/nconf.c
@@ -217,8 +217,8 @@ save_config_help[] = N_(
217"leave this blank.\n"), 217"leave this blank.\n"),
218search_help[] = N_( 218search_help[] = N_(
219"\n" 219"\n"
220"Search for CONFIG_ symbols and display their relations.\n" 220"Search for symbols and display their relations. Regular expressions\n"
221"Regular expressions are allowed.\n" 221"are allowed.\n"
222"Example: search for \"^FOO\"\n" 222"Example: search for \"^FOO\"\n"
223"Result:\n" 223"Result:\n"
224"-----------------------------------------------------------------\n" 224"-----------------------------------------------------------------\n"
@@ -234,7 +234,7 @@ search_help[] = N_(
234"Selected by: BAR\n" 234"Selected by: BAR\n"
235"-----------------------------------------------------------------\n" 235"-----------------------------------------------------------------\n"
236"o The line 'Prompt:' shows the text used in the menu structure for\n" 236"o The line 'Prompt:' shows the text used in the menu structure for\n"
237" this CONFIG_ symbol\n" 237" this symbol\n"
238"o The 'Defined at' line tell at what file / line number the symbol\n" 238"o The 'Defined at' line tell at what file / line number the symbol\n"
239" is defined\n" 239" is defined\n"
240"o The 'Depends on:' line tell what symbols needs to be defined for\n" 240"o The 'Depends on:' line tell what symbols needs to be defined for\n"
@@ -250,9 +250,9 @@ search_help[] = N_(
250"Only relevant lines are shown.\n" 250"Only relevant lines are shown.\n"
251"\n\n" 251"\n\n"
252"Search examples:\n" 252"Search examples:\n"
253"Examples: USB = > find all CONFIG_ symbols containing USB\n" 253"Examples: USB = > find all symbols containing USB\n"
254" ^USB => find all CONFIG_ symbols starting with USB\n" 254" ^USB => find all symbols starting with USB\n"
255" USB$ => find all CONFIG_ symbols ending with USB\n" 255" USB$ => find all symbols ending with USB\n"
256"\n"); 256"\n");
257 257
258struct mitem { 258struct mitem {