All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/2] configs/nitrogen*: fix u-boot build issues
@ 2023-06-27 14:33 Gary Bisson
  2023-06-27 14:34 ` [Buildroot] [PATCH 1/2] configs/nitrogen*: add missing openssl u-boot dependency Gary Bisson
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Gary Bisson @ 2023-06-27 14:33 UTC (permalink / raw)
  To: buildroot; +Cc: Gary Bisson

Hi,

Sorry for the delay, finally had a chance to create a container using
the support Dockerfile and was able to reproduce the build issues.
Should be all good now.

Thanks,
Gary

Gary Bisson (2):
  configs/nitrogen*: add missing openssl u-boot dependency
  configs/nitrogen*: add missing pylibfdt u-boot dependency

 configs/nitrogen6sx_defconfig | 1 +
 configs/nitrogen6x_defconfig  | 1 +
 configs/nitrogen7_defconfig   | 1 +
 configs/nitrogen8m_defconfig  | 1 +
 configs/nitrogen8mm_defconfig | 1 +
 configs/nitrogen8mn_defconfig | 1 +
 configs/nitrogen8mp_defconfig | 1 +
 7 files changed, 7 insertions(+)

-- 
2.39.2

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

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

* [Buildroot] [PATCH 1/2] configs/nitrogen*: add missing openssl u-boot dependency
  2023-06-27 14:33 [Buildroot] [PATCH 0/2] configs/nitrogen*: fix u-boot build issues Gary Bisson
@ 2023-06-27 14:34 ` Gary Bisson
  2023-07-16 16:26   ` Peter Korsgaard
  2023-06-27 14:34 ` [Buildroot] [PATCH 2/2] configs/nitrogen*: add missing pylibfdt " Gary Bisson
  2023-07-01 20:44 ` [Buildroot] [PATCH 0/2] configs/nitrogen*: fix u-boot build issues Thomas Petazzoni via buildroot
  2 siblings, 1 reply; 6+ messages in thread
From: Gary Bisson @ 2023-06-27 14:34 UTC (permalink / raw)
  To: buildroot; +Cc: Gary Bisson

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271709
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271710
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271712

Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
---
 configs/nitrogen6sx_defconfig | 1 +
 configs/nitrogen6x_defconfig  | 1 +
 configs/nitrogen7_defconfig   | 1 +
 3 files changed, 3 insertions(+)

diff --git a/configs/nitrogen6sx_defconfig b/configs/nitrogen6sx_defconfig
index 4e19a5c3d2..b4ea1b9112 100644
--- a/configs/nitrogen6sx_defconfig
+++ b/configs/nitrogen6sx_defconfig
@@ -28,6 +28,7 @@ BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/u-boot/archive/c2042594.tar.gz"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="nitrogen6sx"
 BR2_TARGET_UBOOT_FORMAT_IMX=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_PACKAGE_HOST_UBOOT_TOOLS=y
 BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT=y
 BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT_SOURCE="board/boundarydevices/common/boot.cmd"
diff --git a/configs/nitrogen6x_defconfig b/configs/nitrogen6x_defconfig
index 5e360e27b4..ed9e13e6eb 100644
--- a/configs/nitrogen6x_defconfig
+++ b/configs/nitrogen6x_defconfig
@@ -27,6 +27,7 @@ BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/u-boot/archive/c2042594.tar.gz"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="nitrogen6q"
 BR2_TARGET_UBOOT_FORMAT_IMX=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_PACKAGE_HOST_UBOOT_TOOLS=y
 BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT=y
 BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT_SOURCE="board/boundarydevices/common/boot.cmd"
diff --git a/configs/nitrogen7_defconfig b/configs/nitrogen7_defconfig
index 0994c61884..c4520aeb89 100644
--- a/configs/nitrogen7_defconfig
+++ b/configs/nitrogen7_defconfig
@@ -27,6 +27,7 @@ BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/u-boot/archive/c2042594.tar.gz"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="nitrogen7"
 BR2_TARGET_UBOOT_FORMAT_IMX=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_PACKAGE_HOST_UBOOT_TOOLS=y
 BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT=y
 BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT_SOURCE="board/boundarydevices/common/boot.cmd"
-- 
2.39.2

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

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

* [Buildroot] [PATCH 2/2] configs/nitrogen*: add missing pylibfdt u-boot dependency
  2023-06-27 14:33 [Buildroot] [PATCH 0/2] configs/nitrogen*: fix u-boot build issues Gary Bisson
  2023-06-27 14:34 ` [Buildroot] [PATCH 1/2] configs/nitrogen*: add missing openssl u-boot dependency Gary Bisson
