Changeset 4e0f7fd in freewrt
- Timestamp:
- Jul 27, 2006, 3:06:31 PM (19 years ago)
- Branches:
- freewrt_1_0, freewrt_2_0
- Children:
- 6753dda
- Parents:
- 356d3a6
- Location:
- package/config
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
package/config/conf.c
r356d3a6 r4e0f7fd 549 549 if (stat(".config", &tmpstat)) { 550 550 printf("***\n" 551 "*** You have not yet configured Buildroot!\n"551 "*** You have not yet configured FreeWRT!\n" 552 552 "***\n" 553 553 "*** Please run some configurator (e.g. \"make oldconfig\" or\n" … … 577 577 } while (conf_cnt); 578 578 if (conf_write(NULL)) { 579 fprintf(stderr, "\n*** Error during writing of the Buildrootconfiguration.\n\n");579 fprintf(stderr, "\n*** Error during writing of the FreeWRT configuration.\n\n"); 580 580 return 1; 581 581 } -
package/config/mconf.c
r356d3a6 r4e0f7fd 63 63 load_config_help[] = 64 64 "\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" 66 66 "configurations available on a single machine.\n" 67 67 "\n" 68 68 "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" 70 70 "to modify that configuration.\n" 71 71 "\n" … … 77 77 save_config_help[] = 78 78 "\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" 80 80 "configurations available on a single machine.\n" 81 81 "\n" … … 683 683 sym = sym_lookup("VERSION", 0); 684 684 sym_calc_value(sym); 685 snprintf(menu_backtitle, 128, " Buildrootv%s Configuration",685 snprintf(menu_backtitle, 128, "FreeWRT v%s Configuration", 686 686 sym_get_string_value(sym)); 687 687 … … 704 704 do { 705 705 stat = dialog_yesno(NULL, 706 "Do you wish to save your new Buildrootconfiguration?", 5, 60);706 "Do you wish to save your new FreeWRT configuration?", 5, 60); 707 707 } while (stat < 0); 708 708 end_dialog(); … … 711 711 conf_write(NULL); 712 712 printf("\n\n" 713 "*** End of Buildrootconfiguration.\n"713 "*** End of FreeWRT configuration.\n" 714 714 "*** Check the top-level Makefile for additional configuration options.\n\n"); 715 715 } else 716 printf("\n\nYour Buildrootconfiguration changes were NOT saved.\n\n");716 printf("\n\nYour FreeWRT configuration changes were NOT saved.\n\n"); 717 717 718 718 return 0; -
package/config/zconf.tab.c_shipped
r356d3a6 r4e0f7fd 1928 1928 menu_init(); 1929 1929 modules_sym = sym_lookup("MODULES", 0); 1930 rootmenu.prompt = menu_add_prop(P_MENU, " BuildrootConfiguration", NULL, NULL);1930 rootmenu.prompt = menu_add_prop(P_MENU, "FreeWRT Configuration", NULL, NULL); 1931 1931 1932 1932 //zconfdebug = 1; -
package/config/zconf.y
r356d3a6 r4e0f7fd 486 486 menu_init(); 487 487 modules_sym = sym_lookup("MODULES", 0); 488 rootmenu.prompt = menu_add_prop(P_MENU, " BuildrootConfiguration", NULL, NULL);488 rootmenu.prompt = menu_add_prop(P_MENU, "FreeWRT Configuration", NULL, NULL); 489 489 490 490 //zconfdebug = 1;
Note:
See TracChangeset
for help on using the changeset viewer.
