Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] configs/lego_ev3: update to U-Boot 2021.07
@ 2021-10-16 21:36 David Lechner
  2021-10-17  8:15 ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: David Lechner @ 2021-10-16 21:36 UTC (permalink / raw)
  To: buildroot; +Cc: David Lechner

Buildroot CI has been failing due to 404 error on older U-Boot. Updating
the U-Boot version should fix it and it doesn't hurt to use the latest
U-Boot anyway.

Signed-off-by: David Lechner <david@lechnology.com>
---
 configs/lego_ev3_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/lego_ev3_defconfig b/configs/lego_ev3_defconfig
index b4a1000036..555a63e36c 100644
--- a/configs/lego_ev3_defconfig
+++ b/configs/lego_ev3_defconfig
@@ -43,7 +43,7 @@ BR2_TARGET_ROOTFS_SQUASHFS4_XZ=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.11"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.07"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="legoev3"
 
 # host
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] configs/lego_ev3: update to U-Boot 2021.07
  2021-10-16 21:36 [Buildroot] [PATCH] configs/lego_ev3: update to U-Boot 2021.07 David Lechner
@ 2021-10-17  8:15 ` Yann E. MORIN
  2021-10-22 18:46   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2021-10-17  8:15 UTC (permalink / raw)
  To: David Lechner; +Cc: buildroot

David, All,

On 2021-10-16 16:36 -0500, David Lechner spake thusly:
> Buildroot CI has been failing due to 404 error on older U-Boot.

The real problem is that the certificate presented by the https server
at ftp.denx.de, can't be validated:

    wget --passive-ftp -nd -t 3 -O '/builds/buildroot.org/buildroot/output/build/.u-boot-2018.11.tar.bz2.rycJD2/output' 'https://ftp.denx.de/pub/u-boot/u-boot-2018.11.tar.bz2' 
    --2021-10-14 13:07:22-- https://ftp.denx.de/pub/u-boot/u-boot-2018.11.tar.bz2
    Resolving ftp.denx.de (ftp.denx.de)... 85.214.49.3, 2a01:238:43f4:4600:bc64:4f44:381f:1163
    Connecting to ftp.denx.de (ftp.denx.de)|85.214.49.3|:443... connected.
    ERROR: The certificate of ‘ftp.denx.de’ is not trusted.
    ERROR: The certificate of ‘ftp.denx.de’ has expired.

That's probably because we are still using an old distribution as the
base image to do the run in the CI.

We have a patch pending to update that image. It has just been promoted
to the top of my list of patches to look at today...

> Updating
> the U-Boot version should fix it and it doesn't hurt to use the latest
> U-Boot anyway.

Agreed, although that will still fail in the CI, until we bump to newer
components.

> Signed-off-by: David Lechner <david@lechnology.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  configs/lego_ev3_defconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configs/lego_ev3_defconfig b/configs/lego_ev3_defconfig
> index b4a1000036..555a63e36c 100644
> --- a/configs/lego_ev3_defconfig
> +++ b/configs/lego_ev3_defconfig
> @@ -43,7 +43,7 @@ BR2_TARGET_ROOTFS_SQUASHFS4_XZ=y
>  BR2_TARGET_UBOOT=y
>  BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
>  BR2_TARGET_UBOOT_CUSTOM_VERSION=y
> -BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.11"
> +BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.07"
>  BR2_TARGET_UBOOT_BOARD_DEFCONFIG="legoev3"
>  
>  # host
> -- 
> 2.25.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] configs/lego_ev3: update to U-Boot 2021.07
  2021-10-17  8:15 ` Yann E. MORIN
@ 2021-10-22 18:46   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2021-10-22 18:46 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: David Lechner, buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > David, All,
 > On 2021-10-16 16:36 -0500, David Lechner spake thusly:
 >> Buildroot CI has been failing due to 404 error on older U-Boot.

 > The real problem is that the certificate presented by the https server
 > at ftp.denx.de, can't be validated:

 >     wget --passive-ftp -nd -t 3 -O
 > '/builds/buildroot.org/buildroot/output/build/.u-boot-2018.11.tar.bz2.rycJD2/output'
 > 'https://ftp.denx.de/pub/u-boot/u-boot-2018.11.tar.bz2'
 >     --2021-10-14 13:07:22-- https://ftp.denx.de/pub/u-boot/u-boot-2018.11.tar.bz2
 >     Resolving ftp.denx.de (ftp.denx.de)... 85.214.49.3, 2a01:238:43f4:4600:bc64:4f44:381f:1163
 >     Connecting to ftp.denx.de (ftp.denx.de)|85.214.49.3|:443... connected.
 >     ERROR: The certificate of ‘ftp.denx.de’ is not trusted.
 >     ERROR: The certificate of ‘ftp.denx.de’ has expired.

 > That's probably because we are still using an old distribution as the
 > base image to do the run in the CI.

Yes, it is because wget is linked against gnutls on Debian, and older
gnutls versions have issues with the new alternative cert chain used by
letsencrypt when they moved to the new CA certificate.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-10-22 18:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-16 21:36 [Buildroot] [PATCH] configs/lego_ev3: update to U-Boot 2021.07 David Lechner
2021-10-17  8:15 ` Yann E. MORIN
2021-10-22 18:46   ` Peter Korsgaard

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