diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-30 22:40:32 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-30 22:40:32 +0000 |
commit | eb98be02ac246690f35bb8029c7c405a6f1ed67b (patch) | |
tree | 0fdacb1a262ce583d2b1dd5d857e27becfdd0b8b /scripts/kconfig/mconf.c | |
parent | 93f6aa6bca1621fc5bce8f543e3e0b3a0be01378 (diff) | |
download | busybox-w32-eb98be02ac246690f35bb8029c7c405a6f1ed67b.tar.gz busybox-w32-eb98be02ac246690f35bb8029c7c405a6f1ed67b.tar.bz2 busybox-w32-eb98be02ac246690f35bb8029c7c405a6f1ed67b.zip |
"kernel config" -> "busybox config"
suggested by Roberto A. Foglietta <roberto.foglietta@gmail.com>
Diffstat (limited to 'scripts/kconfig/mconf.c')
-rw-r--r-- | scripts/kconfig/mconf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index 7f973195e..31a1f4cd9 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 kernel configurations.\n" | 118 | "between different busybox 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" |
@@ -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 kernel configuration?")); | 1073 | cprint(_("Do you wish to save your new busybox 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 kernel configuration.\n" | 1082 | "Error during writing of the busybox configuration.\n" |
1083 | "Your kernel configuration changes were NOT saved." | 1083 | "Your busybox 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 Linux kernel configuration.\n" | 1088 | "*** End of busybox configuration.\n" |
1089 | "*** Execute 'make' to build the kernel or try 'make help'." | 1089 | "*** Execute 'make' to build the kernel 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 kernel configuration changes were NOT saved." | 1093 | "Your busybox configuration changes were NOT saved." |
1094 | "\n\n")); | 1094 | "\n\n")); |
1095 | } | 1095 | } |
1096 | 1096 | ||