DistroKit Mailinglist
 help / color / mirror / Atom feed
* [DistroKit] [PATCH] tf-a: Change download URL
@ 2024-04-24 12:43 Alexander Dahl
  2024-04-24 12:47 ` Roland Hieber
  2024-04-24 12:48 ` Robert Schwebel
  0 siblings, 2 replies; 7+ messages in thread
From: Alexander Dahl @ 2024-04-24 12:43 UTC (permalink / raw)
  To: distrokit; +Cc: Ahmad Fatoum

Previous URL threw 401 errors.  Experiments with other paths from the
same server yield no stable tarballs.  GitHub tarballs are stable, have
a different checksum however.  Tarball content was checked to be the
same (at least compared to those unstable git snapshot tarballs from the
previous URL).  GitHub tarball has same checksum as the one downloaded
by buildroot.

Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 configs/platform-v7a/platformconfig | 4 ++--
 configs/platform-v8a/platformconfig | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig
index bf8e2fc..24cd990 100644
--- a/configs/platform-v7a/platformconfig
+++ b/configs/platform-v7a/platformconfig
@@ -205,9 +205,9 @@ PTXCONF_OPTEE_PLATFORM_FLAVOUR="135F_DK"
 PTXCONF_OPTEE_CFG="CFG_TEE_CORE_LOG_LEVEL=2 CFG_WITH_PAGER=n CFG_GP_SOCKETS=n CFG_TA_MBEDTLS_SELF_TEST=n"
 PTXCONF_TF_A_STM32MP13=y
 PTXCONF_TF_A=y
-PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
+PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
 PTXCONF_TF_A_VERSION="v2.10"
-PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
+PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"
 PTXCONF_TF_A_ARCH_STRING="aarch32"
 PTXCONF_TF_A_ARM_ARCH_MAJOR_7=y
 # PTXCONF_TF_A_ARM_ARCH_MAJOR_8_32_BIT is not set
diff --git a/configs/platform-v8a/platformconfig b/configs/platform-v8a/platformconfig
index 2b91501..b0c7489 100644
--- a/configs/platform-v8a/platformconfig
+++ b/configs/platform-v8a/platformconfig
@@ -205,9 +205,9 @@ PTXCONF_BOOTLOADER=y
 # PTXCONF_GRUB is not set
 # PTXCONF_HOST_MXS_UTILS is not set
 PTXCONF_TF_A=y
-PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
+PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
 PTXCONF_TF_A_VERSION="v2.10"
-PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
+PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"
 PTXCONF_TF_A_ARCH_STRING="aarch64"
 PTXCONF_TF_A_ARM_ARCH_MAJOR_8=y
 PTXCONF_TF_A_ARM_ARCH_MAJOR=8

base-commit: 3c719557d6243b554c206aa86a81b384a7eff31d
-- 
2.39.2




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [DistroKit] [PATCH] tf-a: Change download URL
  2024-04-24 12:43 [DistroKit] [PATCH] tf-a: Change download URL Alexander Dahl
