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 | 87ecac136c51149af6003487695996f4922430de (patch) | |
tree | 0b930eb55227dcb8cc24b3678e743d9da40b3a28 /openwrt | |
parent | 9ce851bc38ca6ff1c938d85d3270cfd1549caf9e (diff) | |
download | mtk-20170518-87ecac136c51149af6003487695996f4922430de.zip mtk-20170518-87ecac136c51149af6003487695996f4922430de.tar.gz mtk-20170518-87ecac136c51149af6003487695996f4922430de.tar.bz2 |
add a last resort SF round-robin url and some GNU mirrors
SVN-Revision: 2594
Diffstat (limited to 'openwrt')
-rwxr-xr-x | openwrt/scripts/download.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/openwrt/scripts/download.pl b/openwrt/scripts/download.pl index 43dc796..9f46810 100755 --- a/openwrt/scripts/download.pl +++ b/openwrt/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; } |