aboutsummaryrefslogtreecommitdiff
path: root/scripts/kconfig/mconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig/mconf.c')
-rw-r--r--scripts/kconfig/mconf.c12
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