@ 2024-04-24 12:47 ` Roland Hieber
  2024-04-24 12:49   ` Robert Schwebel
  2024-04-24 12:48 ` Robert Schwebel
  1 sibling, 1 reply; 7+ messages in thread
From: Roland Hieber @ 2024-04-24 12:47 UTC (permalink / raw)
  To: Alexander Dahl; +Cc: distrokit, Ahmad Fatoum

On Wed, Apr 24, 2024 at 02:43:41PM +0200, Alexander Dahl wrote:
> Previous URL threw 401 errors.  Experiments with other paths from the
> same server yield no stable tarballs.  GitHub tarballs are stable, have
> a different checksum however.  Tarball content was checked to be the
> same (at least compared to those unstable git snapshot tarballs from the
> previous URL).  GitHub tarball has same checksum as the one downloaded
> by buildroot.
> 
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> ---
>  configs/platform-v7a/platformconfig | 4 ++--
>  configs/platform-v8a/platformconfig | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig
> index bf8e2fc..24cd990 100644
> --- a/configs/platform-v7a/platformconfig
> +++ b/configs/platform-v7a/platformconfig
> @@ -205,9 +205,9 @@ PTXCONF_OPTEE_PLATFORM_FLAVOUR="135F_DK"
>  PTXCONF_OPTEE_CFG="CFG_TEE_CORE_LOG_LEVEL=2 CFG_WITH_PAGER=n CFG_GP_SOCKETS=n CFG_TA_MBEDTLS_SELF_TEST=n"
>  PTXCONF_TF_A_STM32MP13=y
>  PTXCONF_TF_A=y
> -PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
> +PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
>  PTXCONF_TF_A_VERSION="v2.10"
> -PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
> +PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"

I would keep both the new and the original MD5s in place in case someone
has already downloaded the old URL.

 - Roland

>  PTXCONF_TF_A_ARCH_STRING="aarch32"
>  PTXCONF_TF_A_ARM_ARCH_MAJOR_7=y
>  # PTXCONF_TF_A_ARM_ARCH_MAJOR_8_32_BIT is not set
> diff --git a/configs/platform-v8a/platformconfig b/configs/platform-v8a/platformconfig
> index 2b91501..b0c7489 100644
> --- a/configs/platform-v8a/platformconfig
> +++ b/configs/platform-v8a/platformconfig
> @@ -205,9 +205,9 @@ PTXCONF_BOOTLOADER=y
>  # PTXCONF_GRUB is not set
>  # PTXCONF_HOST_MXS_UTILS is not set
>  PTXCONF_TF_A=y
> -PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
> +PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
>  PTXCONF_TF_A_VERSION="v2.10"
> -PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
> +PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"
>  PTXCONF_TF_A_ARCH_STRING="aarch64"
>  PTXCONF_TF_A_ARM_ARCH_MAJOR_8=y
>  PTXCONF_TF_A_ARM_ARCH_MAJOR=8
> 
> base-commit: 3c719557d6243b554c206aa86a81b384a7eff31d
> -- 
> 2.39.2
> 
> 
> 

-- 
Roland Hieber, Pengutronix e.K.          | r.hieber@pengutronix.de     |
Steuerwalder Str. 21                     | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686         | Fax:   +49-5121-206917-5555 |



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [DistroKit] [PATCH] tf-a: Change download URL
  2024-04-24 12:43 [DistroKit] [PATCH] tf-a: Change download URL Alexander Dahl
  2024-04-24 12:47 ` Roland Hieber
@ 2024-04-24 12:48 ` Robert Schwebel
  1 sibling, 0 replies; 7+ messages in thread
From: Robert Schwebel @ 2024-04-24 12:48 UTC (permalink / raw)
  To: Alexander Dahl; +Cc: distrokit, Ahmad Fatoum

On Wed, Apr 24, 2024 at 02:43:41PM +0200, Alexander Dahl wrote:
> Previous URL threw 401 errors.  Experiments with other paths from the
> same server yield no stable tarballs.  GitHub tarballs are stable, have
> a different checksum however.  Tarball content was checked to be the
> same (at least compared to those unstable git snapshot tarballs from the
> previous URL).  GitHub tarball has same checksum as the one downloaded
> by buildroot.

Applied to next.

> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> ---
>  configs/platform-v7a/platformconfig | 4 ++--
>  configs/platform-v8a/platformconfig | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig
> index bf8e2fc..24cd990 100644
> --- a/configs/platform-v7a/platformconfig
> +++ b/configs/platform-v7a/platformconfig
> @@ -205,9 +205,9 @@ PTXCONF_OPTEE_PLATFORM_FLAVOUR="135F_DK"
>  PTXCONF_OPTEE_CFG="CFG_TEE_CORE_LOG_LEVEL=2 CFG_WITH_PAGER=n CFG_GP_SOCKETS=n CFG_TA_MBEDTLS_SELF_TEST=n"
>  PTXCONF_TF_A_STM32MP13=y
>  PTXCONF_TF_A=y
> -PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
> +PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
>  PTXCONF_TF_A_VERSION="v2.10"
> -PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
> +PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"
>  PTXCONF_TF_A_ARCH_STRING="aarch32"
>  PTXCONF_TF_A_ARM_ARCH_MAJOR_7=y
>  # PTXCONF_TF_A_ARM_ARCH_MAJOR_8_32_BIT is not set
> diff --git a/configs/platform-v8a/platformconfig b/configs/platform-v8a/platformconfig
> index 2b91501..b0c7489 100644
> --- a/configs/platform-v8a/platformconfig
> +++ b/configs/platform-v8a/platformconfig
> @@ -205,9 +205,9 @@ PTXCONF_BOOTLOADER=y
>  # PTXCONF_GRUB is not set
>  # PTXCONF_HOST_MXS_UTILS is not set
>  PTXCONF_TF_A=y
> -PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
> +PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
>  PTXCONF_TF_A_VERSION="v2.10"
> -PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
> +PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"
>  PTXCONF_TF_A_ARCH_STRING="aarch64"
>  PTXCONF_TF_A_ARM_ARCH_MAJOR_8=y
>  PTXCONF_TF_A_ARM_ARCH_MAJOR=8
> 
> base-commit: 3c719557d6243b554c206aa86a81b384a7eff31d
> -- 
> 2.39.2
> 
> 
> 

-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21                       | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-9    |



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [DistroKit] [PATCH] tf-a: Change download URL
  2024-04-24 12:47 ` Roland Hieber
