From 6ba5f7f4fa45cecec0f356c888697fd83c1d68de Mon Sep 17 00:00:00 2001 From: Paul Batonas Date: Wed, 1 Mar 2017 20:04:08 -0800 Subject: [PATCH] Add https://www.kernel.org/pub to the list of mirrors. Recently, it was announced that kernel.org will shutdown their FTP servers: https://kernel.org/shutting-down-ftp-services.html In fact, the FTP server that hosts kernel sources went offline today. That caused downloads to fail, and it has become impossible to build the VoCore2 OpenWRT image. This change adds the new HTTPS mirror that is here to stay. --- scripts/download.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/download.pl b/scripts/download.pl index 111d03c633..4d732f8a4e 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -177,6 +177,7 @@ sub cleanup push @extra, "$extra[0]/longterm/v$1"; } foreach my $dir (@extra) { + push @mirrors, "https://www.kernel.org/pub/$dir"; push @mirrors, "ftp://ftp.all.kernel.org/pub/$dir"; push @mirrors, "http://ftp.all.kernel.org/pub/$dir"; }