diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-06-08 06:48:19 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-06-08 06:48:19 +0000 |
commit | 5d2f21c8e3f40ec9c0733d90cefa29d1c1f6fef7 (patch) | |
tree | 7aed210dbef5ef11d1eea979253ef4fae6b3bf1e /openwrt/scripts | |
parent | 190a1be7a37cfc6aa46d9c955b50032f7d1d084c (diff) |
Add GNU download facility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1170 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/scripts')
-rwxr-xr-x | openwrt/scripts/download.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/openwrt/scripts/download.pl b/openwrt/scripts/download.pl index 8042e2d07..482f7af53 100755 --- a/openwrt/scripts/download.pl +++ b/openwrt/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; |