@ 2024-04-24 12:49   ` Robert Schwebel
  2024-05-27 15:57     ` Robert Schwebel
  0 siblings, 1 reply; 7+ messages in thread
From: Robert Schwebel @ 2024-04-24 12:49 UTC (permalink / raw)
  To: Roland Hieber; +Cc: Alexander Dahl, distrokit, Ahmad Fatoum

On Wed, Apr 24, 2024 at 02:47:55PM +0200, Roland Hieber wrote:
> On Wed, Apr 24, 2024 at 02:43:41PM +0200, Alexander Dahl wrote:
> > Previous URL threw 401 errors.  Experiments with other paths from the
> > same server yield no stable tarballs.  GitHub tarballs are stable, have
> > a different checksum however.  Tarball content was checked to be the
> > same (at least compared to those unstable git snapshot tarballs from the
> > previous URL).  GitHub tarball has same checksum as the one downloaded
> > by buildroot.
> > 
> > Signed-off-by: Alexander Dahl <ada@thorsis.com>
> > ---
> >  configs/platform-v7a/platformconfig | 4 ++--
> >  configs/platform-v8a/platformconfig | 4 ++--
> >  2 files changed, 4 insertions(+), 4 deletions(-)
> > 
> > diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig
> > index bf8e2fc..24cd990 100644
> > --- a/configs/platform-v7a/platformconfig
> > +++ b/configs/platform-v7a/platformconfig
> > @@ -205,9 +205,9 @@ PTXCONF_OPTEE_PLATFORM_FLAVOUR="135F_DK"
> >  PTXCONF_OPTEE_CFG="CFG_TEE_CORE_LOG_LEVEL=2 CFG_WITH_PAGER=n CFG_GP_SOCKETS=n CFG_TA_MBEDTLS_SELF_TEST=n"
> >  PTXCONF_TF_A_STM32MP13=y
> >  PTXCONF_TF_A=y
> > -PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
> > +PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
> >  PTXCONF_TF_A_VERSION="v2.10"
> > -PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
> > +PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"
> 
> I would keep both the new and the original MD5s in place in case someone
> has already downloaded the old URL.

Good point, can you send a fixup against -next?

