Re: [yocto] [OE-core] How to create connman_1.40.bbappend to enable and to build connman with iwd?

2021-11-26 Thread Markus Volk
Hi, i tried this a while ago and for me the iwd.service failed to start. Manually executing /usr/libexec/iwd from terminal told me, that my Kernel config was missing a bunch of CONFIG_CRYPTO_ entries enabled. After rebuilding the kernel the iwd service started properly and iwd was basically s

Re: [yocto] [OE-core] How to create connman_1.40.bbappend to enable and to build connman with iwd?

2021-11-26 Thread JH
Thanks Tim for the link, I have built the iwd. According to Daniel's advice to configure with "--disable-wifi, --enable-iwd", I added PACKAGECONFIG[wifi] = "--disable-wifi, --enable-iwd", to override PACKAGECONFIG[wifi] in oe-core connman_1.40.bb. The intention is to remove wpa-supplicant and to a

Re: [yocto] [OE-core] How to create connman_1.40.bbappend to enable and to build connman with iwd?

2021-11-26 Thread Tim Orling
On Fri, Nov 26, 2021 at 5:48 PM Tim Orling via lists.yoctoproject.org wrote: > > > On Thu, Nov 25, 2021 at 10:26 PM JH wrote: > >> Hi, >> >> Given the high profile of iwd and advocating connman with iwd, I >> believe someone have already built Yocto connman and iwd, >> surprisingly, I could not

Re: [OE-core] How to create connman_1.40.bbappend to enable and to build connman with iwd?

2021-11-26 Thread Tim Orling
On Thu, Nov 25, 2021 at 10:26 PM JH wrote: > Hi, > > Given the high profile of iwd and advocating connman with iwd, I > believe someone have already built Yocto connman and iwd, > surprisingly, I could not even find an iwd recipe in > https://github.com/openembedded/openembedded/tree/master/recip

Re: [OE-core] [dunfell][PATCH v2] git: fix CVE-2021-40330

2021-11-26 Thread Steve Sakoman
On Thu, Nov 25, 2021 at 12:49 AM Minjae Kim wrote: > > git_connect_git in connect.c in Git before 2.30.1 allows a repository path to > contain a newline character, > which may result in unexpected cross-protocol requests, > as demonstrated by the git://localhost:1234/%0d%0a%0d%0aGET%20/%20HTTP/1.

Re: [OE-core] [PATCH] sanity/lib: Replace usage if LooseVersion with bb.utils.vercmp_string_op

2021-11-26 Thread Tim Orling
On Fri, Nov 26, 2021 at 8:34 AM Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > distutils is going away and we have functionality in bitbake which can > handle these comparisions so switch to the bb.utils function. > Looks good. I will refactor the distutils deprecation series to fo

Re: [PATCH v3] Re: [OE-core] [PATCH v2 2/3] Rust cross testing file

2021-11-26 Thread Randy MacLeod
On 2021-11-02 1:12 a.m., Pgowda wrote: Hi Alexandre, There are still issues with that series and I replied the following a https://lists.openembedded.org/g/openembedded-core/message/156655 I had a detailed investigation on the cryptic errors which was mentioned in the build. Those are the tes

Re: [OE-core] [docs] [PATCH] dev-manual: how to purge duplicate sstate cache files

2021-11-26 Thread Jacob Kroon
On 11/26/21 18:23, Michael Opdenacker wrote: > Hi Jacob, > > Thank you for the suggestion! > > On 11/26/21 10:20 AM, Jacob Kroon wrote: >> I also use the --stamps-dir method since that removes additional files. >> You just gotta remember to do a build of everything you want to keep first. > > >

Re: [OE-core] [docs] [PATCH] dev-manual: how to purge duplicate sstate cache files

2021-11-26 Thread Michael Opdenacker
Hi Slava, On 11/26/21 10:13 AM, Vyacheslav Yurkov wrote:Did anyone have time to have a look at what I wrote ? There may be >> better ways to purge the sstate cache files. >> Thanks in advance >> Michael. > > The description looks good to me. By other ways you mean other usage > scenarios of sstate

Re: [OE-core] [docs] [PATCH] dev-manual: how to purge duplicate sstate cache files

2021-11-26 Thread Michael Opdenacker
Hi Jacob, Thank you for the suggestion! On 11/26/21 10:20 AM, Jacob Kroon wrote: > I also use the --stamps-dir method since that removes additional files. > You just gotta remember to do a build of everything you want to keep first. I don't understand the value of this option in the simple case

[OE-core] [PATCH] sanity/lib: Replace usage if LooseVersion with bb.utils.vercmp_string_op

2021-11-26 Thread Richard Purdie
distutils is going away and we have functionality in bitbake which can handle these comparisions so switch to the bb.utils function. Signed-off-by: Richard Purdie --- meta/classes/sanity.bbclass | 18 ++ meta/lib/oe/distro_check.py | 2 +- meta/lib/oe/terminal.py | 7 +++---

[OE-core] [PATCH 2/3] oeqa/utils/dump: Fix typo

