All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: select host-openssl for the Linux kernel build
@ 2020-11-06 13:36 Fabio Estevam
  2020-11-06 13:36 ` [Buildroot] [PATCH 2/2] configs/mx6udoo: " Fabio Estevam
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fabio Estevam @ 2020-11-06 13:36 UTC (permalink / raw)
  To: buildroot

Select BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y to fix the following
build error:

scripts/extract-cert.c:21:25: fatal error: openssl/bio.h: No such file or directory
 #include <openssl/bio.h>

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

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

diff --git a/configs/mx6sx_udoo_neo_defconfig b/configs/mx6sx_udoo_neo_defconfig
index 4a2f8b0bc056..2bdcade25296 100644
--- a/configs/mx6sx_udoo_neo_defconfig
+++ b/configs/mx6sx_udoo_neo_defconfig
@@ -23,6 +23,7 @@ BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6sx-udoo-neo-basic imx6sx-udoo-neo-full imx6sx-udoo-neo-extended"
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 # required tools to create the SD card image
 BR2_PACKAGE_HOST_DOSFSTOOLS=y
 BR2_PACKAGE_HOST_GENIMAGE=y
-- 
2.17.1

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

* [Buildroot] [PATCH 2/2] configs/mx6udoo: select host-openssl for the Linux kernel build
  2020-11-06 13:36 [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: select host-openssl for the Linux kernel build Fabio Estevam
@ 2020-11-06 13:36 ` Fabio Estevam
  2020-11-06 18:17   ` Marcin Niestrój
  2020-11-06 18:17 ` [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: " Marcin Niestrój
  2020-11-07 12:53 ` Thomas Petazzoni
  2 siblings, 1 reply; 5+ messages in thread
From: Fabio Estevam @ 2020-11-06 13:36 UTC (permalink / raw)
  To: buildroot

Select BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y to fix the following
build error:

scripts/extract-cert.c:21:25: fatal error: openssl/bio.h: No such file or directory
 #include <openssl/bio.h>

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

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 058dc4534d05..60436e8616c1 100644
--- a/configs/mx6udoo_defconfig
+++ b/configs/mx6udoo_defconfig
@@ -25,6 +25,7 @@ BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6q-udoo imx6dl-udoo"
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 # required tools to create the SD card image
 BR2_PACKAGE_HOST_DOSFSTOOLS=y
 BR2_PACKAGE_HOST_GENIMAGE=y
-- 
2.17.1

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

* [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: select host-openssl for the Linux kernel build
  2020-11-06 13:36 [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: select host-openssl for the Linux kernel build Fabio Estevam
  2020-11-06 13:36 ` [Buildroot] [PATCH 2/2] configs/mx6udoo: " Fabio Estevam
@ 2020-11-06 18:17 ` Marcin Niestrój
  2020-11-07 12:53 ` Thomas Petazzoni
  2 siblings, 0 replies; 5+ messages in thread
From: Marcin Niestrój @ 2020-11-06 18:17 UTC (permalink / raw)
  To: buildroot


Fabio Estevam <festevam@gmail.com> writes:

> Select BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y to fix the following
> build error:
>
> scripts/extract-cert.c:21:25: fatal error: openssl/bio.h: No such file or directory
>  #include <openssl/bio.h>
>
> Fixes:
>  https://gitlab.com/buildroot.org/buildroot/-/jobs/831421063
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  configs/mx6sx_udoo_neo_defconfig | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/configs/mx6sx_udoo_neo_defconfig b/configs/mx6sx_udoo_neo_defconfig
> index 4a2f8b0bc056..2bdcade25296 100644
> --- a/configs/mx6sx_udoo_neo_defconfig
> +++ b/configs/mx6sx_udoo_neo_defconfig
> @@ -23,6 +23,7 @@ BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
>  BR2_LINUX_KERNEL_DTS_SUPPORT=y
>  BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6sx-udoo-neo-basic imx6sx-udoo-neo-full imx6sx-udoo-neo-extended"
>  BR2_LINUX_KERNEL_INSTALL_TARGET=y
> +BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
>  # required tools to create the SD card image
>  BR2_PACKAGE_HOST_DOSFSTOOLS=y
>  BR2_PACKAGE_HOST_GENIMAGE=y

Reviewed-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Tested-by: Marcin Niestroj <m.niestroj@grinn-global.com>

-- 
Marcin Niestr?j

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

* [Buildroot] [PATCH 2/2] configs/mx6udoo: select host-openssl for the Linux kernel build
  2020-11-06 13:36 ` [Buildroot] [PATCH 2/2] configs/mx6udoo: " Fabio Estevam
@ 2020-11-06 18:17   ` Marcin Niestrój
  0 siblings, 0 replies; 5+ messages in thread
From: Marcin Niestrój @ 2020-11-06 18:17 UTC (permalink / raw)
  To: buildroot


Fabio Estevam <festevam@gmail.com> writes:

> Select BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y to fix the following
> build error:
>
> scripts/extract-cert.c:21:25: fatal error: openssl/bio.h: No such file or directory
>  #include <openssl/bio.h>
>
> Fixes:
>  https://gitlab.com/buildroot.org/buildroot/-/jobs/831421064
>
> 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 058dc4534d05..60436e8616c1 100644
> --- a/configs/mx6udoo_defconfig
> +++ b/configs/mx6udoo_defconfig
> @@ -25,6 +25,7 @@ BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
>  BR2_LINUX_KERNEL_DTS_SUPPORT=y
>  BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6q-udoo imx6dl-udoo"
>  BR2_LINUX_KERNEL_INSTALL_TARGET=y
> +BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
>  # required tools to create the SD card image
>  BR2_PACKAGE_HOST_DOSFSTOOLS=y
>  BR2_PACKAGE_HOST_GENIMAGE=y

Reviewed-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Tested-by: Marcin Niestroj <m.niestroj@grinn-global.com>

-- 
Marcin Niestr?j

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

* [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: select host-openssl for the Linux kernel build
  2020-11-06 13:36 [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: select host-openssl for the Linux kernel build Fabio Estevam
  2020-11-06 13:36 ` [Buildroot] [PATCH 2/2] configs/mx6udoo: " Fabio Estevam
  2020-11-06 18:17 ` [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: " Marcin Niestrój
@ 2020-11-07 12:53 ` Thomas Petazzoni
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2020-11-07 12:53 UTC (permalink / raw)
  To: buildroot

On Fri,  6 Nov 2020 10:36:33 -0300
Fabio Estevam <festevam@gmail.com> wrote:

> Select BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y to fix the following
> build error:
> 
> scripts/extract-cert.c:21:25: fatal error: openssl/bio.h: No such file or directory
>  #include <openssl/bio.h>
> 
> Fixes:
>  https://gitlab.com/buildroot.org/buildroot/-/jobs/831421063
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  configs/mx6sx_udoo_neo_defconfig | 1 +
>  1 file changed, 1 insertion(+)

Both applied to master. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2020-11-07 12:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-06 13:36 [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: select host-openssl for the Linux kernel build Fabio Estevam
2020-11-06 13:36 ` [Buildroot] [PATCH 2/2] configs/mx6udoo: " Fabio Estevam
2020-11-06 18:17   ` Marcin Niestrój
2020-11-06 18:17 ` [Buildroot] [PATCH 1/2] configs/mx6sx_udoo_neo: " Marcin Niestrój
2020-11-07 12:53 ` Thomas Petazzoni

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.