rsc
-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21                       | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-9    |



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [DistroKit] [PATCH] tf-a: Change download URL
  2024-04-24 12:49   ` Robert Schwebel
@ 2024-05-27 15:57     ` Robert Schwebel
  2024-05-28  6:10       ` Alexander Dahl
  0 siblings, 1 reply; 7+ messages in thread
From: Robert Schwebel @ 2024-05-27 15:57 UTC (permalink / raw)
  To: Roland Hieber; +Cc: Alexander Dahl, distrokit, Ahmad Fatoum

On Wed, Apr 24, 2024 at 02:49:39PM +0200, Robert Schwebel wrote:
> On Wed, Apr 24, 2024 at 02:47:55PM +0200, Roland Hieber wrote:
> > On Wed, Apr 24, 2024 at 02:43:41PM +0200, Alexander Dahl wrote:
> > > Previous URL threw 401 errors.  Experiments with other paths from the
> > > same server yield no stable tarballs.  GitHub tarballs are stable, have
> > > a different checksum however.  Tarball content was checked to be the
> > > same (at least compared to those unstable git snapshot tarballs from the
> > > previous URL).  GitHub tarball has same checksum as the one downloaded
> > > by buildroot.
> > > 
> > > Signed-off-by: Alexander Dahl <ada@thorsis.com>
> > > ---
> > >  configs/platform-v7a/platformconfig | 4 ++--
> > >  configs/platform-v8a/platformconfig | 4 ++--
> > >  2 files changed, 4 insertions(+), 4 deletions(-)
> > > 
> > > diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig
> > > index bf8e2fc..24cd990 100644
> > > --- a/configs/platform-v7a/platformconfig
> > > +++ b/configs/platform-v7a/platformconfig
> > > @@ -205,9 +205,9 @@ PTXCONF_OPTEE_PLATFORM_FLAVOUR="135F_DK"
> > >  PTXCONF_OPTEE_CFG="CFG_TEE_CORE_LOG_LEVEL=2 CFG_WITH_PAGER=n CFG_GP_SOCKETS=n CFG_TA_MBEDTLS_SELF_TEST=n"
> > >  PTXCONF_TF_A_STM32MP13=y
> > >  PTXCONF_TF_A=y
> > > -PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
> > > +PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
> > >  PTXCONF_TF_A_VERSION="v2.10"
> > > -PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
> > > +PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"
> > 
> > I would keep both the new and the original MD5s in place in case someone
> > has already downloaded the old URL.
> 
> Good point, can you send a fixup against -next?

Ping!

rsc
-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21                       | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-9    |



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [DistroKit] [PATCH] tf-a: Change download URL
  2024-05-27 15:57     ` Robert Schwebel
@ 2024-05-28  6:10       ` Alexander Dahl
  2024-05-28  8:21         ` Robert Schwebel
  0 siblings, 1 reply; 7+ messages in thread
From: Alexander Dahl @ 2024-05-28  6:10 UTC (permalink / raw)
  To: Robert Schwebel; +Cc: Alexander Dahl, distrokit, Ahmad Fatoum, Roland Hieber

Hello Robert,

Am Mon, May 27, 2024 at 05:57:25PM +0200 schrieb Robert Schwebel:
> On Wed, Apr 24, 2024 at 02:49:39PM +0200, Robert Schwebel wrote:
> > On Wed, Apr 24, 2024 at 02:47:55PM +0200, Roland Hieber wrote:
> > > On Wed, Apr 24, 2024 at 02:43:41PM +0200, Alexander Dahl wrote:
> > > > Previous URL threw 401 errors.  Experiments with other paths from the
> > > > same server yield no stable tarballs.  GitHub tarballs are stable, have
> > > > a different checksum however.  Tarball content was checked to be the
> > > > same (at least compared to those unstable git snapshot tarballs from the
> > > > previous URL).  GitHub tarball has same checksum as the one downloaded
> > > > by buildroot.
> > > > 
> > > > Signed-off-by: Alexander Dahl <ada@thorsis.com>
> > > > ---
> > > >  configs/platform-v7a/platformconfig | 4 ++--
> > > >  configs/platform-v8a/platformconfig | 4 ++--
> > > >  2 files changed, 4 insertions(+), 4 deletions(-)
> > > > 
> > > > diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig
> > > > index bf8e2fc..24cd990 100644
> > > > --- a/configs/platform-v7a/platformconfig
> > > > +++ b/configs/platform-v7a/platformconfig
> > > > @@ -205,9 +205,9 @@ PTXCONF_OPTEE_PLATFORM_FLAVOUR="135F_DK"
> > > >  PTXCONF_OPTEE_CFG="CFG_TEE_CORE_LOG_LEVEL=2 CFG_WITH_PAGER=n CFG_GP_SOCKETS=n CFG_TA_MBEDTLS_SELF_TEST=n"
> > > >  PTXCONF_TF_A_STM32MP13=y
> > > >  PTXCONF_TF_A=y
> > > > -PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
> > > > +PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
> > > >  PTXCONF_TF_A_VERSION="v2.10"
> > > > -PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
> > > > +PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"
> > > 
> > > I would keep both the new and the original MD5s in place in case someone
> > > has already downloaded the old URL.
> > 
> > Good point, can you send a fixup against -next?
> 
> Ping!

