Changeset 4e0f7fd in freewrt


Ignore:
Timestamp:
Jul 27, 2006, 3:06:31 PM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
6753dda
Parents:
356d3a6
Message:

s/Buildroot/FreeWRT/g

git-svn-id: svn://www.freewrt.org/trunk/freewrt@444 afb5a338-a214-0410-bd46-81f09a774fd1

Location:
package/config
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • package/config/conf.c

    r356d3a6 r4e0f7fd  
    549549                if (stat(".config", &tmpstat)) {
    550550                        printf("***\n"
    551                                 "*** You have not yet configured Buildroot!\n"
     551                                "*** You have not yet configured FreeWRT!\n"
    552552                                "***\n"
    553553                                "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
     
    577577        } while (conf_cnt);
    578578        if (conf_write(NULL)) {
    579                 fprintf(stderr, "\n*** Error during writing of the Buildroot configuration.\n\n");
     579                fprintf(stderr, "\n*** Error during writing of the FreeWRT configuration.\n\n");
    580580                return 1;
    581581        }
  • package/config/mconf.c

    r356d3a6 r4e0f7fd  
    6363load_config_help[] =
    6464        "\n"
    65         "For various reasons, one may wish to keep several different Buildroot\n"
     65        "For various reasons, one may wish to keep several different FreeWRT\n"
    6666        "configurations available on a single machine.\n"
    6767        "\n"
    6868        "If you have saved a previous configuration in a file other than the\n"
    69         "Buildroot's default, entering the name of the file here will allow you\n"
     69        "FreeWRT's default, entering the name of the file here will allow you\n"
    7070        "to modify that configuration.\n"
    7171        "\n"
     
    7777save_config_help[] =
    7878        "\n"
    79         "For various reasons, one may wish to keep different Buildroot\n"
     79        "For various reasons, one may wish to keep different FreeWRT\n"
    8080        "configurations available on a single machine.\n"
    8181        "\n"
     
    683683        sym = sym_lookup("VERSION", 0);
    684684        sym_calc_value(sym);
    685         snprintf(menu_backtitle, 128, "Buildroot v%s Configuration",
     685        snprintf(menu_backtitle, 128, "FreeWRT v%s Configuration",
    686686                sym_get_string_value(sym));
    687687
     
    704704        do {
    705705                stat = dialog_yesno(NULL,
    706                                 "Do you wish to save your new Buildroot configuration?", 5, 60);
     706                                "Do you wish to save your new FreeWRT configuration?", 5, 60);
    707707        } while (stat < 0);
    708708        end_dialog();
     
    711711                conf_write(NULL);
    712712                printf("\n\n"
    713                         "*** End of Buildroot configuration.\n"
     713                        "*** End of FreeWRT configuration.\n"
    714714                        "*** Check the top-level Makefile for additional configuration options.\n\n");
    715715        } else
    716                 printf("\n\nYour Buildroot configuration changes were NOT saved.\n\n");
     716                printf("\n\nYour FreeWRT configuration changes were NOT saved.\n\n");
    717717
    718718        return 0;
  • package/config/zconf.tab.c_shipped

    r356d3a6 r4e0f7fd  
    19281928        menu_init();
    19291929        modules_sym = sym_lookup("MODULES", 0);
    1930         rootmenu.prompt = menu_add_prop(P_MENU, "Buildroot Configuration", NULL, NULL);
     1930        rootmenu.prompt = menu_add_prop(P_MENU, "FreeWRT Configuration", NULL, NULL);
    19311931
    19321932        //zconfdebug = 1;
  • package/config/zconf.y

    r356d3a6 r4e0f7fd  
    486486        menu_init();
    487487        modules_sym = sym_lookup("MODULES", 0);
    488         rootmenu.prompt = menu_add_prop(P_MENU, "Buildroot Configuration", NULL, NULL);
     488        rootmenu.prompt = menu_add_prop(P_MENU, "FreeWRT Configuration", NULL, NULL);
    489489
    490490        //zconfdebug = 1;
Note: See TracChangeset for help on using the changeset viewer.