All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sergey Matyukevich <geomatsi@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [autobuild.buildroot.net] Daily results for 2019-09-06
Date: Sat, 7 Sep 2019 14:37:39 +0300	[thread overview]
Message-ID: <20190907113739.GA25893@curiosity> (raw)
In-Reply-To: <20190907061322.CC0778821B@hemlock.osuosl.org>


Hi Thomas and all,

> Hello,
> 
> Autobuild statistics for 2019-09-06
> ===============================
> 
>       branch |  OK | NOK | TIM | TOT |
>   2019.02.x  | 16  |  1  |  0  | 17  |
>   2019.05.x  | 30  |  3  |  0  | 33  |
>   2019.08.x  | 24  |  5  |  0  | 29  |
>     master   | 159 | 102 |  0  | 261 |
> 
> Results for branch 'master'
> ===========================

...

> Detail of defconfig failures
> ----------------------------
> 
>                         defconfig |                        link to the job                        | orph?
> ----------------------------------+---------------------------------------------------------------+------
>                 amarula_a64_relic |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126211  |      
>                arcturus_ucls1012a |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126214  |      
>                         bananapro |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126246  |      
>                    beaglebone_qt5 |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126249  | ORPH 
>         engicam_imx6qdl_icore_qt5 |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126255  |      
>                  imx6-sabresd_qt5 |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126282  |      
>                        imx6ulpico |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126286  |      
>                         imx7dpico |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126288  |      
>                     licheepi_zero |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126292  |      
>                linksprite_pcduino |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126293  |      
>                     orangepi_lite |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126321  |      
>                    orangepi_lite2 |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126320  |      
>                  orangepi_pc_plus |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126326  |      
>                     orangepi_zero |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126331  |      
>               orangepi_zero_plus2 |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126332  |      
>                    pc_x86_64_bios |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126334  |      
>                     pc_x86_64_efi |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126335  |      
>                raspberrypi3_qt5we |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126382  | ORPH 
>                             warp7 |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126413  |      
>                         warpboard |  https://gitlab.com/buildroot.org/buildroot/-/jobs/289126414  | ORPH 

From this list, wpa_supplicant is one of the reasons of build failures
for the following boards:

- amarula_a64_relic
- bananapro
- imx6ulpico
- imx7dpico
- licheepi_zero
- linksprite_pcduino
- orangepi_lite
- orangepi_lite2
- orangepi_pc_plus
- orangepi_zero
- orangepi_zero_plus2
- warp7
- waprboard

It turns out that wpa_supplicant v2.9 requires OpenSSL support for building
WPA3 features such as DPP and SAE. Those features are now enabled by default.
That was not the case for wpa_supplicant v2.7.

One option is to force the use of WPA3 enabling it by default. This
requires adding openssl as unconditional dependency for wpa_supplicant.

Alternatively, WPA3 features can be enabled only when openssl support is
included:

diff --git a/package/wpa_supplicant/wpa_supplicant.mk b/package/wpa_supplicant/wpa_supplicant.mk
index 0a7a5072dc..ef455a47bb 100644
--- a/package/wpa_supplicant/wpa_supplicant.mk
+++ b/package/wpa_supplicant/wpa_supplicant.mk
@@ -92,9 +92,15 @@ endif
 ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
 WPA_SUPPLICANT_DEPENDENCIES += host-pkgconf libopenssl
 WPA_SUPPLICANT_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs openssl`
+WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_DPP
+WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_SAE
+WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_OWE
 WPA_SUPPLICANT_CONFIG_EDITS += 's/\#\(CONFIG_TLS=openssl\)/\1/'
 else
 WPA_SUPPLICANT_CONFIG_DISABLE += CONFIG_EAP_PWD
+WPA_SUPPLICANT_CONFIG_DISABLE += CONFIG_DPP
+WPA_SUPPLICANT_CONFIG_DISABLE += CONFIG_SAE
+WPA_SUPPLICANT_CONFIG_DISABLE += CONFIG_OWE
 WPA_SUPPLICANT_CONFIG_EDITS += 's/\#\(CONFIG_TLS=\).*/\1internal/'
 endif
 

Thoughts ? Comments ?

Regards,
Sergey

  parent reply	other threads:[~2019-09-07 11:37 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-07  6:13 [Buildroot] [autobuild.buildroot.net] Daily results for 2019-09-06 Thomas Petazzoni
2019-09-07  6:20 ` [Buildroot] Notifications of defconfig and runtime test failures Thomas Petazzoni
2019-09-07  9:00   ` Sergey Matyukevich
2019-09-08  0:51   ` Ricardo Martincoski
2019-09-08 16:03     ` Thomas Petazzoni
2019-09-16  2:34       ` Ricardo Martincoski
2019-09-11 14:24   ` Fabio Estevam
2019-09-11 14:44     ` Sergey Matyukevich
2019-09-11 15:04       ` Fabio Estevam
2019-09-07 11:37 ` Sergey Matyukevich [this message]
2019-09-07 12:14   ` [Buildroot] [autobuild.buildroot.net] Daily results for 2019-09-06 Joris Offouga
2019-09-07 20:53   ` Arnout Vandecappelle
2019-09-08  6:14 ` Ricardo Martincoski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190907113739.GA25893@curiosity \
    --to=geomatsi@gmail.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.