* [ptxdist] [PATCH 2/2] u-boot: use HTTPS from upstream gitlab server
@ 2019-10-23 17:50 Bruno Thomsen
2019-10-24 9:52 ` Michael Olbrich
0 siblings, 1 reply; 3+ messages in thread
From: Bruno Thomsen @ 2019-10-23 17:50 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen, bth
Old FTP server has been down for quite a while, so
switching to secure download from git server.
Change in patch series directory name:
u-boot-2019.10 -> u-boot-v2019.10
Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
rules/u-boot.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/u-boot.make b/rules/u-boot.make
index 8f9290ea7..24ce7745a 100644
--- a/rules/u-boot.make
+++ b/rules/u-boot.make
@@ -18,9 +18,9 @@ PACKAGES-$(PTXCONF_U_BOOT) += u-boot
#
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 := u-boot-v$(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://gitlab.denx.de/u-boot/u-boot/-/archive/v$(U_BOOT_VERSION)/$(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.21.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ptxdist] [PATCH 2/2] u-boot: use HTTPS from upstream gitlab server
2019-10-23 17:50 [ptxdist] [PATCH 2/2] u-boot: use HTTPS from upstream gitlab server Bruno Thomsen
@ 2019-10-24 9:52 ` Michael Olbrich
2019-10-29 7:13 ` Bruno Thomsen
0 siblings, 1 reply; 3+ messages in thread
From: Michael Olbrich @ 2019-10-24 9:52 UTC (permalink / raw)
To: ptxdist
On Wed, Oct 23, 2019 at 07:50:11PM +0200, Bruno Thomsen wrote:
> Old FTP server has been down for quite a while, so
> switching to secure download from git server.
It works here. Maybe you have some local ftp issues?
Can you try https://ftp.denx.de/pub/u-boot/ instead? I would prefer that.
Michael
> Change in patch series directory name:
> u-boot-2019.10 -> u-boot-v2019.10
>
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> ---
> rules/u-boot.make | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rules/u-boot.make b/rules/u-boot.make
> index 8f9290ea7..24ce7745a 100644
> --- a/rules/u-boot.make
> +++ b/rules/u-boot.make
> @@ -18,9 +18,9 @@ PACKAGES-$(PTXCONF_U_BOOT) += u-boot
> #
> 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 := u-boot-v$(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://gitlab.denx.de/u-boot/u-boot/-/archive/v$(U_BOOT_VERSION)/$(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.21.0
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ptxdist] [PATCH 2/2] u-boot: use HTTPS from upstream gitlab server
2019-10-24 9:52 ` Michael Olbrich
@ 2019-10-29 7:13 ` Bruno Thomsen
0 siblings, 0 replies; 3+ messages in thread
From: Bruno Thomsen @ 2019-10-29 7:13 UTC (permalink / raw)
To: Michael Olbrich; +Cc: ptxdist
Hi
Den tor. 24. okt. 2019 kl. 11.53 skrev Michael Olbrich
<m.olbrich@pengutronix.de>:
>
> On Wed, Oct 23, 2019 at 07:50:11PM +0200, Bruno Thomsen wrote:
> > Old FTP server has been down for quite a while, so
> > switching to secure download from git server.
>
> It works here. Maybe you have some local ftp issues?
> Can you try https://ftp.denx.de/pub/u-boot/ instead? I would prefer that.
You are right it must be a "local" issue then. I have tested the ftp
URL from work and home (different ISPs), but fails both places.
The https URL works fine, so will update patch.
Bruno
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-10-29 7:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-23 17:50 [ptxdist] [PATCH 2/2] u-boot: use HTTPS from upstream gitlab server Bruno Thomsen
2019-10-24 9:52 ` Michael Olbrich
2019-10-29 7:13 ` Bruno Thomsen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox