Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] configs/mx53loco: select BR2_TARGET_UBOOT_NEEDS_OPENSSL
@ 2023-06-22 16:49 Fabio Estevam
  2023-06-24 19:27 ` Yann E. MORIN
  2023-07-06 15:34 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2023-06-22 16:49 UTC (permalink / raw)
  To: buildroot; +Cc: Fabio Estevam, Jan-Benedict Glaw

Select  BR2_TARGET_UBOOT_NEEDS_OPENSSL to fix the following
build error:

include/image.h:1383:12: fatal error: openssl/evp.h: No such file or directory

Reported-by: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/mx53loco_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/mx53loco_defconfig b/configs/mx53loco_defconfig
index 212a032d84aa..d03c7d0916e8 100644
--- a/configs/mx53loco_defconfig
+++ b/configs/mx53loco_defconfig
@@ -24,6 +24,7 @@ BR2_TARGET_UBOOT_BOARDNAME="mx53loco"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2023.01"
 BR2_TARGET_UBOOT_FORMAT_IMX=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
-- 
2.34.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/mx53loco: select BR2_TARGET_UBOOT_NEEDS_OPENSSL
  2023-06-22 16:49 [Buildroot] [PATCH] configs/mx53loco: select BR2_TARGET_UBOOT_NEEDS_OPENSSL Fabio Estevam
@ 2023-06-24 19:27 ` Yann E. MORIN
  2023-07-06 15:34 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2023-06-24 19:27 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Jan-Benedict Glaw, buildroot

Fabio, All,

On 2023-06-22 13:49 -0300, Fabio Estevam spake thusly:
> Select  BR2_TARGET_UBOOT_NEEDS_OPENSSL to fix the following
> build error:
> 
> include/image.h:1383:12: fatal error: openssl/evp.h: No such file or directory
> 
> Reported-by: Jan-Benedict Glaw <jbglaw@lug-owl.de>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  configs/mx53loco_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/configs/mx53loco_defconfig b/configs/mx53loco_defconfig
> index 212a032d84aa..d03c7d0916e8 100644
> --- a/configs/mx53loco_defconfig
> +++ b/configs/mx53loco_defconfig
> @@ -24,6 +24,7 @@ BR2_TARGET_UBOOT_BOARDNAME="mx53loco"
>  BR2_TARGET_UBOOT_CUSTOM_VERSION=y
>  BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2023.01"
>  BR2_TARGET_UBOOT_FORMAT_IMX=y
> +BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
>  
>  # Kernel
>  BR2_LINUX_KERNEL=y
> -- 
> 2.34.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/mx53loco: select BR2_TARGET_UBOOT_NEEDS_OPENSSL
  2023-06-22 16:49 [Buildroot] [PATCH] configs/mx53loco: select BR2_TARGET_UBOOT_NEEDS_OPENSSL Fabio Estevam
  2023-06-24 19:27 ` Yann E. MORIN
@ 2023-07-06 15:34 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2023-07-06 15:34 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Jan-Benedict Glaw, buildroot

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

 > Select  BR2_TARGET_UBOOT_NEEDS_OPENSSL to fix the following
 > build error:

 > include/image.h:1383:12: fatal error: openssl/evp.h: No such file or directory

 > Reported-by: Jan-Benedict Glaw <jbglaw@lug-owl.de>
 > Signed-off-by: Fabio Estevam <festevam@gmail.com>

Committed to 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] 3+ messages in thread

end of thread, other threads:[~2023-07-06 15:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-22 16:49 [Buildroot] [PATCH] configs/mx53loco: select BR2_TARGET_UBOOT_NEEDS_OPENSSL Fabio Estevam
2023-06-24 19:27 ` Yann E. MORIN
2023-07-06 15:34 ` Peter Korsgaard

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