aboutsummaryrefslogtreecommitdiff
path: root/scripts/kconfig/mconf.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-05-28 11:59:32 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-05-28 11:59:32 +0000
commit417e240abb08caf6f8b3bf282d2ded32464633f6 (patch)
treeda3848ca1bdcdeb009558ac9a69f6dc7a2b7e46c /scripts/kconfig/mconf.c
parent10be1a787f02b388676ef4ddf674d7244cbbe6e3 (diff)
downloadbusybox-w32-417e240abb08caf6f8b3bf282d2ded32464633f6.tar.gz
busybox-w32-417e240abb08caf6f8b3bf282d2ded32464633f6.tar.bz2
busybox-w32-417e240abb08caf6f8b3bf282d2ded32464633f6.zip
Remove 'busybox' word from configuration programs
(based on experience of adapting it to uclibc).
Diffstat (limited to 'scripts/kconfig/mconf.c')
-rw-r--r--scripts/kconfig/mconf.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index 810b018f1..647ec09f1 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -115,7 +115,7 @@ static const char mconf_readme[] = N_(
115"-----------------------------\n" 115"-----------------------------\n"
116"Menuconfig supports the use of alternate configuration files for\n" 116"Menuconfig supports the use of alternate configuration files for\n"
117"those who, for various reasons, find it necessary to switch\n" 117"those who, for various reasons, find it necessary to switch\n"
118"between different busybox configurations.\n" 118"between different configurations.\n"
119"\n" 119"\n"
120"At the end of the main menu you will find two options. One is\n" 120"At the end of the main menu you will find two options. One is\n"
121"for saving the current configuration to a file of your choosing.\n" 121"for saving the current configuration to a file of your choosing.\n"
@@ -148,7 +148,7 @@ static const char mconf_readme[] = N_(
148"\n" 148"\n"
149"Optional personality available\n" 149"Optional personality available\n"
150"------------------------------\n" 150"------------------------------\n"
151"If you prefer to have all of the busybox options listed in a single\n" 151"If you prefer to have all of the options listed in a single\n"
152"menu, rather than the default multimenu hierarchy, run the menuconfig\n" 152"menu, rather than the default multimenu hierarchy, run the menuconfig\n"
153"with MENUCONFIG_MODE environment variable set to single_menu. Example:\n" 153"with MENUCONFIG_MODE environment variable set to single_menu. Example:\n"
154"\n" 154"\n"
@@ -193,11 +193,11 @@ load_config_text[] = N_(
193 "last retrieved. Leave blank to abort."), 193 "last retrieved. Leave blank to abort."),
194load_config_help[] = N_( 194load_config_help[] = N_(
195 "\n" 195 "\n"
196 "For various reasons, one may wish to keep several different busybox\n" 196 "For various reasons, one may wish to keep several different\n"
197 "configurations available on a single machine.\n" 197 "configurations available on a single machine.\n"
198 "\n" 198 "\n"
199 "If you have saved a previous configuration in a file other than \n" 199 "If you have saved a previous configuration in a file other than\n"
200 "busybox's default, entering the name of the file here will allow you\n" 200 "default, entering the name of the file here will allow you\n"
201 "to modify that configuration.\n" 201 "to modify that configuration.\n"
202 "\n" 202 "\n"
203 "If you are uncertain, then you have probably never used alternate\n" 203 "If you are uncertain, then you have probably never used alternate\n"
@@ -207,7 +207,7 @@ save_config_text[] = N_(
207 "as an alternate. Leave blank to abort."), 207 "as an alternate. Leave blank to abort."),
208save_config_help[] = N_( 208save_config_help[] = N_(
209 "\n" 209 "\n"
210 "For various reasons, one may wish to keep different busybox\n" 210 "For various reasons, one may wish to keep different\n"
211 "configurations available on a single machine.\n" 211 "configurations available on a single machine.\n"
212 "\n" 212 "\n"
213 "Entering a file name here will allow you to later retrieve, modify\n" 213 "Entering a file name here will allow you to later retrieve, modify\n"
@@ -1070,7 +1070,7 @@ int main(int ac, char **av)
1070 do { 1070 do {
1071 cprint_init(); 1071 cprint_init();
1072 cprint("--yesno"); 1072 cprint("--yesno");
1073 cprint(_("Do you wish to save your new busybox configuration?")); 1073 cprint(_("Do you wish to save your new configuration?"));
1074 cprint("5"); 1074 cprint("5");
1075 cprint("60"); 1075 cprint("60");
1076 stat = exec_conf(); 1076 stat = exec_conf();
@@ -1079,18 +1079,18 @@ int main(int ac, char **av)
1079 if (stat == 0) { 1079 if (stat == 0) {
1080 if (conf_write(NULL)) { 1080 if (conf_write(NULL)) {
1081 fprintf(stderr, _("\n\n" 1081 fprintf(stderr, _("\n\n"
1082 "Error during writing of the busybox configuration.\n" 1082 "Error during writing of the configuration.\n"
1083 "Your busybox configuration changes were NOT saved." 1083 "Your configuration changes were NOT saved."
1084 "\n\n")); 1084 "\n\n"));
1085 return 1; 1085 return 1;
1086 } 1086 }
1087 printf(_("\n\n" 1087 printf(_("\n\n"
1088 "*** End of busybox configuration.\n" 1088 "*** End of configuration.\n"
1089 "*** Execute 'make' to build busybox or try 'make help'." 1089 "*** Execute 'make' to build the project or try 'make help'."
1090 "\n\n")); 1090 "\n\n"));
1091 } else { 1091 } else {
1092 fprintf(stderr, _("\n\n" 1092 fprintf(stderr, _("\n\n"
1093 "Your busybox configuration changes were NOT saved." 1093 "Your configuration changes were NOT saved."
1094 "\n\n")); 1094 "\n\n"));
1095 } 1095 }
1096 1096