Already sent that and it's in master already.  

See commit 3e11c53d98c0bd3283b0adc4489ffb45f7c8c68f in master or
https://lore.distrokit.org/distrokit/ZikDCSQW0qNbXaKJ@pengutronix.de/T/#t
where the fixup was sent.

Greets
Alex




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [DistroKit] [PATCH] tf-a: Change download URL
  2024-05-28  6:10       ` Alexander Dahl
@ 2024-05-28  8:21         ` Robert Schwebel
  0 siblings, 0 replies; 7+ messages in thread
From: Robert Schwebel @ 2024-05-28  8:21 UTC (permalink / raw)
  To: Roland Hieber, distrokit, Ahmad Fatoum

On Tue, May 28, 2024 at 08:10:17AM +0200, Alexander Dahl wrote:
> Am Mon, May 27, 2024 at 05:57:25PM +0200 schrieb Robert Schwebel:
> > On Wed, Apr 24, 2024 at 02:49:39PM +0200, Robert Schwebel wrote:
> > > On Wed, Apr 24, 2024 at 02:47:55PM +0200, Roland Hieber wrote:
> > > > On Wed, Apr 24, 2024 at 02:43:41PM +0200, Alexander Dahl wrote:
> > > > > Previous URL threw 401 errors.  Experiments with other paths from the
> > > > > same server yield no stable tarballs.  GitHub tarballs are stable, have
> > > > > a different checksum however.  Tarball content was checked to be the
> > > > > same (at least compared to those unstable git snapshot tarballs from the
> > > > > previous URL).  GitHub tarball has same checksum as the one downloaded
> > > > > by buildroot.
> > > > > 
> > > > > Signed-off-by: Alexander Dahl <ada@thorsis.com>
> > > > > ---
> > > > >  configs/platform-v7a/platformconfig | 4 ++--
> > > > >  configs/platform-v8a/platformconfig | 4 ++--
> > > > >  2 files changed, 4 insertions(+), 4 deletions(-)
> > > > > 
> > > > > diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig
> > > > > index bf8e2fc..24cd990 100644
> > > > > --- a/configs/platform-v7a/platformconfig
> > > > > +++ b/configs/platform-v7a/platformconfig
> > > > > @@ -205,9 +205,9 @@ PTXCONF_OPTEE_PLATFORM_FLAVOUR="135F_DK"
> > > > >  PTXCONF_OPTEE_CFG="CFG_TEE_CORE_LOG_LEVEL=2 CFG_WITH_PAGER=n CFG_GP_SOCKETS=n CFG_TA_MBEDTLS_SELF_TEST=n"
> > > > >  PTXCONF_TF_A_STM32MP13=y
> > > > >  PTXCONF_TF_A=y
> > > > > -PTXCONF_TF_A_URL="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot"
> > > > > +PTXCONF_TF_A_URL="https://github.com/ARM-software/arm-trusted-firmware/archive/refs/tags"
> > > > >  PTXCONF_TF_A_VERSION="v2.10"
> > > > > -PTXCONF_TF_A_MD5="641f42080967e05d687ef2fa9f8f3bc3"
> > > > > +PTXCONF_TF_A_MD5="179042745d57dc03cb44063d43dc5301"
> > > > 
> > > > I would keep both the new and the original MD5s in place in case someone
> > > > has already downloaded the old URL.
> > > 
> > > Good point, can you send a fixup against -next?
> > 
> > Ping!
> 
> Already sent that and it's in master already.  
> 
> See commit 3e11c53d98c0bd3283b0adc4489ffb45f7c8c68f in master or
> https://lore.distrokit.org/distrokit/ZikDCSQW0qNbXaKJ@pengutronix.de/T/#t
> where the fixup was sent.

Ah, missed that.

rsc
-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21                       | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-9    |



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-05-28  8:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-24 12:43 [DistroKit] [PATCH] tf-a: Change download URL Alexander Dahl
2024-04-24 12:47 ` Roland Hieber
2024-04-24 12:49   ` Robert Schwebel
2024-05-27 15:57     ` Robert Schwebel
2024-05-28  6:10       ` Alexander Dahl
2024-05-28  8:21         ` Robert Schwebel
2024-04-24 12:48 ` Robert Schwebel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox