1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 19:43:16 +03:00

Add GNU download facility

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1170 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2005-06-08 06:48:19 +00:00
parent 08b2fe4d4f
commit 7e963960fd

View File

@ -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;