aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/download.pl
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-06-08 06:48:19 +0000
committerNicolas Thill <nico@openwrt.org>2005-06-08 06:48:19 +0000
commite7e81ce718553634bee7f403c044c5845ff7f624 (patch)
tree87f6c09eb80ecae17ecd90dc9f47b1d88ee8bed1 /scripts/download.pl
parent8cbbfa5ff60b4a33ac4badb1642c81d70f473994 (diff)
downloadmaster-187ad058-e7e81ce718553634bee7f403c044c5845ff7f624.tar.gz
master-187ad058-e7e81ce718553634bee7f403c044c5845ff7f624.tar.bz2
master-187ad058-e7e81ce718553634bee7f403c044c5845ff7f624.zip
Add GNU download facility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1170 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 8042e2d07c..482f7af53b 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;