[yocto] [meta-openssl102] Updated

2021-03-26 Thread Mark Hatle
Not sure if anyone is still using this, but I did update OpenSSL 1.0.2 to fix the latest three CVEs: CVE-2021-23839 CVE-2021-23840 CVE-2021-23841 All branches updated. Additionally master has been updated for 'hardknott'. Note, corresponding meta-openssl102-fips does not build. If anyone is

Re: [yocto] Yocto Technical Team Minutes, Engineering Sync, for March 23, 2021

2021-03-26 Thread Alexander Kanavin
On Fri, 26 Mar 2021 at 21:44, Trevor Woerner wrote: > RP: if anyone knows any RISC-V companies, we’d like to get some of them > interested in becoming members. i’d really like to add RISC-V as part > of our matrix, but that would be hard if it doesn’t have a source of > funding > I

[yocto] Yocto Technical Team Minutes, Engineering Sync, for March 23, 2021

2021-03-26 Thread Trevor Woerner
Yocto Technical Team Minutes, Engineering Sync, for March 23, 2021 archive: https://docs.google.com/document/d/1ly8nyhO14kDNnFcW2QskANXW3ZT7QwKC5wWVDg9dDH4/edit == disclaimer == Best efforts are made to ensure the below is accurate and valid. However, errors sometimes happen. If any errors or

Re: [yocto] [ptest-runner][PATCH 4/4v2] utils.c: wait_child reimplement timeout using alarm

