Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] configs/imx7dpico: Select BR2_TARGET_UBOOT_NEEDS_OPENSSL
@ 2024-09-14 11:43 Fabio Estevam
  2024-09-14 11:43 ` [Buildroot] [PATCH 2/2] configs/mx6udoo: " Fabio Estevam
  2024-09-14 16:31 ` [Buildroot] [PATCH 1/2] configs/imx7dpico: " Arnout Vandecappelle via buildroot
  0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2024-09-14 11:43 UTC (permalink / raw)
  To: buildroot; +Cc: Fabio Estevam

Select BR2_TARGET_UBOOT_NEEDS_OPENSSL to fix the following
build warning:

include/image.h:1471:12: fatal error: openssl/evp.h: No such file or directory
 1471 | #  include <openssl/evp.h>

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

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx7dpico_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/imx7dpico_defconfig b/configs/imx7dpico_defconfig
index b0a4b3dd12d1..eaaa0202bb16 100644
--- a/configs/imx7dpico_defconfig
+++ b/configs/imx7dpico_defconfig
@@ -26,6 +26,7 @@ BR2_TARGET_UBOOT_SPL_NAME="SPL"
 BR2_TARGET_UBOOT_BOARDNAME="pico-pi-imx7d"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2024.07"
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y
 
 # wifi firmware for brcm43439
-- 
2.34.1

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

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

* [Buildroot] [PATCH 2/2] configs/mx6udoo: Select BR2_TARGET_UBOOT_NEEDS_OPENSSL
  2024-09-14 11:43 [Buildroot] [PATCH 1/2] configs/imx7dpico: Select BR2_TARGET_UBOOT_NEEDS_OPENSSL Fabio Estevam
@ 2024-09-14 11:43 ` Fabio Estevam
  2024-09-14 16:31 ` [Buildroot] [PATCH 1/2] configs/imx7dpico: " Arnout Vandecappelle via buildroot
  1 sibling, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2024-09-14 11:43 UTC (permalink / raw)
  To: buildroot; +Cc: Fabio Estevam

Select BR2_TARGET_UBOOT_NEEDS_OPENSSL to fix the following
build warning:

include/image.h:1471:12: fatal error: openssl/evp.h: No such file or directory
 1471 | #  include <openssl/evp.h>

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

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/mx6udoo_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/mx6udoo_defconfig b/configs/mx6udoo_defconfig
index 6c84a41bfdcf..7e94e0a8338a 100644
--- a/configs/mx6udoo_defconfig
+++ b/configs/mx6udoo_defconfig
@@ -14,6 +14,7 @@ BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="udoo"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2024.07"
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_FORMAT_IMG=y
 BR2_TARGET_UBOOT_SPL=y
 BR2_TARGET_UBOOT_SPL_NAME="SPL"
-- 
2.34.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 1/2] configs/imx7dpico: Select BR2_TARGET_UBOOT_NEEDS_OPENSSL
  2024-09-14 11:43 [Buildroot] [PATCH 1/2] configs/imx7dpico: Select BR2_TARGET_UBOOT_NEEDS_OPENSSL Fabio Estevam
  2024-09-14 11:43 ` [Buildroot] [PATCH 2/2] configs/mx6udoo: " Fabio Estevam
@ 2024-09-14 16:31 ` Arnout Vandecappelle via buildroot
  2024-10-03 11:13   ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2024-09-14 16:31 UTC (permalink / raw)
  To: Fabio Estevam, buildroot



On 14/09/2024 13:43, Fabio Estevam wrote:
> Select BR2_TARGET_UBOOT_NEEDS_OPENSSL to fix the following
> build warning:
> 
> include/image.h:1471:12: fatal error: openssl/evp.h: No such file or directory
>   1471 | #  include <openssl/evp.h>
> 
> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/7803199869
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

  Applied both to master, thanks.

  If you're actively working with these boards, perhaps you could also add 
hashes for U-Boot and kernel and enable BR2_DOWNLOAD_FORCE_CHECK_HASHES?

  Regards,
  Arnout

> ---
>   configs/imx7dpico_defconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/configs/imx7dpico_defconfig b/configs/imx7dpico_defconfig
> index b0a4b3dd12d1..eaaa0202bb16 100644
> --- a/configs/imx7dpico_defconfig
> +++ b/configs/imx7dpico_defconfig
> @@ -26,6 +26,7 @@ BR2_TARGET_UBOOT_SPL_NAME="SPL"
>   BR2_TARGET_UBOOT_BOARDNAME="pico-pi-imx7d"
>   BR2_TARGET_UBOOT_CUSTOM_VERSION=y
>   BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2024.07"
> +BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
>   BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y
>   
>   # wifi firmware for brcm43439
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] configs/imx7dpico: Select BR2_TARGET_UBOOT_NEEDS_OPENSSL
  2024-09-14 16:31 ` [Buildroot] [PATCH 1/2] configs/imx7dpico: " Arnout Vandecappelle via buildroot
@ 2024-10-03 11:13   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2024-10-03 11:13 UTC (permalink / raw)
  To: Arnout Vandecappelle via buildroot; +Cc: Fabio Estevam

>>>>> "Arnout" == Arnout Vandecappelle via buildroot <buildroot@buildroot.org> writes:

 > On 14/09/2024 13:43, Fabio Estevam wrote:
 >> Select BR2_TARGET_UBOOT_NEEDS_OPENSSL to fix the following
 >> build warning:
 >> include/image.h:1471:12: fatal error: openssl/evp.h: No such file or
 >> directory
 >> 1471 | #  include <openssl/evp.h>
 >> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/7803199869
 >> Signed-off-by: Fabio Estevam <festevam@gmail.com>

 >  Applied both to master, thanks.

 >  If you're actively working with these boards, perhaps you could also
 >  add hashes for U-Boot and kernel and enable
 > BR2_DOWNLOAD_FORCE_CHECK_HASHES?


NIT: This is a build ERROR, not a warning and it was presumably
introduced by your recent u-boot bump in commit 8cf677f4
(configs/imx7dpico: bump kernel and U-Boot version). It would be great
to mention such things in future patches as it helps with figuring out
what needs to be backported to the stable branches.

-- 
Bye, Peter Korsgaard
_______________________________________________
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:[~2024-10-03 11:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-14 11:43 [Buildroot] [PATCH 1/2] configs/imx7dpico: Select BR2_TARGET_UBOOT_NEEDS_OPENSSL Fabio Estevam
2024-09-14 11:43 ` [Buildroot] [PATCH 2/2] configs/mx6udoo: " Fabio Estevam
2024-09-14 16:31 ` [Buildroot] [PATCH 1/2] configs/imx7dpico: " Arnout Vandecappelle via buildroot
2024-10-03 11:13   ` Peter Korsgaard

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