diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-12-07 15:35:14 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-12-07 15:35:14 +0000 |
commit | 10c81f0a91434b1288899330c1f12905b8c2ab01 (patch) | |
tree | 52d2c0ff73e1b9998da02a41d1a56fbd87fadfe2 | |
parent | a9bbc3c7b4cff8e8d90394e957ad33fa226ceae2 (diff) | |
download | upstream-10c81f0a91434b1288899330c1f12905b8c2ab01.tar.gz upstream-10c81f0a91434b1288899330c1f12905b8c2ab01.tar.bz2 upstream-10c81f0a91434b1288899330c1f12905b8c2ab01.zip |
add a last resort SF round-robin url and some GNU mirrors
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2594 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | scripts/download.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index 43dc7965b8..9f46810a82 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -63,6 +63,7 @@ foreach my $mirror (@ARGV) { push @mirrors, "http://$1.dl.sourceforge.net/sourceforge/$sfpath"; }; } + push @mirrors, "http://dl.sourceforge.net/sourceforge/$sfpath"; close SF; } elsif ($mirror =~ /^\@GNU\/(.+)$/) { my $gnupath = $1; @@ -70,6 +71,10 @@ foreach my $mirror (@ARGV) { 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"; + push @mirrors, "ftp://ftp.uu.net/archive/systems/gnu/$gnupath"; + push @mirrors, "ftp://ftp.eu.uu.net/pub/gnu/$gnupath"; + push @mirrors, "ftp://ftp.leo.org/pub/comp/os/unix/gnu/$gnupath"; + push @mirrors, "ftp://ftp.digex.net/pub/gnu/$gnupath"; } else { push @mirrors, $mirror; } |