Switch download url from ftp to https. This improves security and seems to avoid local connection issues.
Signed-off-by: Bruno Thomsen <[email protected]> --- rules/u-boot.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/u-boot.make b/rules/u-boot.make index b6e65a95a..739913bda 100644 --- a/rules/u-boot.make +++ b/rules/u-boot.make @@ -20,7 +20,7 @@ U_BOOT_VERSION := $(call remove_quotes,$(PTXCONF_U_BOOT_VERSION)) U_BOOT_MD5 := $(call remove_quotes,$(PTXCONF_U_BOOT_MD5)) U_BOOT := u-boot-$(U_BOOT_VERSION) U_BOOT_SUFFIX := tar.bz2 -U_BOOT_URL := ftp://ftp.denx.de/pub/u-boot/$(U_BOOT).$(U_BOOT_SUFFIX) +U_BOOT_URL := https://ftp.denx.de/pub/u-boot/$(U_BOOT).$(U_BOOT_SUFFIX) U_BOOT_SOURCE := $(SRCDIR)/$(U_BOOT).$(U_BOOT_SUFFIX) U_BOOT_DIR := $(BUILDDIR)/$(U_BOOT) U_BOOT_DEVPKG := NO -- 2.23.0 _______________________________________________ ptxdist mailing list [email protected]
