[meta-gplv2] [PATCH] coreutils: Rebase glibc 2.34 patch on top of series
This should fix the patch errors due to order of patching last time.
Signed-off-by: Khem Raj <raj.khem@...> Cc: Alexandre Belloni <alexandre.belloni@...> --- ...Reorder-includes-for-glibc-2.34-portability.patch | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch b/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch index 0d9b5e2..f37cb47 100644 --- a/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch +++ b/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch @@ -16,11 +16,9 @@ Signed-off-by: Khem Raj <raj.khem@...> src/sort.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -diff --git a/src/sort.c b/src/sort.c -index 58ca66a..48b22c8 100644 --- a/src/sort.c +++ b/src/sort.c -@@ -21,11 +21,11 @@ +@@ -21,12 +21,12 @@ Ørn E. Hansen added NLS support in 1997. */ @@ -28,12 +26,10 @@ index 58ca66a..48b22c8 100644 +#include <sys/wait.h> #include <config.h> + #include <assert.h> #include <getopt.h> -#include <sys/types.h> -#include <sys/wait.h> #include <signal.h> - #include "system.h" - #include "argmatch.h" --- -2.32.0 - + #if HAVE_WCHAR_H + # include <wchar.h> -- 2.32.0
|
|||||||||
|
|||||||||
[meta-gplv2] [PATCH v2] coreutils_6.9.bb: Fix build with glibc 2.34
Signed-off-by: Khem Raj <raj.khem@...>
--- v2: Rebase the patch to respect other patches ...-includes-for-glibc-2.34-portability.patch | 35 +++++++++++++++++++ recipes-core/coreutils/coreutils_6.9.bb | 1 + 2 files changed, 36 insertions(+) create mode 100644 recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch diff --git a/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch b/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch new file mode 100644 index 0000000..f37cb47 --- /dev/null +++ b/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch @@ -0,0 +1,35 @@ +From e241a55767c4eaac7d14c412d880037cb6d2ee33 Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@...> +Date: Tue, 29 Jun 2021 22:43:16 -0700 +Subject: [PATCH] sort.c: Reorder includes for glibc 2.34 portability + +With glibc 2.34 config.h will include stdlib.h and that would disable +sys/wait.h to include needed definitions from bits/waitflags.h since +_STDLIB_H would have been defined already and sys/wait.h would think +these paths are included already, this is fixed with newer gnulib and +configure so this is to get this old version to compile with latest +glibc headers + +Upstream-Status: Inappropriate [OE-Specific] +Signed-off-by: Khem Raj <raj.khem@...> +--- + src/sort.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +--- a/src/sort.c ++++ b/src/sort.c +@@ -21,12 +21,12 @@ + + Ørn E. Hansen added NLS support in 1997. */ + ++#include <sys/types.h> ++#include <sys/wait.h> + #include <config.h> + + #include <assert.h> + #include <getopt.h> +-#include <sys/types.h> +-#include <sys/wait.h> + #include <signal.h> + #if HAVE_WCHAR_H + # include <wchar.h> diff --git a/recipes-core/coreutils/coreutils_6.9.bb b/recipes-core/coreutils/coreutils_6.9.bb index 42b4f3c..69e5489 100644 --- a/recipes-core/coreutils/coreutils_6.9.bb +++ b/recipes-core/coreutils/coreutils_6.9.bb @@ -27,6 +27,7 @@ SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.bz2 \ file://no-man.patch \ file://build-don-t-need-charset.alias-when-building-for-mus.patch \ file://no-su.patch \ + file://0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch \ " SRC_URI[md5sum] = "c9607d8495f16e98906e7ed2d9751a06" -- 2.32.0
|
|||||||||
|
|||||||||
Re: [meta-gplv2] [PATCH] coreutils_6.9.bb: Fix build with glibc 2.34
On Sun, Jul 4, 2021 at 6:19 AM Alexandre Belloni
<alexandre.belloni@...> wrote: yeah my bad, too many context switches, the patch was applied before any other patches from meta-gpl2 to isolate the issue, but then I should have rebased it before sending. Sent a v2 now, use that and it should be ok. On 29/06/2021 22:50:25-0700, Khem Raj wrote:Signed-off-by: Khem Raj <raj.khem@...>
|
|||||||||
|
|||||||||
[meta-gplv2] [PATCH] coreutils_6.9.bb: Fix build with glibc 2.34
Signed-off-by: Khem Raj <raj.khem@...>
--- ...-includes-for-glibc-2.34-portability.patch | 35 +++++++++++++++++++ recipes-core/coreutils/coreutils_6.9.bb | 1 + 2 files changed, 36 insertions(+) create mode 100644 recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch diff --git a/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch b/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch new file mode 100644 index 0000000..f37cb47 --- /dev/null +++ b/recipes-core/coreutils/coreutils-6.9/0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch @@ -0,0 +1,35 @@ +From e241a55767c4eaac7d14c412d880037cb6d2ee33 Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@...> +Date: Tue, 29 Jun 2021 22:43:16 -0700 +Subject: [PATCH] sort.c: Reorder includes for glibc 2.34 portability + +With glibc 2.34 config.h will include stdlib.h and that would disable +sys/wait.h to include needed definitions from bits/waitflags.h since +_STDLIB_H would have been defined already and sys/wait.h would think +these paths are included already, this is fixed with newer gnulib and +configure so this is to get this old version to compile with latest +glibc headers + +Upstream-Status: Inappropriate [OE-Specific] +Signed-off-by: Khem Raj <raj.khem@...> +--- + src/sort.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +--- a/src/sort.c ++++ b/src/sort.c +@@ -21,12 +21,12 @@ + + Ørn E. Hansen added NLS support in 1997. */ + ++#include <sys/types.h> ++#include <sys/wait.h> + #include <config.h> + + #include <assert.h> + #include <getopt.h> +-#include <sys/types.h> +-#include <sys/wait.h> + #include <signal.h> + #if HAVE_WCHAR_H + # include <wchar.h> diff --git a/recipes-core/coreutils/coreutils_6.9.bb b/recipes-core/coreutils/coreutils_6.9.bb index 42b4f3c..69e5489 100644 --- a/recipes-core/coreutils/coreutils_6.9.bb +++ b/recipes-core/coreutils/coreutils_6.9.bb @@ -27,6 +27,7 @@ SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.bz2 \ file://no-man.patch \ file://build-don-t-need-charset.alias-when-building-for-mus.patch \ file://no-su.patch \ + file://0001-sort.c-Reorder-includes-for-glibc-2.34-portability.patch \ " SRC_URI[md5sum] = "c9607d8495f16e98906e7ed2d9751a06" -- 2.32.0
|
|||||||||
|
|||||||||
Re: [meta-gplv2] [PATCH] coreutils_6.9.bb: Fix build with glibc 2.34
Alexandre Belloni
Hello Khem,
toggle quoted messageShow quoted text
Richard applied this patch and it unfortunately fails: https://autobuilder.yoctoproject.org/typhoon/#/builders/75/builds/3637/steps/11/logs/stdio
On 29/06/2021 22:50:25-0700, Khem Raj wrote:
Signed-off-by: Khem Raj <raj.khem@...> --
Alexandre Belloni, co-owner and COO, Bootlin Embedded Linux and Kernel engineering https://bootlin.com
|
|||||||||
|
|||||||||
SGTL5000 audio codec freescale in raspberry
nanotech.ei@...
na árvore de arquivos do kernel linux padrão tem os arquivos "sgtl5000.c" e "sgtl5000.h" que controlam o chip do codec. Como faço para incluir esses arquivos ao criar uma nova distribuição com yocto para framboesa?
|
|||||||||
|
|||||||||
Re: run.do_image_zipabox2_sdimg.27223: parted: not found
Zoran
On Thu, Jul 1, 2021 at 5:57 PM Yocto <yocto@...> wrote:
|
|||||||||
|
|||||||||
run.do_image_zipabox2_sdimg.27223: parted: not found
Yocto
having a
really funky issue
everything builds fine under pyro
updated it all to dunfell, and now im hitting this failure below, i also
pasted the log and the offending recipe on pastebin
logfile: https://pastebin.com/38TzNa5h
bb recipe: https://pastebin.com/jhfTBv58
Logfile of failure stored in:
/home/dingo/TEST3/Zipato/zipato-yocto-public/build/tmp/work/zipabox2-poky-linux-gnueabi/zipabox2-image-blank/1.0-r0/temp/log.do_image_zipabox2_sdimg.27223
Log data follows:
| DEBUG: Executing python function set_image_size
| DEBUG: 1032444.400000 = 794188 * 1.300000
| DEBUG: 1032444.400000 = max(1032444.400000, 8192)[1032444.400000] + 0
| DEBUG: 1032445.000000 = int(1032444.400000)
| DEBUG: 1032445 = aligned(1032445)
| DEBUG: returning 1032445
| DEBUG: Python function set_image_size finished
| DEBUG: Executing shell function do_image_zipabox2_sdimg
| 0+0 records in
| 0+0 records out
| 0 bytes copied, 8.9773e-05 s, 0.0 kB/s
|
/home/dingo/TEST3/Zipato/zipato-yocto-public/build/tmp/work/zipabox2-poky-linux-gnueabi/zipabox2-image-blank/1.0-r0/temp/run.do_image_zipabox2_sdimg.27223:
124:
/home/dingo/TEST3/Zipato/zipato-yocto-public/build/tmp/work/zipabox2-poky-linux-gnueabi/zipabox2-image-blank/1.0-r0/temp/run.do_image_zipabox2_sdimg.27223:
parted: not found
| WARNING: exit code 127 from a shell command.
| ERROR: Execution of
'/home/dingo/TEST3/Zipato/zipato-yocto-public/build/tmp/work/zipabox2-poky-linux-gnueabi/zipabox2-image-blank/1.0-r0/temp/run.do_image_zipabox2_sdimg.27223'
failed with exit code 127:
| 0+0 records in
| 0+0 records out
| 0 bytes copied, 8.9773e-05 s, 0.0 kB/s
|
/home/dingo/TEST3/Zipato/zipato-yocto-public/build/tmp/work/zipabox2-poky-linux-gnueabi/zipabox2-image-blank/1.0-r0/temp/run.do_image_zipabox2_sdimg.27223:
124:
/home/dingo/TEST3/Zipato/zipato-yocto-public/build/tmp/work/zipabox2-poky-linux-gnueabi/zipabox2-image-blank/1.0-r0/temp/run.do_image_zipabox2_sdimg.27223:
parted: not found
| WARNING: exit code 127 from a shell command.
| ERROR: Task
(/home/dingo/TEST3/Zipato/zipato-yocto-public/meta-zipato-public/images/zipabox2-image/zipabox2-image-blank_1.0.bb:do_image_zipabox2_sdimg)
failed with exit code '1'
NOTE: Tasks Summary: Attempted 4542 tasks of which 4540 didn't need to be
rerun and 2 failed.
Summary: 2 tasks failed:
/home/dingo/TEST3/Zipato/zipato-yocto-public/meta-zipato-public/images/zipabox2-image/zipabox2-image-blank_1.0.bb:do_image_zipabox2_mender
/home/dingo/TEST3/Zipato/zipato-yocto-public/meta-zipato-public/images/zipabox2-image/zipabox2-image-blank_1.0.bb:do_image_zipabox2_sdimg
--
Sent with Vivaldi Mail. Download Vivaldi for free at vivaldi.com
|
|||||||||
|
|||||||||
Re: Zuul - Project Gating System with Yocto Project
Joshua Watt
On 7/1/21 9:48 AM, Tomasz Dziendzielski
wrote:
I haven't, but it's on my radar to look at as it seems like it
could be pretty useful. If you look into it, please share your
findings!
|
|||||||||
|
|||||||||
Zuul - Project Gating System with Yocto Project
Tomasz Dziendzielski
Hello, is anyone here using Zuul along with Yocto Project? We are thinking about integrating Zuul to our project that already uses Yocto, but we are not too familiar with Zuul and we want it to conform to good open source practices, without losing any advantages of both projects and we want to avoid creating some hacky monster. Could you share some suggestions on how it can be combined together and what is the best approach/structure to do this? Please also share if you have some "what I wish I'd known" about Zuul integration to Yocto. Any hints are appreciated. Best regards, Tomasz Dziendzielski
|
|||||||||
|
|||||||||
Yocto Autobuilder: Latency Monitor and AB-INT - Meeting notes: July 1, 2021
YP AB Intermittent failures meeting
=================================== July 1, 2021, 9 AM ET https://windriver.zoom.us/j/3696693975 Attendees: Alex, Richard, Saul, Randy Summary: ======== The autobuilder RCU hang is fixed, build greener. ptest failures (some glibc-2.34) are the top problem now. Add Michael Halstead, see questions below in section 4. If anyone wants to help, we could use more eyes on the logs, particularly the summary logs and understanding iostat # when the dd test times out. Plans for the week: =================== Richard: glibc upgrade, etc. Alex: ? Sakib: pub/non-release link upgrade, script clean-up. Trevor: make job server test. Try it on YP AB!!! What type of build? Tony: nothing this week for YP. Saul: nothing this week for YP. Randy: vacation! Meeting Notes: ============== 1. The qemu RCU hang has been fixed to not deadlock anymore! It still hangs at times but this dramatically reduces the AB failures. 2. Lots of ptest failures with - tcl - valgrind especially with the upreved glibc-2.34. 3. YP AB INT # bugs reduced: down to ~ 47 Richard went through the list and closed ~ 10 bugs. - RCU, LTP bugs closed. - qemu ping bug remains https://bugzilla.yoctoproject.org/show_bug.cgi?id=14029 4. bitbake server timeout. "Timeout while waiting for a reply from the bitbake server (60s)" Randy mentioned that the bitbake server timeouts seen in the Wind River build cluster have gone away after upgrading to a newer version of docker. Old: Docker Version: Docker version 18.09.4, build d14af54266 New: Docker Version: Docker version 20.10.7, build f0df350 Clearly the YP ABs aren't running in docker but what about firmware and kernel tunings. Michael, Is the BIOS/firmware kept up to date on most nodes? It seems that we are running stock kernels which makes sense but given that we don't have concerns about privacy since system access is controlled and the nodes are being used to test open source software, we might consider optimizing for performance rather than security. Alex pointed at: https://make-linux-fast-again.com/ Which just lists a set of kernel boot options: noibrs noibpb nopti nospectre_v2 nospectre_v1 \ l1tf=off nospec_store_bypass_disable no_stf_barrier \ mds=off tsx=on tsx_async_abort=off mitigations=off Can we enable some or all of these on a node to see what the performance difference is? 5. io stalls Richard said that it would make sense to write an ftrace utility / script to monitor io latency and we could install it with sudo Ch^W mentioned ftrace on IRC. Sakib and Randy will work on that but not for a week or two. 6. Switch the pub/non-release links from full log to summary. The host data links on: https://autobuilder.yocto.io/pub/non-release/ should include links to the summary data. I think we have room to include both links like this: 0 1 2 3 (Full: 0 1 2 3 ) 7. Qemu machine protocol debugging commands Saul's patch is in. 8. System load: make, ninja jobs Trevor has been busy with other work but has been playing with kea and make -l: load average calculation https://github.com/mirror/make/blob/master/src/job.c#L1947 We're confirmed that this actually works on a build server and for all versions of make in the cluster. Randy may write to Paul Smith about the general problem we are having. 9. iostat The iostat output is in some of the AB logs: https://autobuilder.yocto.io/pub/non-release/ for example: https://autobuilder.yocto.io/pub/non-release/20210623-17/testresults/meta-oe/2021-06-23--21-51/host_stats_0_top.txt search for "start: iostat" it looks like the io sub-systems are 100% utilized but we need more time, data and the summary script to be able to easily make a general statement about AB INT issues and IO load and to be able to identify what is typically generating the IO load. ../Randy
|
|||||||||
|
|||||||||
Re: [meta-cgl][PATCH] layer.conf: add hardknott to LAYERSERIES_COMPAT
Merged. Thanks.
toggle quoted messageShow quoted text
On 6/30/2021 10:10 PM, Chen Qi wrote:
Signed-off-by: Chen Qi <Qi.Chen@...> --- meta-cgl-common/conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-cgl-common/conf/layer.conf b/meta-cgl-common/conf/layer.conf index 8100e23..56ddbb9 100644 --- a/meta-cgl-common/conf/layer.conf +++ b/meta-cgl-common/conf/layer.conf @@ -11,6 +11,6 @@ BBFILE_PRIORITY_cgl-common = "7" LAYERDEPENDS_cgl-common = "core openembedded-layer networking-layer perl-layer filesystems-layer security selinux" -LAYERSERIES_COMPAT_cgl-common = "warrior zeus dunfell gatesgarth" +LAYERSERIES_COMPAT_cgl-common = "warrior zeus dunfell gatesgarth hardknott" require conf/distro/include/cgl_common_security_flags.inc
|
|||||||||
|
|||||||||
[meta-cgl][PATCH] layer.conf: add hardknott to LAYERSERIES_COMPAT
Chen Qi
Signed-off-by: Chen Qi <Qi.Chen@...>
--- meta-cgl-common/conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-cgl-common/conf/layer.conf b/meta-cgl-common/conf/layer.conf index 8100e23..56ddbb9 100644 --- a/meta-cgl-common/conf/layer.conf +++ b/meta-cgl-common/conf/layer.conf @@ -11,6 +11,6 @@ BBFILE_PRIORITY_cgl-common = "7" LAYERDEPENDS_cgl-common = "core openembedded-layer networking-layer perl-layer filesystems-layer security selinux" -LAYERSERIES_COMPAT_cgl-common = "warrior zeus dunfell gatesgarth" +LAYERSERIES_COMPAT_cgl-common = "warrior zeus dunfell gatesgarth hardknott" require conf/distro/include/cgl_common_security_flags.inc -- 2.17.1
|
|||||||||
|
|||||||||
[ANNOUNCEMENT] Yocto Project 3.1.9 (dunfell-23.0.9) is Released
Vineela
Hello,
We are pleased to announce the Yocto Project 3.1.9 (dunfell-23.0.9) Release is now available for download.
http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.9/poky-dunfell-23.0.9.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.9/poky-dunfell-23.0.9.tar.bz2
A gpg signed version of these release notes is available at:
http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.9/RELEASENOTES
Full Test Report:
http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.9/testreport.txt
Thank you for everyone's contributions to this release.
Vineela Tummalapalli Yocto Project Build and Release
- -------------------------- yocto-3.1.9 Release Notes - --------------------------
- -------------------------- Repositories/Downloads - --------------------------
Repository Name: poky Repository Location: https://git.yoctoproject.org/git/poky Branch: dunfell Tag: yocto-3.1.9 Git Revision: 43060f59ba60a0257864f1f7b25b51fac3f2d2cf Release Artefact: poky-dunfell-23.0.9 sha: d2a7acbaca384408594b72f25883f10b454215af97e31914e8a11035a0334424 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.9/poky-dunfell-23.0.9.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.9/poky-dunfell-23.0.9.tar.bz2
Repository Name: openembedded-core Repository Location: https://git.openembedded.org/openembedded-core Branch: dunfell Tag: 2020-04.9-dunfell Git Revision: ac8181d9b9ad8360f7dba03aba8b00f008c6ebb4 Release Artefact: oecore-dunfell-23.0.9 sha: d4fc5e5333bc6b2dee464d1845554920e3d504ab16a47e6d335d5c8a185e0dcd Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.9/oecore-dunfell-23.0.9.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.9/oecore-dunfell-23.0.9.tar.bz2
Repository Name: meta-mingw Repository Location: https://git.yoctoproject.org/git/meta-mingw Branch: dunfell Tag: yocto-3.1.9 Git Revision: 524de686205b5d6736661d4532f5f98fee8589b7 Release Artefact: meta-mingw-dunfell-23.0.9 sha: e5f8e6777003d329fe7ff9e69c9e9f46edf5a272198a194cbc79b866c7b9dab6 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.9/meta-mingw-dunfell-23.0.9.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.9/meta-mingw-dunfell-23.0.9.tar.bz2
Repository Name: meta-gplv2 Repository Location: https://git.yoctoproject.org/git/meta-gplv2 Branch: dunfell Tag: yocto-3.1.9 Git Revision: 60b251c25ba87e946a0ca4cdc8d17b1cb09292ac Release Artefact: meta-gplv2-dunfell-23.0.9 sha: 39bffee0bc5a93e224073036e6a544d83c40f5bccc4c8faeb3995cef323969e1 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.9/meta-gplv2-dunfell-23.0.9.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.9/meta-gplv2-dunfell-23.0.9.tar.bz2
Repository Name: bitbake Repository Location: https://git.openembedded.org/bitbake Branch: 1.46 Tag: 2020-04.9-dunfell Git Revision: 0e0af15b84e07e6763300dcd092b980086b9b9c4 Release Artefact: bitbake-dunfell-23.0.9 sha: 9a3da4317d9e43ef9b0e66ed0d8070d373fc41fa34648e2a6b04c591d12b97d0 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.9/bitbake-dunfell-23.0.9.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.9/bitbake-dunfell-23.0.9.tar.bz2
Repository Name: yocto-docs Repository Location: https://git.yoctoproject.org/git/yocto-docs Branch: dunfell Tag: yocto-3.1.9 Git Revision:0fadb292429b4147408798ed4c806ba6d9dd81b8
- ------------- Contributors - ------------- akash hadke Andrea Adami Bruce Ashfield Changqing Li Daniel McGregor Guillaume Champagne Jain Sangeeta Kai Kang Klaus Heinrich Kiwi Lee Chee Yang Michael Halstead Ming Liu Ovidiu Panait Richard Purdie Ross Burton Sana Kazi Stephen Jolley Steve Sakoman Tony Tascioglu Vineela Tummalapalli Volker Vogelhuber Yi Zhao
- --------------- Known Issues - --------------- N/A
- --------------- Security Fixes - --------------- Revert "python3: fix CVE-2021-23336" python3: fix CVE-2021-23336 gstreamer-plugins-good: fix CVE-2021-3497 CVE-2021-3498 gnutls: fix CVE-2021-20231 CVE-2021-20232 libxml: fix CVE-2021-3517 CVE-2021-3537 grub: Exclude CVE-2019-14865 from cve-check cve-extra-exclusions.inc: add exclusion list for intractable CVE's expat: set CVE_PRODUCT openssh: Add fixes for CVEs reported for openssh tiff: Add fix for CVE-2020-35521 and CVE-2020-35522 cups: whitelist CVE-2021-25317
- --------------- Fixes - --------------- bitbake: cooker: Avoid parser deadlocks bitbake: cooker: Ensure parser is cleaned up bitbake: cooker: Explictly shut down the sync thread bitbake: cooker: Ensure parse_quit thread is closed down kernel.bbclass: fix do_sizecheck() comparison valgrind: fix a typo ruby: 2.7.1 -> 2.7.3 bind: 9.11.22 -> 9.11.32 poky.conf: Bump version for 3.1.9 release poky.conf: Add openSUSE Leap 15.2 as a supported distro documentation: prepare for 3.1.9 release ref-system-requirements.rst: Add openSUSE Leap 15.2 to list of supported distros variables: Add documentation for KERNEL_DTC_FLAGS kernel-devicetree: Introduce KERNEL_DTC_FLAGS to pass dtc flags kernel-fitimage: Don't use unit addresses on FIT linux-yocto/5.4: update to v5.4.123 linux-yocto/5.4: update to v5.4.120 Revert "busybox: make busybox's syslog.cfg depend on VIRTUAL-RUNTIME_base-utils-syslog" linux-firmware: upgrade 20210315 -> 20210511 pkgconfig: update SRC_URI oeqa/runtime/rpm: Drop log message counting test component image-live.bbclass: order do_bootimg after do_rootfs package_rpm: pass XZ_THREADS to rpm unfs3: correct configure option initramfs-framework:rootfs: fix wrong indentions kernel-fitimage.bbclass: fix a wrong conditional check lib/oe/gpg_sign.py: Fix gpg verification sstate: Ignore sstate signing key glibc: Add 8GB VM usage cap for usermode test suite libxml2: Add bash dependency for ptests. libxml2: Reformat runtest.patch linux-yocto/5.4: update to v5.4.119 linux-yocto/5.4: update to v5.4.118 linux-yocto/5.4: update to v5.4.117 kernel-yocto: provide debug / summary information for metadata busybox: make busybox's syslog.cfg depend on VIRTUAL-RUNTIME_base-utils-syslog cve-extra-exclusions.inc: Clean up merged CPE updates cve-extra-exclusions: Fix typos
|
|||||||||
|
|||||||||
Re: Would COMPATIBLE_IMAGE make sense?
Jonas Vautherin
Thanks a lot for the answers, that's really helpful! Seems like I should have a closer look at the distros. I'll need some time to test it, I'll update here when that is done!
On Tue, Jun 29, 2021 at 1:52 PM Bruce Ashfield <bruce.ashfield@...> wrote: On Tue, Jun 29, 2021 at 2:41 AM Josef Holzmayr
|
|||||||||
|
|||||||||
Re: [meta-rockchip][PATCH 3/3] wic/wks cleanup
Trevor Woerner
On Mon 2021-06-28 @ 11:15:41 AM, Trevor Woerner wrote:
By exporting a couple more variables the wks file for every rockchip deviceApplied to meta-rockchip master.
|
|||||||||
|
|||||||||
Re: [meta-rockchip][PATCH 2/3] IMAGE_FSTYPES: remove ext4
Trevor Woerner
On Mon 2021-06-28 @ 11:15:40 AM, Trevor Woerner wrote:
The ext4 IMAGE_FSTYPES does not need to be mentioned explicitly. It will beApplied to meta-rockchip master.
|
|||||||||
|
|||||||||
Re: [meta-rockchip][PATCH 1/3] conf/machine/include/nanopi-m4.inc: add full include path
Trevor Woerner
On Mon 2021-06-28 @ 11:15:39 AM, Trevor Woerner wrote:
Specify the full include path to the rk3399.inc file.Applied to meta-rockchip master.
|
|||||||||
|
|||||||||
Re: Python2 in Gatesgarth
Marek Belisko
Hi Aashik,
On Wed, Jun 30, 2021 at 4:25 PM Aashik Aswin <thisisaash9698@...> wrote: You can use meta-python2 [0] layer [0] - https://git.openembedded.org/meta-python2 marek
|
|||||||||
|
|||||||||
Python2 in Gatesgarth
Aashik Aswin
Hello Developers, We are migrating our platforms from Zeus to Gatesgarth, We could see that the native Python2 bb file and core modules have been removed. As much of our platform code is in Python2, I was wondering if there is some way we can re-enable python2 support in our yocto environment to compile/run python2 scripts ? Thanks in Advance, Thanks & Regards Aashik
|
|||||||||
|