summaryrefslogtreecommitdiffstats
path: root/scripts/download.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/download.pl')
-rwxr-xr-xscripts/download.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/download.pl b/scripts/download.pl
index 8042e2d07..482f7af53 100755
--- a/scripts/download.pl
+++ b/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;