@ 2023-06-27 14:34 ` Gary Bisson
  2023-07-16 16:27   ` Peter Korsgaard
  2023-07-01 20:44 ` [Buildroot] [PATCH 0/2] configs/nitrogen*: fix u-boot build issues Thomas Petazzoni via buildroot
  2 siblings, 1 reply; 6+ messages in thread
From: Gary Bisson @ 2023-06-27 14:34 UTC (permalink / raw)
  To: buildroot; +Cc: Gary Bisson

Needed by binman.

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271714
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271716
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271718
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271719

Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
---
 configs/nitrogen8m_defconfig  | 1 +
 configs/nitrogen8mm_defconfig | 1 +
 configs/nitrogen8mn_defconfig | 1 +
 configs/nitrogen8mp_defconfig | 1 +
 4 files changed, 4 insertions(+)

diff --git a/configs/nitrogen8m_defconfig b/configs/nitrogen8m_defconfig
index c3959f7614..dc9c1acf78 100644
--- a/configs/nitrogen8m_defconfig
+++ b/configs/nitrogen8m_defconfig
@@ -44,6 +44,7 @@ BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/u-b
 BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
 BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-nodtb.bin"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_SPL=y
 
diff --git a/configs/nitrogen8mm_defconfig b/configs/nitrogen8mm_defconfig
index d7b47c11f8..f021a30ad8 100644
--- a/configs/nitrogen8mm_defconfig
+++ b/configs/nitrogen8mm_defconfig
@@ -44,6 +44,7 @@ BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/u-b
 BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
 BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-nodtb.bin"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_SPL=y
 
diff --git a/configs/nitrogen8mn_defconfig b/configs/nitrogen8mn_defconfig
index b28801878e..88925cfda7 100644
--- a/configs/nitrogen8mn_defconfig
+++ b/configs/nitrogen8mn_defconfig
@@ -44,6 +44,7 @@ BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/u-b
 BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
 BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-nodtb.bin"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_SPL=y
 
diff --git a/configs/nitrogen8mp_defconfig b/configs/nitrogen8mp_defconfig
index e088cb690f..956c3b7bc1 100644
--- a/configs/nitrogen8mp_defconfig
+++ b/configs/nitrogen8mp_defconfig
@@ -44,6 +44,7 @@ BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/u-b
 BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
 BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-nodtb.bin"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_SPL=y
 
-- 
2.39.2

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

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

* Re: [Buildroot] [PATCH 0/2] configs/nitrogen*: fix u-boot build issues
  2023-06-27 14:33 [Buildroot] [PATCH 0/2] configs/nitrogen*: fix u-boot build issues Gary Bisson
  2023-06-27 14:34 ` [Buildroot] [PATCH 1/2] configs/nitrogen*: add missing openssl u-boot dependency Gary Bisson
  2023-06-27 14:34 ` [Buildroot] [PATCH 2/2] configs/nitrogen*: add missing pylibfdt " Gary Bisson
@ 2023-07-01 20:44 ` Thomas Petazzoni via buildroot
  2 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-01 20:44 UTC (permalink / raw)
  To: Gary Bisson; +Cc: buildroot

On Tue, 27 Jun 2023 16:33:59 +0200
Gary Bisson <bisson.gary@gmail.com> wrote:

> Gary Bisson (2):
>   configs/nitrogen*: add missing openssl u-boot dependency
>   configs/nitrogen*: add missing pylibfdt u-boot dependency

Both applied, 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] 6+ messages in thread

* Re: [Buildroot] [PATCH 1/2] configs/nitrogen*: add missing openssl u-boot dependency
  2023-06-27 14:34 ` [Buildroot] [PATCH 1/2] configs/nitrogen*: add missing openssl u-boot dependency Gary Bisson
@ 2023-07-16 16:26   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2023-07-16 16:26 UTC (permalink / raw)
  To: Gary Bisson, buildroot

On 27/06/2023 16.34, Gary Bisson wrote:
> Fixes:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271709
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271710
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271712
> 
> Signed-off-by: Gary Bisson <bisson.gary@gmail.com>

Committed to 2023.02.x and 2023.05.x, thanks.

-- 
Bye, Peter Korsgaard

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

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

* Re: [Buildroot] [PATCH 2/2] configs/nitrogen*: add missing pylibfdt u-boot dependency
  2023-06-27 14:34 ` [Buildroot] [PATCH 2/2] configs/nitrogen*: add missing pylibfdt " Gary Bisson
@ 2023-07-16 16:27   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2023-07-16 16:27 UTC (permalink / raw)
  To: Gary Bisson, buildroot

On 27/06/2023 16.34, Gary Bisson wrote:
> Needed by binman.
> 
> Fixes:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271714
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271716
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271718
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271719
> 
> Signed-off-by: Gary Bisson <bisson.gary@gmail.com>

Committed to 2023.02.x and 2023.05.x, thanks.

-- 
Bye, Peter Korsgaard

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

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

end of thread, other threads:[~2023-07-16 16:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-27 14:33 [Buildroot] [PATCH 0/2] configs/nitrogen*: fix u-boot build issues Gary Bisson
2023-06-27 14:34 ` [Buildroot] [PATCH 1/2] configs/nitrogen*: add missing openssl u-boot dependency Gary Bisson
2023-07-16 16:26   ` Peter Korsgaard
2023-06-27 14:34 ` [Buildroot] [PATCH 2/2] configs/nitrogen*: add missing pylibfdt " Gary Bisson
2023-07-16 16:27   ` Peter Korsgaard
2023-07-01 20:44 ` [Buildroot] [PATCH 0/2] configs/nitrogen*: fix u-boot build issues Thomas Petazzoni via buildroot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.