From: Nicolas Thill Date: Wed, 8 Jun 2005 06:48:19 +0000 (+0000) Subject: Add GNU download facility X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=36110909d1e229ff2a6a01956ef04689d173a16c;p=librecmc%2Flibrecmc.git Add GNU download facility SVN-Revision: 1170 --- diff --git a/openwrt/scripts/download.pl b/openwrt/scripts/download.pl index 8042e2d07c..482f7af53b 100755 --- a/openwrt/scripts/download.pl +++ b/openwrt/scripts/download.pl @@ -64,12 +64,19 @@ foreach my $mirror (@ARGV) { }; } close SF; + } elsif ($mirror =~ /^\@GNU\/(.+)$/) { + my $gnupath = $1; + push @mirrors, "ftp://ftp.gnu.org/gnu/$gnupath"; + push @mirrors, "ftp://ftp.belnet.be/mirror/ftp.gnu.org/gnu/$gnupath"; + push @mirrors, "ftp://ftp.mirror.nl/pub/mirror/gnu/$gnupath"; + push @mirrors, "http://mirror.switch.ch/ftp/mirror/gnu/$gnupath"; } else { push @mirrors, $mirror; } } push @mirrors, 'http://openwrt.inf.fh-brs.de/mirror'; +push @mirrors, 'http://openwrt.org/download/sources/'; while (!$ok) { my $mirror = shift @mirrors;