Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 1/1] configs/imx8mn_bsh_smm_s2[_pro]_defconfig: explicitly set binutils version
@ 2023-07-08 17:31 Dario Binacchi
  2023-08-07 22:10 ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 3+ messages in thread
From: Dario Binacchi @ 2023-07-08 17:31 UTC (permalink / raw)
  To: buildroot; +Cc: Dario Binacchi, Michael Trimarchi, Ariel D'Alessandro

The commit fb50eab8a5e6b ("package/binutils: switch to 2.39.x as the
default version") raised the error reported by Gitlab CI.

I tried to bump arm-trusted-firmware to the version that fixes the issue
against binutils version 2.39, but the subsequent board update was
unsuccessful. Therefore, for now, it is better not to change the version of
binutils to ensure the proper compilation of the image.

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/4603996179
https://gitlab.com/buildroot.org/buildroot/-/jobs/4603996181

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>

---

Changes in v2:
- add `Fixes' tag and change a little bit the commit description

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---
 configs/imx8mn_bsh_smm_s2_defconfig     | 1 +
 configs/imx8mn_bsh_smm_s2_pro_defconfig | 1 +
 2 files changed, 2 insertions(+)

diff --git a/configs/imx8mn_bsh_smm_s2_defconfig b/configs/imx8mn_bsh_smm_s2_defconfig
index 8b2b74395efc..55d05393e184 100644
--- a/configs/imx8mn_bsh_smm_s2_defconfig
+++ b/configs/imx8mn_bsh_smm_s2_defconfig
@@ -1,5 +1,6 @@
 BR2_aarch64=y
 BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
+BR2_BINUTILS_VERSION_2_38_X=y
 BR2_TARGET_GENERIC_GETTY_PORT="ttymxc3"
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/bsh/imx8mn-bsh-smm-s2/post-build.sh"
 BR2_LINUX_KERNEL=y
diff --git a/configs/imx8mn_bsh_smm_s2_pro_defconfig b/configs/imx8mn_bsh_smm_s2_pro_defconfig
index e9ff244a3555..b3767b332e84 100644
--- a/configs/imx8mn_bsh_smm_s2_pro_defconfig
+++ b/configs/imx8mn_bsh_smm_s2_pro_defconfig
@@ -1,5 +1,6 @@
 BR2_aarch64=y
 BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
+BR2_BINUTILS_VERSION_2_38_X=y
 BR2_TARGET_GENERIC_GETTY_PORT="ttymxc3"
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/bsh/imx8mn-bsh-smm-s2-pro/post-build.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT="board/bsh/imx8mn-bsh-smm-s2-pro/post-image.sh"
-- 
2.32.0

_______________________________________________
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 v2 1/1] configs/imx8mn_bsh_smm_s2[_pro]_defconfig: explicitly set binutils version
  2023-07-08 17:31 [Buildroot] [PATCH v2 1/1] configs/imx8mn_bsh_smm_s2[_pro]_defconfig: explicitly set binutils version Dario Binacchi
@ 2023-08-07 22:10 ` Thomas Petazzoni via buildroot
  2023-08-14 14:39   ` Dario Binacchi
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-08-07 22:10 UTC (permalink / raw)
  To: Dario Binacchi; +Cc: Michael Trimarchi, Ariel D'Alessandro, buildroot

Hello,

On Sat,  8 Jul 2023 19:31:04 +0200
Dario Binacchi <dario.binacchi@amarulasolutions.com> wrote:

> The commit fb50eab8a5e6b ("package/binutils: switch to 2.39.x as the
> default version") raised the error reported by Gitlab CI.
> 
> I tried to bump arm-trusted-firmware to the version that fixes the issue
> against binutils version 2.39, but the subsequent board update was
> unsuccessful. Therefore, for now, it is better not to change the version of
> binutils to ensure the proper compilation of the image.
> 
> Fixes:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4603996179
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4603996181
> 
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>

This has normally been fixed in a better way by commit:

  https://gitlab.com/buildroot.org/buildroot/-/commit/7b774048be6292bb61f90759ad3b7b58a33a1650

Could you check if it is working fine now?

Thanks!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
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 v2 1/1] configs/imx8mn_bsh_smm_s2[_pro]_defconfig: explicitly set binutils version
  2023-08-07 22:10 ` Thomas Petazzoni via buildroot
@ 2023-08-14 14:39   ` Dario Binacchi
  0 siblings, 0 replies; 3+ messages in thread
From: Dario Binacchi @ 2023-08-14 14:39 UTC (permalink / raw)
  To: Thomas Petazzoni; +Cc: Michael Trimarchi, Ariel D'Alessandro, buildroot

Hello Thomas,

On Tue, Aug 8, 2023 at 12:11 AM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> Hello,
>
> On Sat,  8 Jul 2023 19:31:04 +0200
> Dario Binacchi <dario.binacchi@amarulasolutions.com> wrote:
>
> > The commit fb50eab8a5e6b ("package/binutils: switch to 2.39.x as the
> > default version") raised the error reported by Gitlab CI.
> >
> > I tried to bump arm-trusted-firmware to the version that fixes the issue
> > against binutils version 2.39, but the subsequent board update was
> > unsuccessful. Therefore, for now, it is better not to change the version of
> > binutils to ensure the proper compilation of the image.
> >
> > Fixes:
> > https://gitlab.com/buildroot.org/buildroot/-/jobs/4603996179
> > https://gitlab.com/buildroot.org/buildroot/-/jobs/4603996181
> >
> > Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
>
> This has normally been fixed in a better way by commit:
>
>   https://gitlab.com/buildroot.org/buildroot/-/commit/7b774048be6292bb61f90759ad3b7b58a33a1650
>
> Could you check if it is working fine now?

Yes. Now It is working.

Thanks and regards,
Dario

>
> Thanks!
>
> Thomas
> --
> Thomas Petazzoni, co-owner and CEO, Bootlin
> Embedded Linux and Kernel engineering and training
> https://bootlin.com



-- 

Dario Binacchi

Senior Embedded Linux Developer

dario.binacchi@amarulasolutions.com

__________________________________


Amarula Solutions SRL

Via Le Canevare 30, 31100 Treviso, Veneto, IT

T. +39 042 243 5310
info@amarulasolutions.com

www.amarulasolutions.com
_______________________________________________
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:[~2023-08-14 14:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-08 17:31 [Buildroot] [PATCH v2 1/1] configs/imx8mn_bsh_smm_s2[_pro]_defconfig: explicitly set binutils version Dario Binacchi
2023-08-07 22:10 ` Thomas Petazzoni via buildroot
2023-08-14 14:39   ` Dario Binacchi

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