From 85c07b4205f4881331233991c9e41693c1ec67d1 Mon Sep 17 00:00:00 2001 From: Caelan <803687+clangdo@users.noreply.github.com> Date: Sun, 28 Mar 2021 00:39:37 -0700 Subject: [PATCH] Fix insecure u-boot fetch This is a draft and is untested, but it should "just work" since the server in question serves over https as well as anonymous ftp. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c873fff..c2ddbb4 100644 --- a/Makefile +++ b/Makefile @@ -195,7 +195,7 @@ src/arm-trusted-firmware: src/u-boot: @echo "WGET u-boot" @mkdir src/u-boot - @wget ftp://ftp.denx.de/pub/u-boot/u-boot-2020.04.tar.bz2 + @wget https://ftp.denx.de/pub/u-boot/u-boot-2020.04.tar.bz2 @tar -xvf u-boot-2020.04.tar.bz2 --strip-components 1 -C src/u-boot @cd src/u-boot && patch -p1 < ../u-boot-pinephone.patch