X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/1ed672d40b5a44d84f3e50af0605f48558f33afa..dc472b5e32a361553945b7460a72881a3360f570:/openwrt/scripts/download.pl diff --git a/openwrt/scripts/download.pl b/openwrt/scripts/download.pl index 8042e2d07..df55b8f12 100755 --- a/openwrt/scripts/download.pl +++ b/openwrt/scripts/download.pl @@ -64,12 +64,20 @@ 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://mirror1.openwrt.org/'; +push @mirrors, 'http://mirror2.openwrt.org/'; +push @mirrors, 'http://openwrt.org/download/sources/'; while (!$ok) { my $mirror = shift @mirrors;