From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 27 May 2024 22:14:11 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1sBgjT-000kxy-32 for lore@lore.pengutronix.de; Mon, 27 May 2024 22:14:11 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1sBgjT-0006Hj-83; Mon, 27 May 2024 22:14:11 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1sBgj6-0006Gc-DT for ptxdist@pengutronix.de; Mon, 27 May 2024 22:13:48 +0200 Received: from [2a0a:edc0:0:1101:1d::28] (helo=dude02.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1sBgj5-003EcT-W7 for ptxdist@pengutronix.de; Mon, 27 May 2024 22:13:48 +0200 From: Lucas Stach To: ptxdist@pengutronix.de Date: Mon, 27 May 2024 22:13:42 +0200 Message-Id: <20240527201347.673604-1-l.stach@pengutronix.de> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH 1/6] grub: replace download URL with HTTPS X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Signed-off-by: Lucas Stach --- rules/grub.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/grub.make b/rules/grub.make index 63b93c2d7ba9..ce0280e2fae6 100644 --- a/rules/grub.make +++ b/rules/grub.make @@ -16,7 +16,7 @@ PACKAGES-$(PTXCONF_ARCH_X86)-$(PTXCONF_GRUB) += grub GRUB_VERSION := 0.97 GRUB_MD5 := cd3f3eb54446be6003156158d51f4884 GRUB := grub-$(GRUB_VERSION) -GRUB_URL := ftp://alpha.gnu.org/gnu/grub/$(GRUB).tar.gz +GRUB_URL := https://alpha.gnu.org/gnu/grub/$(GRUB).tar.gz GRUB_SOURCE := $(SRCDIR)/$(GRUB).tar.gz GRUB_DIR := $(BUILDDIR)/$(GRUB) -- 2.39.2