diff options
author | Bradford Zhang <zyc@zyc.name> | 2022-09-30 13:28:28 +0800 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-09-30 14:57:19 +0200 |
commit | e93766302548861913b7fd4417bca2cb68af48b5 (patch) | |
tree | 162984382d3b45a223746ac2904a8fc709c6c0f8 /scripts | |
parent | ca0e7054d82bcd11293b22e54d5f6c50bc72f54a (diff) | |
download | openwrt-e93766302548861913b7fd4417bca2cb68af48b5.tar.gz openwrt-e93766302548861913b7fd4417bca2cb68af48b5.tar.bz2 openwrt-e93766302548861913b7fd4417bca2cb68af48b5.zip |
scripts/download.pl: add tsinghua and ustc mirrors
Add https://mirrors.tuna.tsinghua.edu.cn/ and https://mirrors.ustc.edu.cn/ mirrors into download.pl to speed up download in China.
Signed-off-by: Bradford Zhang <zyc@zyc.name>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/download.pl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index 47a0f44beb..2b193ff5b6 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -231,6 +231,8 @@ foreach my $mirror (@ARGV) { push @mirrors, "https://ftp.debian.org/debian/$1"; push @mirrors, "https://mirror.leaseweb.com/debian/$1"; push @mirrors, "https://mirror.netcologne.de/debian/$1"; + push @mirrors, "https://mirrors.tuna.tsinghua.edu.cn/debian/$1"; + push @mirrors, "https://mirrors.ustc.edu.cn/debian/$1" } elsif ($mirror =~ /^\@APACHE\/(.+)$/) { push @mirrors, "https://mirror.netcologne.de/apache.org/$1"; push @mirrors, "https://mirror.aarnet.edu.au/pub/apache/$1"; @@ -241,6 +243,8 @@ foreach my $mirror (@ARGV) { push @mirrors, "http://ftp.jaist.ac.jp/pub/apache/$1"; push @mirrors, "ftp://apache.cs.utah.edu/apache.org/$1"; push @mirrors, "ftp://apache.mirrors.ovh.net/ftp.apache.org/dist/$1"; + push @mirrors, "https://mirrors.tuna.tsinghua.edu.cn/apache/$1"; + push @mirrors, "https://mirrors.ustc.edu.cn/apache/$1"; } elsif ($mirror =~ /^\@GITHUB\/(.+)$/) { # give github a few more tries (different mirrors) for (1 .. 5) { @@ -256,6 +260,8 @@ foreach my $mirror (@ARGV) { push @mirrors, "ftp://mirrors.rit.edu/gnu/$1"; push @mirrors, "ftp://download.xs4all.nl/pub/gnu/$1"; push @mirrors, "https://ftp.gnu.org/gnu/$1"; + push @mirrors, "https://mirrors.tuna.tsinghua.edu.cn/gnu/$1"; + push @mirrors, "https://mirrors.ustc.edu.cn/gnu/$1"; } elsif ($mirror =~ /^\@SAVANNAH\/(.+)$/) { push @mirrors, "https://mirror.netcologne.de/savannah/$1"; push @mirrors, "https://mirror.csclub.uwaterloo.ca/nongnu/$1"; @@ -279,6 +285,8 @@ foreach my $mirror (@ARGV) { push @mirrors, "http://www.ring.gr.jp/archives/linux/kernel.org/$dir"; push @mirrors, "ftp://ftp.riken.jp/Linux/kernel.org/$dir"; push @mirrors, "ftp://www.mirrorservice.org/sites/ftp.kernel.org/pub/$dir"; + push @mirrors, "https://mirrors.tuna.tsinghua.edu.cn/kernel/$dir"; + push @mirrors, "https://mirrors.ustc.edu.cn/kernel.org/$dir"; } } elsif ($mirror =~ /^\@GNOME\/(.+)$/) { push @mirrors, "https://download.gnome.org/sources/$1"; @@ -290,6 +298,7 @@ foreach my $mirror (@ARGV) { push @mirrors, "http://ftp.belnet.be/ftp.gnome.org/sources/$1"; push @mirrors, "ftp://ftp.cse.buffalo.edu/pub/Gnome/sources/$1"; push @mirrors, "ftp://ftp.nara.wide.ad.jp/pub/X11/GNOME/sources/$1"; + push @mirrors, "https://mirrors.ustc.edu.cn/gnome/sources/$1"; } else { push @mirrors, $mirror; } |