Index: scripts/download.pl =================================================================== --- scripts/download.pl (revision 22460) +++ scripts/download.pl (working copy) @@ -135,14 +135,7 @@ push @mirrors, "ftp://ftp.leo.org/pub/comp/os/unix/gnu/$1"; push @mirrors, "ftp://ftp.digex.net/pub/gnu/$1"; } elsif ($mirror =~ /^\@KERNEL\/(.+)$/) { - push @mirrors, "ftp://ftp.geo.kernel.org/pub/$1"; - push @mirrors, "http://ftp.geo.kernel.org/pub/$1"; - push @mirrors, "ftp://ftp.all.kernel.org/pub/$1"; - push @mirrors, "http://ftp.all.kernel.org/pub/$1"; - push @mirrors, "ftp://ftp.de.kernel.org/pub/$1"; - push @mirrors, "http://ftp.de.kernel.org/pub/$1"; - push @mirrors, "ftp://ftp.fr.kernel.org/pub/$1"; - push @mirrors, "http://ftp.fr.kernel.org/pub/$1"; + push @mirrors, "http://download.librewrt.org/pub/$1"; } elsif ($mirror =~ /^\@GNOME\/(.+)$/) { push @mirrors, "http://ftp.gnome.org/pub/GNOME/sources/$1"; push @mirrors, "http://ftp.unina.it/pub/linux/GNOME/sources/$1"; @@ -162,9 +155,7 @@ } } -#push @mirrors, 'http://mirror1.openwrt.org'; -push @mirrors, 'http://mirror2.openwrt.org/sources'; -push @mirrors, 'http://downloads.openwrt.org/sources'; +push @mirrors, 'http://download.librewrt.org/sources'; while (!$ok) { my $mirror = shift @mirrors; Index: scripts/update-package-md5sum =================================================================== --- scripts/update-package-md5sum (revision 22460) +++ scripts/update-package-md5sum (working copy) @@ -1,8 +1,8 @@ #!/usr/bin/env sh # -# update-package-md5sum - Updates md5sum of OpenWrt packages +# update-package-md5sum - Updates md5sum of LibreWRT packages # -# update-package-md5sum will update the md5sum for all recusivly found OpenWrt packages +# update-package-md5sum will update the md5sum for all recusivly found LibreWRT packages # in a given directory. # # Usage: scripts/update-package-md5sum Index: scripts/symlink-tree.sh =================================================================== --- scripts/symlink-tree.sh (revision 22460) +++ scripts/symlink-tree.sh (working copy) @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Create a new openwrt tree with symlinks pointing at the current tree +# Create a new LibreWRT tree with symlinks pointing at the current tree # Usage: ./scripts/symlink-tree.sh FILES=" Index: scripts/dl_cleanup.py =================================================================== --- scripts/dl_cleanup.py (revision 22460) +++ scripts/dl_cleanup.py (working copy) @@ -1,6 +1,6 @@ #!/usr/bin/env python """ -# OpenWRT download directory cleanup utility. +# LibreWRT download directory cleanup utility. # Delete all but the very last version of the program tarballs. # # Copyright (c) 2010 Michael Buesch @@ -132,7 +132,7 @@ return self.version >= y.version def usage(): - print "OpenWRT download directory cleanup utility" + print "LibreWRT download directory cleanup utility" print "Usage: " + sys.argv[0] + " [OPTIONS] " print "" print " -d|--dry-run Do a dry-run. Don't delete any files" Index: scripts/config/zconf.tab.c_shipped =================================================================== --- scripts/config/zconf.tab.c_shipped (revision 22460) +++ scripts/config/zconf.tab.c_shipped (working copy) @@ -1951,7 +1951,7 @@ sym_init(); menu_init(); modules_sym = sym_lookup("MODULES", 0); - rootmenu.prompt = menu_add_prompt(P_MENU, "OpenWrt Configuration", NULL); + rootmenu.prompt = menu_add_prompt(P_MENU, "LibreWRT Configuration", NULL); #if YYDEBUG if (getenv("ZCONF_DEBUG")) Index: scripts/config/mconf.c =================================================================== --- scripts/config/mconf.c (revision 22460) +++ scripts/config/mconf.c (working copy) @@ -30,7 +30,7 @@ static const char mconf_readme[] = N_( "Overview\n" "--------\n" -"Some OpenWrt features may be built directly into the image.\n" +"Some LibreWRT features may be built directly into the image.\n" "Some may be made into installable ipkg packages. Some features\n" "may be completely removed altogether.\n" "\n" @@ -114,7 +114,7 @@ "-----------------------------\n" "Menuconfig supports the use of alternate configuration files for\n" "those who, for various reasons, find it necessary to switch\n" -"between different OpenWrt configurations.\n" +"between different LibreWRT configurations.\n" "\n" "At the end of the main menu you will find two options. One is\n" "for saving the current configuration to a file of your choosing.\n" @@ -192,11 +192,11 @@ "last retrieved. Leave blank to abort."), load_config_help[] = N_( "\n" - "For various reasons, one may wish to keep several different OpenWrt\n" + "For various reasons, one may wish to keep several different LibreWRT\n" "configurations available on a single machine.\n" "\n" "If you have saved a previous configuration in a file other than\n" - "OpenWrt's default, entering the name of the file here will allow you\n" + "LibreWRT's default, entering the name of the file here will allow you\n" "to modify that configuration.\n" "\n" "If you are uncertain, then you have probably never used alternate\n" @@ -206,7 +206,7 @@ "as an alternate. Leave blank to abort."), save_config_help[] = N_( "\n" - "For various reasons, one may wish to keep different OpenWrt\n" + "For various reasons, one may wish to keep different LibreWRT\n" "configurations available on a single machine.\n" "\n" "Entering a file name here will allow you to later retrieve, modify\n" @@ -1084,7 +1084,7 @@ sym = sym_lookup("OPENWRTVERSION", 0); sym_calc_value(sym); - sprintf(menu_backtitle, _("OpenWrt %s Configuration"), + sprintf(menu_backtitle, _("LibreWRT version 0 'Absolute Alpha'"), sym_get_string_value(sym)); mode = getenv("MENUCONFIG_MODE"); @@ -1101,7 +1101,7 @@ do { cprint_init(); cprint("--yesno"); - cprint(_("Do you wish to save your new OpenWrt configuration?")); + cprint(_("Do you wish to save your new LibreWRT configuration?")); cprint("5"); cprint("60"); stat = exec_conf(); @@ -1110,14 +1110,14 @@ if (stat == 0) { if (conf_write(NULL)) { fprintf(stderr, _("\n\n" - "Error during writing of the OpenWrt configuration.\n" + "Error during writing of the LibreWRT configuration.\n" "Your configuration changes were NOT saved." "\n\n")); return 1; } printf(_("\n\n" - "*** End of OpenWrt configuration.\n" - "*** Execute 'make' to build the OpenWrt or try 'make help'." + "*** End of LibreWRT configuration.\n" + "*** Execute 'make' to build LibreWRT or try 'make help'." "\n\n")); } else { fprintf(stderr, _("\n\n" Index: scripts/config/zconf.y =================================================================== --- scripts/config/zconf.y (revision 22460) +++ scripts/config/zconf.y (working copy) @@ -472,7 +472,7 @@ sym_init(); menu_init(); modules_sym = sym_lookup("MODULES", 0); - rootmenu.prompt = menu_add_prompt(P_MENU, "OpenWrt Configuration", NULL); + rootmenu.prompt = menu_add_prompt(P_MENU, "LibreWRT Configuration", NULL); #if YYDEBUG if (getenv("ZCONF_DEBUG")) Index: scripts/config/README =================================================================== --- scripts/config/README (revision 22460) +++ scripts/config/README (working copy) @@ -1,2 +1,2 @@ These files were taken from the Linux 2.6.16.7 Kernel -Configuration System and modified for the OpenWrt Buildroot. +Configuration System and modified for the LibreWRT Buildroot. Index: scripts/config/confdata.c =================================================================== --- scripts/config/confdata.c (revision 22460) +++ scripts/config/confdata.c (working copy) @@ -424,7 +424,7 @@ fprintf(out, _("#\n" "# Automatically generated make config: don't edit\n" - "# OpenWrt version: %s\n" + "# LibreWRT version: %s\n" "%s%s" "#\n"), sym_get_string_value(sym), Index: scripts/config/Makefile =================================================================== --- scripts/config/Makefile (revision 22460) +++ scripts/config/Makefile (working copy) @@ -1,5 +1,5 @@ # =========================================================================== -# OpenWrt configuration targets +# LibreWRT configuration targets # These targets are used from top-level makefile # =========================================================================== Index: scripts/combined-image.sh =================================================================== --- scripts/combined-image.sh (revision 22460) +++ scripts/combined-image.sh (working copy) @@ -7,7 +7,7 @@ exit 1 } -IMAGE=${3:-openwrt-combined.img} +IMAGE=${3:-librewrt-combined.img} # Make sure provided images are 64k aligned. kern="${IMAGE}.kernel"