Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/scripts/kconfig/mconf.c

    r1765 r2725  
    116116"Menuconfig supports the use of alternate configuration files for\n"
    117117"those who, for various reasons, find it necessary to switch\n"
    118 "between different busybox configurations.\n"
     118"between different configurations.\n"
    119119"\n"
    120120"At the end of the main menu you will find two options.  One is\n"
     
    149149"Optional personality available\n"
    150150"------------------------------\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"
    152152"menu, rather than the default multimenu hierarchy, run the menuconfig\n"
    153153"with MENUCONFIG_MODE environment variable set to single_menu. Example:\n"
     
    194194load_config_help[] = N_(
    195195    "\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"
    197197    "configurations available on a single machine.\n"
    198198    "\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"
     199    "If you have saved a previous configuration in a file other than\n"
     200    "default, entering the name of the file here will allow you\n"
    201201    "to modify that configuration.\n"
    202202    "\n"
     
    208208save_config_help[] = N_(
    209209    "\n"
    210     "For various reasons, one may wish to keep different busybox\n"
     210    "For various reasons, one may wish to keep different\n"
    211211    "configurations available on a single machine.\n"
    212212    "\n"
     
    259259static char buf[4096], *bufptr = buf;
    260260static char input_buf[4096];
    261 static char filename[PATH_MAX+1] = ".config";
     261static const char filename[] = ".config";
    262262static char *args[1024], **argptr = args;
    263263static int indent;
     
    10711071        cprint_init();
    10721072        cprint("--yesno");
    1073         cprint(_("Do you wish to save your new busybox configuration?"));
     1073        cprint(_("Do you wish to save your new configuration?"));
    10741074        cprint("5");
    10751075        cprint("60");
     
    10801080        if (conf_write(NULL)) {
    10811081            fprintf(stderr, _("\n\n"
    1082                 "Error during writing of the busybox configuration.\n"
    1083                 "Your busybox configuration changes were NOT saved."
     1082                "Error during writing of the configuration.\n"
     1083                "Your configuration changes were NOT saved."
    10841084                "\n\n"));
    10851085            return 1;
    10861086        }
    10871087        printf(_("\n\n"
    1088             "*** End of busybox configuration.\n"
    1089             "*** Execute 'make' to build busybox or try 'make help'."
     1088            "*** End of configuration.\n"
     1089            "*** Execute 'make' to build the project or try 'make help'."
    10901090            "\n\n"));
    10911091    } else {
    10921092        fprintf(stderr, _("\n\n"
    1093             "Your busybox configuration changes were NOT saved."
     1093            "Your configuration changes were NOT saved."
    10941094            "\n\n"));
    10951095    }
Note: See TracChangeset for help on using the changeset viewer.