scripts/download: add sources CDN as first mirror
authorPaul Spooren <mail@aparcar.org>
Mon, 6 Apr 2020 11:53:19 +0000 (01:53 -1000)
committerDaniel Golle <daniel@makrotopia.org>
Tue, 14 Apr 2020 22:16:55 +0000 (23:16 +0100)
OpenWrt now has a CDN for sources at sources.cdn.openwrt.org which
mirrors sources.openwrt.org.

Downloading sources outside Europe or US (mainland) could
result in low throughput, extremely slowing down the first compilation of
the build system.

This patch adds sources.cdn.openwrt.org as the first mirror to offer
worldwide fast download speeds by default. If the CDN goes down for
whatever reason, the script jumps to the next available mirror and
downloads requested files as before (in regional varying speed).

Signed-off-by: Paul Spooren <mail@aparcar.org>
Acked-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
scripts/download.pl

index dd49255367d293943dfce21661e1a73fbf61ce15..1d3ff02c5bbef8a0fa55394bbfae4a6d9f6d5555 100755 (executable)
@@ -258,6 +258,7 @@ foreach my $mirror (@ARGV) {
        }
 }
 
+unshift @mirrors, 'https://sources.cdn.openwrt.org';
 #push @mirrors, 'https://mirror1.openwrt.org';
 push @mirrors, 'https://sources.openwrt.org';
 push @mirrors, 'https://mirror2.openwrt.org/sources';