Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] configs/imx23evk: Bump the U-Boot version
@ 2019-02-23  0:28 Fabio Estevam
  2019-02-23  8:54 ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2019-02-23  0:28 UTC (permalink / raw)
  To: buildroot

Thomas Petazzoni reports:

"The imx23evk_defconfig no longer builds:

  https://gitlab.com/buildroot.org/buildroot/-/jobs/158295124

This is due to the bump of OpenSSL to 1.1.x. This issue seems to have
been fixed in U-Boot commit 7bae13b7579a6bc42330427496330fe2a29cbd56,
which is part of U-Boot since 2017.01, but the defconfig is using
2016.09."

Bump to the U-Boot 2019.01 to fix this problem.

Fixes:  https://gitlab.com/buildroot.org/buildroot/-/jobs/158295124

Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx23evk_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/imx23evk_defconfig b/configs/imx23evk_defconfig
index fe0744036d..87610d1b72 100644
--- a/configs/imx23evk_defconfig
+++ b/configs/imx23evk_defconfig
@@ -20,7 +20,7 @@ BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx23-evk"
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="mx23evk"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.09.01"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2019.01"
 BR2_TARGET_UBOOT_FORMAT_SD=y
 
 # Filesystem
-- 
2.17.1

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

* [Buildroot] [PATCH] configs/imx23evk: Bump the U-Boot version
  2019-02-23  0:28 [Buildroot] [PATCH] configs/imx23evk: Bump the U-Boot version Fabio Estevam
@ 2019-02-23  8:54 ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2019-02-23  8:54 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabio" == Fabio Estevam <festevam@gmail.com> writes:

 > Thomas Petazzoni reports:
 > "The imx23evk_defconfig no longer builds:

 >   https://gitlab.com/buildroot.org/buildroot/-/jobs/158295124

 > This is due to the bump of OpenSSL to 1.1.x. This issue seems to have
 > been fixed in U-Boot commit 7bae13b7579a6bc42330427496330fe2a29cbd56,
 > which is part of U-Boot since 2017.01, but the defconfig is using
 > 2016.09."

 > Bump to the U-Boot 2019.01 to fix this problem.

 > Fixes:  https://gitlab.com/buildroot.org/buildroot/-/jobs/158295124

 > Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
 > Signed-off-by: Fabio Estevam <festevam@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] configs/imx23evk: Bump the U-Boot version
@ 2021-12-27 14:44 Fabio Estevam
  2021-12-27 20:17 ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2021-12-27 14:44 UTC (permalink / raw)
  To: buildroot; +Cc: Fabio Estevam

Bump U-Boot to version 2021.10.

This fixes the following error:

/usr/bin/ld: scripts/dtc/dtc-parser.tab.o:(.bss+0x10): multiple definition of `yylloc'; scripts/dtc/dtc-lexer.lex.o:(.bss+0x0): first defined here
collect2: error: ld returned 1 exit status

Fixes: 
- https://gitlab.com/buildroot.org/buildroot/-/jobs/1915006170
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx23evk_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/imx23evk_defconfig b/configs/imx23evk_defconfig
index b5bfc849b434..94d159cf9e5c 100644
--- a/configs/imx23evk_defconfig
+++ b/configs/imx23evk_defconfig
@@ -20,7 +20,7 @@ BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx23-evk"
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="mx23evk"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2019.01"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
 BR2_TARGET_UBOOT_FORMAT_SD=y
 
 # Filesystem
-- 
2.25.1

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

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

* Re: [Buildroot] [PATCH] configs/imx23evk: Bump the U-Boot version
  2021-12-27 14:44 Fabio Estevam
@ 2021-12-27 20:17 ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2021-12-27 20:17 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: buildroot

On Mon, 27 Dec 2021 11:44:04 -0300
Fabio Estevam <festevam@gmail.com> wrote:

> Bump U-Boot to version 2021.10.
> 
> This fixes the following error:
> 
> /usr/bin/ld: scripts/dtc/dtc-parser.tab.o:(.bss+0x10): multiple definition of `yylloc'; scripts/dtc/dtc-lexer.lex.o:(.bss+0x0): first defined here
> collect2: error: ld returned 1 exit status
> 
> Fixes: 
> - https://gitlab.com/buildroot.org/buildroot/-/jobs/1915006170
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  configs/imx23evk_defconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-12-27 20:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-23  0:28 [Buildroot] [PATCH] configs/imx23evk: Bump the U-Boot version Fabio Estevam
2019-02-23  8:54 ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2021-12-27 14:44 Fabio Estevam
2021-12-27 20:17 ` Thomas Petazzoni

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