2021-11-26 Thread Richard Purdie
Signed-off-by: Richard Purdie --- meta/lib/oeqa/utils/dump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/utils/dump.py b/meta/lib/oeqa/utils/dump.py index bb067f48462..dc8757807e7 100644 --- a/meta/lib/oeqa/utils/dump.py +++ b/meta/lib/oeqa/utils/dump.py @@

[OE-core] [PATCH 3/3] ptest-packagelists: Add missing python3-jsonpointer entry

2021-11-26 Thread Richard Purdie
Resolves: WARNING: python3-jsonpointer-2.2-r0 do_package_qa: QA Issue: supports ptests but is not included in oe-core's ptest-packagelists.inc [missing-ptest] Signed-off-by: Richard Purdie --- meta/conf/distro/include/ptest-packagelists.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/m

[OE-core] [PATCH 1/3] oeqa/parselogs: Fix quoting

2021-11-26 Thread Richard Purdie
Fix deprecation warnings about invalid escape sequences. Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/cases/parselogs.py | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs

Re: [OE-core] [RFC PATCH 02/26] setuptools: refactor for no distutils bbclasses

2021-11-26 Thread Tim Orling
On Thu, Nov 25, 2021 at 11:37 PM Konrad Weihmann wrote: > > > On 26.11.21 05:35, Tim Orling wrote: > > Signed-off-by: Tim Orling > > --- > > meta/classes/setuptools3-base.bbclass | 31 + > > meta/classes/setuptools3.bbclass | 67 ++- > > 2 files chang

[OE-core] [dunfell][PATCH v2 2/2] openssh: remove redundant BSD license

2021-11-26 Thread Mikko Rapeli
From: Ross Burton The license statement already includes BSD-2-Clause and BSD-3-Clause, so remove the redundant and ambiguous BSD license. (From OE-Core rev: 5c0b03cda19bcebfc71e1e601a4336fcda4bfc2b) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie Signed-off-by: Mikko Rapeli (cherry

[OE-core] [dunfell][PATCH v2 1/2] openssh: Improve LICENSE to show BSD license variants.

2021-11-26 Thread Mikko Rapeli
From: Wang Mingyu Update LICENSE to show that BSD-2-Clause, BSD-3-Clause and BSD-4-Clause are all present. (From OE-Core rev: d17938953fc2524bc5f04db4409a47aa400e756a) Signed-off-by: Wang Mingyu Signed-off-by: Richard Purdie Signed-off-by: Mikko Rapeli (cherry picked from commit e42870e233a8

Re: [OE-core] [PATCH 1/2] openssh: Improve LICENSE to show BSD license variants.

2021-11-26 Thread Mikko Rapeli
Missing dunfell subject prefix. Will send v2. -Mikko -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#158831): https://lists.openembedded.org/g/openembedded-core/message/158831 Mute This Topic: https://lists.openembedded.org/mt/87319793/21656 Group O

[OE-core] [PATCH 1/2] openssh: Improve LICENSE to show BSD license variants.

2021-11-26 Thread Mikko Rapeli
From: Wang Mingyu Update LICENSE to show that BSD-2-Clause, BSD-3-Clause and BSD-4-Clause are all present. (From OE-Core rev: d17938953fc2524bc5f04db4409a47aa400e756a) Signed-off-by: Wang Mingyu Signed-off-by: Richard Purdie Signed-off-by: Mikko Rapeli (cherry picked from commit e42870e233a8

[oe-core][dunfell][PATCH] python3: upgrade 3.8.11 -> 3.8.12

2021-11-26 Thread Marta Rybczynska
Release Date: Aug. 30, 2021 This is a security release of Python 3.8 Note: The release you're looking at is Python 3.8.12, a security bugfix release for the legacy 3.8 series. Python 3.10 is now the latest feature release series of Python 3. Get the latest release of 3.10.x here. Security conten

Re: [OE-core] [docs] [PATCH] dev-manual: how to purge duplicate sstate cache files

2021-11-26 Thread Jacob Kroon
Hi Michael, On 11/26/21 10:13, Vyacheslav Yurkov wrote: > Hi Michael > > On 23.11.2021 10:14, Michael Opdenacker wrote: >> Greetings, >> >> On 11/19/21 5:06 PM, Michael Opdenacker wrote: >>> Signed-off-by: Michael Opdenacker >>> --- >>>   documentation/dev-manual/common-tasks.rst | 25 ++

Re: [OE-core] [docs] [PATCH] dev-manual: how to purge duplicate sstate cache files

2021-11-26 Thread Vyacheslav Yurkov
Hi Michael On 23.11.2021 10:14, Michael Opdenacker wrote: Greetings, On 11/19/21 5:06 PM, Michael Opdenacker wrote: Signed-off-by: Michael Opdenacker --- documentation/dev-manual/common-tasks.rst | 25 ++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/do

Re: [OE-core] [PATCH] openssl: fix EVP_PKEY_CTX_get_rsa_pss_saltlen() not returning a value

2021-11-26 Thread Richard Purdie
On Thu, 2021-11-25 at 11:10 +, Ross Burton wrote: > Backport a patch submitted upstream. Specifically, this fixes signature > validation in trusted-firmware-a with OpenSSL 3. > > Signed-off-by: Ross Burton > --- > ...-EVP_PKEY_CTX_get_rsa_pss_saltlen-no.patch | 89 +++ > .../