X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/1ed672d40b5a44d84f3e50af0605f48558f33afa..9654b06b81e26b1f0cdddb8bfa18d91a6d6b244b:/openwrt/scripts/download.pl?ds=sidebyside diff --git a/openwrt/scripts/download.pl b/openwrt/scripts/download.pl index 8042e2d07..a59ffe6ba 100755 --- a/openwrt/scripts/download.pl +++ b/openwrt/scripts/download.pl @@ -57,19 +57,27 @@ sub cleanup foreach my $mirror (@ARGV) { if ($mirror =~ /^\@SF\/(.+)$/) { my $sfpath = $1; - open SF, "wget -t1 -q -O- 'http://prdownloads.sf.net/$sfpath/$filename' |"; + open SF, "wget -t1 -q -O- 'http://prdownloads.sourceforge.net/$sfpath/$filename' |"; while () { /RADIO NAME=use_default VALUE=(\w+) OnClick="form\.submit\(\)">/ and do { push @mirrors, "http://$1.dl.sourceforge.net/sourceforge/$sfpath"; }; } 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://mirror1.openwrt.org/'; +push @mirrors, 'http://mirror2.openwrt.org/'; +push @mirrors, 'http://downloads.openwrt.org/sources/'; while (!$ok) { my $mirror = shift @mirrors;