2021-03-26 Thread Yi Fan Yu
On 3/24/21 2:40 PM, Aníbal Limón wrote: [Please note: This e-mail is from an EXTERNAL e-mail address] Since we are using threads to read from child, no complex logic is needed for handle timeouts by std{out,err} in the child using alarm(2). [YOCTO #14220] Signed-off-by: Aníbal Limón LGTM,

[yocto] [error-report-web][PATCH v2 3/5] Allow alternate settings, avoid out of memory condition

2021-03-26 Thread Michael Halstead
--- Post/purge.py | 19 --- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Post/purge.py b/Post/purge.py index 829fada..1289d13 100644 --- a/Post/purge.py +++ b/Post/purge.py @@ -1,4 +1,4 @@ -from datetime import datetime +from datetime import datetime, timedelta

[yocto] [error-report-web][PATCH v2 1/5] purge.py: Create script that will purge database

2021-03-26 Thread Michael Halstead
From: Amanda Brindle The script will be run on a regular basis to get rid of old reports that we don't need. This will improve the performance of the application since the database has grown to a huge size. The script will remove reports older than thirty days if they have not been referred to

[yocto] [error-report-web][PATCH v2 4/5] Search on contains, enalble admin, and keep more error history.

2021-03-26 Thread Michael Halstead
--- Post/feed.py| 2 +- Post/purge.py | 5 +++-- Post/views.py | 3 +-- project/urls.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Post/feed.py b/Post/feed.py index 7e5bfdb..5d57b54 100644 --- a/Post/feed.py +++ b/Post/feed.py @@ -27,7 +27,7 @@ class

[yocto] [error-report-web][PATCH v2 5/5] Import parser from the new python3 location

2021-03-26 Thread Michael Halstead
--- Post/views.py | 2 +- README| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Post/views.py b/Post/views.py index 7791201..161d46d 100644 --- a/Post/views.py +++ b/Post/views.py @@ -24,7 +24,7 @@ from django.http import JsonResponse from django.db.models import Q

[yocto] [error-report-web][PATCH v2 2/5] Avoid errors caused by attempting to update referrers for objects that don't exist.

2021-03-26 Thread Michael Halstead
--- Post/views.py | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Post/views.py b/Post/views.py index 5737076..0ad58ba 100644 --- a/Post/views.py +++ b/Post/views.py @@ -256,23 +256,23 @@ def search(request, mode=results_mode.LATEST, **kwargs):

[yocto] [error-report-web][PATCH 5/5] Import parser from the new python3 location

2021-03-26 Thread Michael Halstead
From: Michael Halstead --- Post/views.py | 2 +- README| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Post/views.py b/Post/views.py index 7791201..161d46d 100644 --- a/Post/views.py +++ b/Post/views.py @@ -24,7 +24,7 @@ from django.http import JsonResponse from

[yocto] [error-report-web][PATCH 4/5] Search on contains, enalble admin, and keep more error history.

2021-03-26 Thread Michael Halstead
From: Michael Halstead --- Post/feed.py| 2 +- Post/purge.py | 5 +++-- Post/views.py | 3 +-- project/urls.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Post/feed.py b/Post/feed.py index 7e5bfdb..5d57b54 100644 --- a/Post/feed.py +++ b/Post/feed.py @@ -27,7

[yocto] [error-report-web][PATCH 2/5] Avoid errors caused by attempting to update referrers for objects that don't exist.

2021-03-26 Thread Michael Halstead
From: Michael Halstead --- Post/views.py | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Post/views.py b/Post/views.py index 5737076..0ad58ba 100644 --- a/Post/views.py +++ b/Post/views.py @@ -256,23 +256,23 @@ def search(request,

[yocto] [error-report-web][PATCH 3/5] Allow alternate settings, avoid out of memory condition

2021-03-26 Thread Michael Halstead
From: Michael Halstead --- Post/purge.py | 19 --- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Post/purge.py b/Post/purge.py index 829fada..1289d13 100644 --- a/Post/purge.py +++ b/Post/purge.py @@ -1,4 +1,4 @@ -from datetime import datetime +from datetime

[yocto] [error-report-web][PATCH 1/5] purge.py: Create script that will purge database

2021-03-26 Thread Michael Halstead
From: Amanda Brindle The script will be run on a regular basis to get rid of old reports that we don't need. This will improve the performance of the application since the database has grown to a huge size. The script will remove reports older than thirty days if they have not been referred to

[yocto] To burn 'bitbake package-index' into build process

2021-03-26 Thread keydi
Should it be feasible to burn execution of 'bitbake package-index' into distribution/image build process by conducting an adaption of meta-data ? I mean high-level script is used to spawn Bitbake environment then start Bitbake image target. I am unhappy to mess up high-level script to add that

Re: [yocto] Howto read bitbake -g files?

2021-03-26 Thread Mauro Ziliani
Thank you for the answer. I analyze the problem. opencv_3.1.bb installs many debug packages by PACKAGES variable Removing unneeded packages for PACKAGES every *-dev packages disappears from production image. MZ On mar 25 2021, at 7:34 pm, Khem Raj wrote: > > > On 3/25/21 3:37 AM, Mauro Ziliani

[yocto] Use bitbake command line to override or modify variable

2021-03-26 Thread keydi
1. Where to learn more about above command options (file path the file referred to to be found; file path usage in command option,)? 2. Set/modify variable in bitbake command line, e.g. BBPATH="xyz" bitbake - does this support all supported kinds of variable expansion? 3. Any build process

Re: [yocto] [error-report-web][PATCH] report-error.bbclass: Add layer and bitbake version info to error report

2021-03-26 Thread Milan Shah
Thanks, Richard for responding. I completely understood your point and appreciate the effort you people make to maintain these repositories. But as a contributor, It encourages me to contribute more when my work gets noticed/criticized/accepted by the community. Anyways, I hope that the

Re: [yocto] [error-report-web][PATCH] report-error.bbclass: Add layer and bitbake version info to error report

2021-03-26 Thread Richard Purdie
On Fri, 2021-03-26 at 16:04 +0530, Milan Shah wrote: > It seems like patches sent for error-report-web are not much important to the > community as this patch has > not been reviewed/commented on by anyone since 6th January 2021 (more than > 2.5 months). > > Still, I'm sending a reminder one

Re: [yocto] [error-report-web][PATCH] report-error.bbclass: Add layer and bitbake version info to error report

2021-03-26 Thread Milan Shah
Hi Richard, It seems like patches sent for *error-report-web* are not much important to the community as this patch has *not been reviewed/commented on* by anyone *since 6th January 2021* (*more than 2.5 months*). Still, I'm sending a reminder one last time for [*YOCTO #9700*].

Re: [yocto] [docs] [PATCH 1/2] scripts/run-docs-build: add for loop when publishing tags/branches

2021-03-26 Thread Nicolas Dechesne
On Fri, Mar 26, 2021 at 11:08 AM Quentin Schulz < quentin.sch...@streamunlimited.com> wrote: > Hi Nicolas, > > On Thu, Mar 25, 2021 at 07:12:10PM +0100, Nicolas Dechesne wrote: > > Use for loop to avoid repeating the same pattern over and over. > > > > Signed-off-by: Nicolas Dechesne > > --- > >

Re: [yocto] [docs] [PATCH 1/2] scripts/run-docs-build: add for loop when publishing tags/branches

2021-03-26 Thread Quentin Schulz
Hi Nicolas, On Thu, Mar 25, 2021 at 07:12:10PM +0100, Nicolas Dechesne wrote: > Use for loop to avoid repeating the same pattern over and over. > > Signed-off-by: Nicolas Dechesne > --- > scripts/run-docs-build | 72 -- > 1 file changed, 27

Re: [yocto] [docs] [PATCH 2/2] scripts/run-docs-build: publish docs for 3.1.6 and 3.2.2

2021-03-26 Thread Michael Opdenacker
Reviewed-by: Michael Opdenacker (for both patches). Thanks! On 3/25/21 7:12 PM, Nicolas Dechesne wrote: > Fixes: #14308 > > Signed-off-by: Nicolas Dechesne > --- > scripts/run-docs-build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/run-docs-build

Re: [yocto] [qa-build-notification] QA notification for completed autobuilder build (yocto-3.3_M3.rc2)

2021-03-26 Thread Sangeeta Jain
Hi All, This is the full report for yocto-3.3_M3.rc2: https://git.yoctoproject.org/cgit/cgit.cgi/yocto-testresults-contrib/tree/?h=intel-yocto-testresults === Summary No high milestone defects. No new issue found: Bugs verified: BUG id:14306 - [3.3 M3 rc1] beaglebone poky-alt

Re: [yocto] libcansocket: Weird issue with pkgsplit

2021-03-26 Thread Khem Raj
On 3/25/21 11:07 PM, Huuki, Tuomas wrote: Lähettäjä: Khem Raj Lähetetty: torstai 25. maaliskuuta 2021 20.29 Vastaanottaja: Huuki, Tuomas ; yocto@lists.yoctoproject.org Aihe: Re: [yocto] libcansocket: Weird issue with pkgsplit [EXTERNAL SENDER] - If you believe this may be PHISHING, please

[yocto] libcansocket: Weird issue with pkgsplit

2021-03-26 Thread Tuomas Huuki
Lähettäjä: Khem Raj Lähetetty: torstai 25. maaliskuuta 2021 20.29 Vastaanottaja: Huuki, Tuomas ; yocto@lists.yoctoproject.org Aihe: Re: [yocto] libcansocket: Weird issue with pkgsplit [EXTERNAL SENDER] - If you believe this may be PHISHING, please click the "Report Phishing" button above. On