Re: [OE-core] [PATCH] go.bbclass: Allow adding parameters to go ldflags

2021-10-26 Thread Khem Raj
looks fine On 10/26/21 11:56, Ahmed Hossam wrote: Currently, there is no clean way to pass extra parameters to the go tool link, which is passed by the go build ldflags flag, the append needs to happen inside the quotes of the ldflags parameter See [YOCTO #14554]. Add a variable to allow

Re: [OE-core] [RFC PATCH 11/14] populate_sdk_base/images: Drop use of 'meta' class and hence do_build dependencies

2021-10-26 Thread Chen Qi
Hi Richard, I like this change. However, it causes problem of 'rm_work'. Now some native recipes don't get cleaned up with 'rm_work' enabled. e.g. INHERIT += "rm_work" bitbake core-image-minimal A few native recipes don't get clean up such as alsa-lib-native, createrepo-c-native, dnf-native,

Re: [OE-core] [PATCH 02/65] rustfmt: remove

2021-10-26 Thread Randy MacLeod
On 2021-10-19 9:10 p.m., Randy MacLeod wrote: On 2021-10-19 3:58 p.m., Richard Purdie wrote: On Tue, 2021-10-19 at 20:37 +0200, Alexander Kanavin wrote: On Tue, 19 Oct 2021 at 20:31, Khem Raj wrote: It would be wise to hear people who use rust and develop applications using rust, meta-rust

[OE-core] [PATCH 0/3] SPDX: Add annotations to relationship

2021-10-26 Thread Saul Wold
Add annotations to relationships and refactor code to add create_annotation() function for code reuse. Ensure that "cross" recipes are factored into isNative also. v2: removed leftover and unused annotation per Joshua Sau! Saul Wold (3): spdx.py: Add annotation to relationship create-spdx:

[OE-core] [PATCH v2 1/3] spdx.py: Add annotation to relationship

2021-10-26 Thread Saul Wold
Having annotations on relationship can provide additional information about the relationship such as how it was derived. Signed-off-by: Saul Wold --- lib/oe/spdx.py | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/oe/spdx.py b/lib/oe/spdx.py index 4416194..9e7ced5

[OE-core] [PATCH v2 2/3] create-spdx: add create_annotation function

2021-10-26 Thread Saul Wold
This allows code reuse and future usage with relationship annotations Signed-off-by: Saul Wold --- classes/create-spdx.bbclass | 18 -- 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/classes/create-spdx.bbclass b/classes/create-spdx.bbclass index dd341db..72a9b55

[OE-core] [PATCH v2 3/3] create-spdx: cross recipes are native also

2021-10-26 Thread Saul Wold
Recipes that inherit cross should also be categorized as isNative Signed-off-by: Saul Wold --- classes/create-spdx.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/create-spdx.bbclass b/classes/create-spdx.bbclass index 72a9b55..e8f476f 100644 ---

Re: [OE-core] [hardknott][PATCH] glibc: upgrade glibc-2.33 to latest version

2021-10-26 Thread Anuj Mittal
On Mon, 2021-10-25 at 12:59 +0530, pgowda cve wrote: > Hi, > > Thanks for the comments. > > Gentle ping on this patch. Sorry for the delay. It's in my queue but there are some issues, not related to this patch, that I am trying to debug. It should get merged soon. Thanks, Anuj > > Thanks, >

Re: [OE-core] [hardknott][PATCH] curl: remove metalink

2021-10-26 Thread Anuj Mittal
It looks like we build without metalink anyway ... so is this CVE applicable to us? Thanks, Anuj On Tue, 2021-10-26 at 14:36 +0800, Yu, Mingli wrote: > From: Mingli Yu > > Backport patch to remove metalink [1] to fix below CVEs: >  - CVE-2021-22922 [2] >  - CVE-2021-22923 [3] > > [1] >

Re: [OE-core] [PATCH 0/3] SPDX: Add annotations to relationship

2021-10-26 Thread Joshua Watt
On Tue, Oct 26, 2021 at 6:36 PM Saul Wold wrote: > > Add annotations to relationships and refactor code to add > create_annotation() function for code reuse. > > Ensure that "cross" recipes are factored into isNative also. Other than the comment in the later patch, LGTM > > Sau! > > Saul Wold

Re: [OE-core] [PATCH 3/3] create-spdx: cross recipes are native also

2021-10-26 Thread Joshua Watt
On Tue, Oct 26, 2021 at 6:36 PM Saul Wold wrote: > > Recipes that inherit cross should also be categorized as isNative > > Signed-off-by: Saul Wold > --- > classes/create-spdx.bbclass | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/classes/create-spdx.bbclass

Re: [OE-core] [PATCH] rust: Upgrade to 1.56.0

2021-10-26 Thread Martin Jansa
On Wed, Oct 27, 2021 at 1:44 AM Randy MacLeod wrote: > On 2021-10-26 8:12 a.m., Martin Jansa wrote: > > Looks like it was caused by rust-cross issues reported in: > > https://lists.openembedded.org/g/openembedded-core/message/156516 > >

Re: [OE-core] [PATCH] rust: Upgrade to 1.56.0

2021-10-26 Thread Randy MacLeod
On 2021-10-26 8:12 a.m., Martin Jansa wrote: Looks like it was caused by rust-cross issues reported in: https://lists.openembedded.org/g/openembedded-core/message/156516 Re-building libstd-rs in empty TMPDIR, just for qemuarm

[OE-core] [PATCH 0/3] SPDX: Add annotations to relationship

2021-10-26 Thread Saul Wold
Add annotations to relationships and refactor code to add create_annotation() function for code reuse. Ensure that "cross" recipes are factored into isNative also. Sau! Saul Wold (3): spdx.py: Add annotation to relationship create-spdx: add create_annotation function create-spdx: cross

[OE-core] [PATCH 2/3] create-spdx: add create_annotation function

2021-10-26 Thread Saul Wold
This allows code reuse and future usage with relationship annotations Signed-off-by: Saul Wold --- classes/create-spdx.bbclass | 18 -- 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/classes/create-spdx.bbclass b/classes/create-spdx.bbclass index dd341db..72a9b55

[OE-core] [PATCH 3/3] create-spdx: cross recipes are native also

2021-10-26 Thread Saul Wold
Recipes that inherit cross should also be categorized as isNative Signed-off-by: Saul Wold --- classes/create-spdx.bbclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/classes/create-spdx.bbclass b/classes/create-spdx.bbclass index 72a9b55..883bc23 100644 ---

[OE-core] [PATCH 1/3] spdx.py: Add annotation to relationship

2021-10-26 Thread Saul Wold
Having annotations on relationship can provide additional information about the relationship such as how it was derived. Signed-off-by: Saul Wold --- lib/oe/spdx.py | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/oe/spdx.py b/lib/oe/spdx.py index 4416194..9e7ced5

Re: [OE-core] [PATCH 24/25] webkitgtk: update 2.32.3 -> 2.34.0

2021-10-26 Thread Alexander Kanavin
The only difference to my setup is 'systemd'. I'm testing dropping the patch on the AB now. Alex On Tue, 26 Oct 2021 at 23:51, Martin Jansa wrote: > PACKAGECONFIG="systemd wayland > webgl gles2 angle opengl-or-es > enchantlibsecret " >

Re: [OE-core] [PATCH 24/25] webkitgtk: update 2.32.3 -> 2.34.0

2021-10-26 Thread Martin Jansa
PACKAGECONFIG="systemd waylandwebgl gles2 angle opengl-or-esenchant libsecret " On Tue, Oct 26, 2021 at 11:35 PM Alexander Kanavin wrote: > On Tue, 26 Oct 2021 at 22:40, Martin Jansa

Re: [OE-core] [PATCH 24/25] webkitgtk: update 2.32.3 -> 2.34.0

2021-10-26 Thread Alexander Kanavin
On Tue, 26 Oct 2021 at 22:40, Martin Jansa wrote: > > No, this one was with opengl enabled, which was failing in do_configure do > to missing gperf-native, but now when that was fixed it fails in do_compile. > > Build without opengl still works with works with my patch. > I can no longer see

Re: [OE-core] [PATCH 24/25] webkitgtk: update 2.32.3 -> 2.34.0

2021-10-26 Thread Martin Jansa
On Tue, Oct 26, 2021 at 10:07 PM Alexander Kanavin wrote: > On Tue, 26 Oct 2021 at 21:38, Martin Jansa wrote: > >> 0200 >> >>> +Subject: [PATCH] ANGLE: do not enable SSE on x86 >>> + >>> +The code does not actually build there. >>> + >>> +Upstream-Status: Pending >>> +Signed-off-by: Alexander

Re: [OE-core] [PATCH 24/25] webkitgtk: update 2.32.3 -> 2.34.0

2021-10-26 Thread Alexander Kanavin
I'll run a build now to reproduce again. Alex On Tue, 26 Oct 2021 at 22:07, Alexander Kanavin via lists.openembedded.org wrote: > On Tue, 26 Oct 2021 at 21:38, Martin Jansa wrote: > >> 0200 >> >>> +Subject: [PATCH] ANGLE: do not enable SSE on x86 >>> + >>> +The code does not actually build

Re: [OE-core] [PATCH 24/25] webkitgtk: update 2.32.3 -> 2.34.0

2021-10-26 Thread Alexander Kanavin
On Tue, 26 Oct 2021 at 21:38, Martin Jansa wrote: > 0200 > >> +Subject: [PATCH] ANGLE: do not enable SSE on x86 >> + >> +The code does not actually build there. >> + >> +Upstream-Status: Pending >> +Signed-off-by: Alexander Kanavin >> +--- >> + Source/ThirdParty/ANGLE/src/common/platform.h | 2

Re: [OE-core] [PATCH 24/25] webkitgtk: update 2.32.3 -> 2.34.0

2021-10-26 Thread Martin Jansa
On Mon, Oct 11, 2021 at 11:42 AM Alexander Kanavin wrote: > Signed-off-by: Alexander Kanavin > --- > .../0001-ANGLE-do-not-enable-SSE-on-x86.patch | 26 > ...1-Enable-THREADS_PREFER_PTHREAD_FLAG.patch | 10 +++--- > .../0001-MiniBrowser-Fix-reproduciblity.patch | 31

[OE-core] [PATCH] go.bbclass: Allow adding parameters to go ldflags

2021-10-26 Thread Ahmed Hossam
Currently, there is no clean way to pass extra parameters to the go tool link, which is passed by the go build ldflags flag, the append needs to happen inside the quotes of the ldflags parameter See [YOCTO #14554]. Add a variable to allow adding extra parameters to -ldflags in the GO_LDFLAGS

[OE-core] [PATCH 6/7] linux-yocto/5.14: update to v5.14.14

2021-10-26 Thread Bruce Ashfield
From: Bruce Ashfield Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: fe024e004fa3 Linux 5.14.14 9513ce07f05b ionic: don't remove netdev->dev_addr when syncing uc list 6b55eadb0b1d net: dsa: felix: break at first CPU port during init

[OE-core] [PATCH 7/7] linux-yocto/5.10: update to v5.10.75

2021-10-26 Thread Bruce Ashfield
From: Bruce Ashfield Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 3a9842b42e42 Linux 5.10.75 3e2873652163 net: dsa: mv88e6xxx: don't use PHY_DETECT on internal PHY's 3593fa147c86 ionic: don't remove netdev->dev_addr when syncing

[OE-core] [PATCH 4/7] linux-yocto/5.10: update to v5.10.74

2021-10-26 Thread Bruce Ashfield
From: Bruce Ashfield Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 77434fe5a077 Linux 5.10.74 42b49f012b6a hwmon: (pmbus/ibm-cffps) max_power_out swap changes bb893f075431 sched: Always inline is_percpu_thread() bdae2a083436

[OE-core] [PATCH 5/7] linux-yocto/5.14: common-pc: enable CONFIG_ATA_PIIX as built-in

2021-10-26 Thread Bruce Ashfield
From: Bruce Ashfield Jacob Kroon reported that generic/custom x86 kernels would no longer boot out of the box since the IDE options were removed and the PATA migration happened. To re-enable that use case, we grab the following kernel configuration change: common-pc*/qemux86*: set

[OE-core] [PATCH 2/7] linux-yocto/5.14: update to v5.14.12

2021-10-26 Thread Bruce Ashfield
From: Bruce Ashfield Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: 325225e2f9fa Linux 5.14.12 58f0e59efa34 dsa: tag_dsa: Fix mask for trunked packets 5dc24f3e0841 x86/hpet: Use another crystalball to evaluate HPET usability

[OE-core] [PATCH 3/7] linux-yocto/5.14: update to v5.14.13

2021-10-26 Thread Bruce Ashfield
From: Bruce Ashfield Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: b9ed05407395 Linux 5.14.13 d7c187ab28f6 hwmon: (pmbus/ibm-cffps) max_power_out swap changes e798dcd960a3 io_uring: kill fasync 15571bb5bb64 sched: Always

[OE-core] [PATCH 1/7] linux-yocto/5.10: update to v5.10.73

2021-10-26 Thread Bruce Ashfield
From: Bruce Ashfield Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 0268aa579b1f Linux 5.10.73 825c00c2ee14 x86/hpet: Use another crystalball to evaluate HPET usability f2447f6587b8 x86/entry: Clear X86_FEATURE_SMAP when

[OE-core] [PATCH 0/7] linux-yocto: -stable updates

2021-10-26 Thread Bruce Ashfield
From: Bruce Ashfield Richard, These are the -stable merges that I've been testing/queuing while the release was being completed. Each of these represents a point that I tested, so I don't expect a surprise (that being said, there are quite a few here, so you never know). Along with -stable, we

[OE-core] [honister][PATCH 34/37] ffmpeg: fix CVE-2021-38114

2021-10-26 Thread Anuj Mittal
From: Kiran Surendran backport from upstream Signed-off-by: Kiran Surendran Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit fe9cdf74f7ef3637ed7c600182f8a0ba40510d2a) Signed-off-by: Anuj Mittal --- .../ffmpeg/ffmpeg/fix-CVE-2021-38114.patch| 67

[OE-core] [honister][PATCH 37/37] bootchart2: Don't compile python modules

2021-10-26 Thread Anuj Mittal
From: Richard Purdie "make install" may attempt to compile the python modules but it uses the host python and host paths which means the binaries are not reproducbile. Make things consistent. If anyone needs compiling, it will beed to be fixed to be cross compile compatible. Signed-off-by:

[OE-core] [honister][PATCH 36/37] sstate: fix touching files inside pseudo

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma running the 'id' command inside the sstate_create_package function shows that this funcion run inside the pseudo: uid=0(root) gid=0(root) groups=0(root) The check for touch files [ ! -w ${SSTATE_PKG} ] will always return true and the touch can fail when the real user don't

[OE-core] [honister][PATCH 35/37] mesa: upgrade 21.2.1 -> 21.2.4

2021-10-26 Thread Anuj Mittal
From: Pablo Saavedra Rodi?o Contains 'Make YUV formats we're going to emulate external-only' [1] was applied in 21.2.4. This fixes red label issues on video for VC4, Freedreno and others. Deletes meta/recipes-graphics/mesa/files/without-neon.patch [2] already in Mesa since 21.2. Release notes:

[OE-core] [honister][PATCH 33/37] systemd: add missing include for musl

2021-10-26 Thread Anuj Mittal
From: Yureka Fixes "error: ‘FTW_ACTIONRETVAL’ undeclared (first use in this function)" in src/shared/mount-setup.c. Signed-off-by: Yureka Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit 7707d08bb10db5eb782a2476be58ebe4b8bba154) Signed-off-by: Anuj

[OE-core] [honister][PATCH 32/37] wireless-regdb: upgrade 2021.07.14 -> 2021.08.28

2021-10-26 Thread Anuj Mittal
From: Alexander Kanavin Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit 00c590f50d6894089ff7ce8ad6e263431d9cc550) Signed-off-by: Anuj Mittal --- ...ireless-regdb_2021.07.14.bb => wireless-regdb_2021.08.28.bb} | 2 +-

[OE-core] [honister][PATCH 31/37] linux-firmware: upgrade 20210818 -> 20210919

2021-10-26 Thread Anuj Mittal
From: Alexander Kanavin License-Update: additional files Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit 8dac57dfed45a0d8a049473f2efc1711b56273a4) Signed-off-by: Anuj Mittal --- ...{linux-firmware_20210818.bb =>

[OE-core] [honister][PATCH 29/37] ca-certificates: update 20210119 -> 20211016

2021-10-26 Thread Anuj Mittal
From: Alexander Kanavin Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit c479b8a810d966d7267af1b4dac38a46f55fc547) Signed-off-by: Anuj Mittal --- ...ertdata2pem.py-print-a-warning-for-e.patch | 80 +++

[OE-core] [honister][PATCH 30/37] ovmf: update 202105 -> 202108

2021-10-26 Thread Anuj Mittal
From: Alexander Kanavin Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit 9e5d15aba7515952614f69e06d3d9b9316a77204) Signed-off-by: Anuj Mittal --- meta/recipes-core/ovmf/ovmf_git.bb | 4 ++-- 1 file changed, 2

[OE-core] [honister][PATCH 28/37] testimage: fix unclosed testdata file

2021-10-26 Thread Anuj Mittal
From: Ross Burton Signed-off-by: Ross Burton Signed-off-by: Richard Purdie (cherry picked from commit 0c192a97e3e1c015a48667d6903cc07a8b2620e4) Signed-off-by: Anuj Mittal --- meta/classes/testimage.bbclass | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git

[OE-core] [honister][PATCH 27/37] mesa: Enable svga for x86 only

2021-10-26 Thread Anuj Mittal
From: Khem Raj Enable svga only on x86/x86_64 since some arches e.g. riscv64 do not support it Signed-off-by: Khem Raj Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit d7d380a45ab0efedcba33baaae37589da4d25a2b) Signed-off-by: Anuj Mittal ---

[OE-core] [honister][PATCH 22/37] linux-yocto: add libmpc-native to DEPENDS

2021-10-26 Thread Anuj Mittal
From: Ross Burton 5.14 changed how the GCC plugins are built, which means they now depend on both GMP and MPC to be built. We already depend on gmp-native, so add libmpc-native aswell. Signed-off-by: Ross Burton Signed-off-by: Alexandre Belloni (cherry picked from commit

[OE-core] [honister][PATCH 26/37] oeqa: Update cleanup code to wait for hashserv exit

2021-10-26 Thread Anuj Mittal
From: Richard Purdie We sometimes see exceptions from code seeing the hashserv DB files being removed at directory cleanup time. Add a check to ensure the hashserv has written the data base journal (and hence likely exited) before cleaning up. This will hopefully avoid errors like: Traceback

[OE-core] [honister][PATCH 25/37] curl: fix CVE-2021-22945 through -22947

2021-10-26 Thread Anuj Mittal
From: Ross Burton Signed-off-by: Ross Burton Signed-off-by: Richard Purdie (cherry picked from commit cff6888f3b2b4bd0a42329b7f7c59b33c9d51265) Signed-off-by: Anuj Mittal --- .../curl/curl/cve-2021-22945.patch| 34 ++ .../curl/curl/cve-2021-22946.patch| 332

[OE-core] [honister][PATCH 24/37] patch.bbclass: when the patch fails show more info on the fatal error

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma There are situations when the user have the 'patchdir' defined as a parameter on SRC_URI. However he doesn't know that with this the patch is applied relatively to the receipe source dir 'S'. - When user have 'patchdir' defined check if this directory exist. - If the patch

[OE-core] [honister][PATCH 23/37] linux-yocto-dev: Ensure DEPENDS matches recent 5.14 kernel changes

2021-10-26 Thread Anuj Mittal
From: Richard Purdie DEPENDS here should match what 5.14 is using. Signed-off-by: Richard Purdie (cherry picked from commit 899fd41723f41fe0a0cc24373c326b88cb385fe9) Signed-off-by: Anuj Mittal --- meta/recipes-kernel/linux/linux-yocto-dev.bb | 1 + 1 file changed, 1 insertion(+) diff --git

[OE-core] [honister][PATCH 21/37] buildhistory: Fix package output files for SDKs

2021-10-26 Thread Anuj Mittal
From: Andres Beltran Currently, installed packages are listed for images in image-info.txt, but not for SDKs in sdk-info.txt. Add TOOLCHAIN_HOST_TASK and TOOLCHAIN_TARGET_TASK to the output variables in sdk-info.txt. Moreover, package output files for the SDK host are empty because PKGDATA_DIR

[OE-core] [honister][PATCH 20/37] lttng-tools: replace ad hoc ptest fixup with upstream fixes

2021-10-26 Thread Anuj Mittal
From: Alexander Kanavin Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie (cherry picked from commit 87fd3080c86f6987e4403a2cb8263564f6e1ac4f) Signed-off-by: Anuj Mittal --- ...race-condition-in-test_event_tracker.patch | 221 ++

[OE-core] [honister][PATCH 19/37] libnewt: Use python3targetconfig to fix reproducibility issue

2021-10-26 Thread Anuj Mittal
From: Richard Purdie We're seeing pthread being linked sometimes and not others leading to non-reproducible target binaries. The reason is mixing the native python config with the target one. We should use the target one. Signed-off-by: Richard Purdie (cherry picked from commit

[OE-core] [honister][PATCH 18/37] libxml2: Use python3targetconfig to fix reproducibility issue

2021-10-26 Thread Anuj Mittal
From: Richard Purdie We're seeing pthread being linked sometimes and not others leading to non-reproducible target binaries. The reason is mixing the native python config with the target one. We should use the target one. Signed-off-by: Richard Purdie (cherry picked from commit

[OE-core] [honister][PATCH 17/37] python3: update to 3.9.7

2021-10-26 Thread Anuj Mittal
From: Oleksandr Kravchuk Signed-off-by: Oleksandr Kravchuk Signed-off-by: Alexandre Belloni (cherry picked from commit 9612bb0639c13571e661f208aa7b28789953d9ec) Signed-off-by: Anuj Mittal --- .../python/{python3_3.9.6.bb => python3_3.9.7.bb} | 2 +- 1 file changed, 1

[OE-core] [honister][PATCH 12/37] gst-devtools: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit fe1345f72e41fe0fd0a8c69ac8e7cb7551666fcb) Signed-off-by: Anuj Mittal --- .../{gst-devtools_1.18.4.bb => gst-devtools_1.18.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [honister][PATCH 16/37] go: upgrade 1.16.7 -> 1.16.8

2021-10-26 Thread Anuj Mittal
From: Sakib Sajal Signed-off-by: Sakib Sajal Signed-off-by: Alexandre Belloni (cherry picked from commit 97a2f406635f51bad1ab070f018a6466209f257b) Signed-off-by: Anuj Mittal --- meta/recipes-devtools/go/{go-1.16.7.inc => go-1.16.8.inc} | 4 ++-- ...{go-binary-native_1.16.7.bb =>

[OE-core] [honister][PATCH 15/37] busybox: 1.34.0 -> 1.34.1

2021-10-26 Thread Anuj Mittal
From: Andrej Valek - update to next stable version 1.34.1 Signed-off-by: Andrej Valek Signed-off-by: Alexandre Belloni (cherry picked from commit 84c9bb0796aa4382cc08075ec2908aea81892f64) Signed-off-by: Anuj Mittal --- .../{busybox-inittab_1.34.0.bb => busybox-inittab_1.34.1.bb}| 0

[OE-core] [honister][PATCH 14/37] gstreamer1.0: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit d325f0d31bb1cbe889c7303ac2999c4dae391b34) Signed-off-by: Anuj Mittal --- .../0002-Remove-unused-valgrind-detection.patch| 14 +++--- ...treamer1.0_1.18.4.bb =>

[OE-core] [honister][PATCH 11/37] gstreamer1.0-python: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit 3c68529eb99c74de5a30520261f62a5544be9b39) Signed-off-by: Anuj Mittal --- ...reamer1.0-python_1.18.4.bb => gstreamer1.0-python_1.18.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [honister][PATCH 13/37] gst-examples: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit b1bddc80dc172563b7cd469a8de6b9db2e6ad985) Signed-off-by: Anuj Mittal --- .../{gst-examples_1.18.4.bb => gst-examples_1.18.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [honister][PATCH 10/37] gstreamer1.0-omx: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit 65ed3c4e6c0fbade647ec31a6a77f06ed4e97e7a) Signed-off-by: Anuj Mittal --- .../{gstreamer1.0-omx_1.18.4.bb => gstreamer1.0-omx_1.18.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [honister][PATCH 09/37] gstreamer1.0-vaapi: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit a46b9209b5f2f45b4206a7819e00c48795885093) Signed-off-by: Anuj Mittal --- ...streamer1.0-vaapi_1.18.4.bb => gstreamer1.0-vaapi_1.18.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [honister][PATCH 08/37] gstreamer1.0-libav: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit 6a52088c1938c197d8e89e10d8e6622fa4b41465) Signed-off-by: Anuj Mittal --- ...streamer1.0-libav_1.18.4.bb => gstreamer1.0-libav_1.18.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [honister][PATCH 04/37] gstreamer1.0-plugins-good: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Drop backport patches: * 0002-rtpjitterbuffer-Fix-parsing-of-the-mediaclk-direct-f.patch * 0003-Remove-volatile-from-static-vars-to-fix-build-with-g.patch

[OE-core] [honister][PATCH 07/37] gstreamer1.0-rtsp-server: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit 809db373816ed896048f551275589bac0f04ff92) Signed-off-by: Anuj Mittal --- ...rtsp-server_1.18.4.bb => gstreamer1.0-rtsp-server_1.18.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [honister][PATCH 06/37] gstreamer1.0-plugins-ugly: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit 09373e8c33cd0c585e146b55d9f7680832f2ad09) Signed-off-by: Anuj Mittal --- ...ugins-ugly_1.18.4.bb => gstreamer1.0-plugins-ugly_1.18.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [honister][PATCH 05/37] gstreamer1.0-plugins-bad: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit 4e7789ecfdb1bd7afa6ff5be40f1d0e2a1a09e4c) Signed-off-by: Anuj Mittal --- ...plugins-bad_1.18.4.bb => gstreamer1.0-plugins-bad_1.18.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [honister][PATCH 03/37] gstreamer1.0-plugins-base: 1.18.4 -> 1.18.5

2021-10-26 Thread Anuj Mittal
From: Jose Quaresma Drop backport patches: * 4ef5c91697a141fea7317aff7f0f28e5a861db99.patch Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni (cherry picked from commit de0ee4323a19a27b6bcef7cc791d0373c311ef22) Signed-off-by: Anuj Mittal ---

[OE-core] [honister][PATCH 02/37] oeqa/selftest/sstatetests: fix typo ware -> were

2021-10-26 Thread Anuj Mittal
From: Alexandre Belloni Signed-off-by: Alexandre Belloni (cherry picked from commit c94a9ece226b1d2012f5ee966b81bf607d954937) Signed-off-by: Anuj Mittal --- meta/lib/oeqa/selftest/cases/sstatetests.py | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git

[OE-core] [honister][PATCH 00/37] Review request

2021-10-26 Thread Anuj Mittal
Please review these changes for honister. No issues seen while testing on autobuilder. https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/2810 Thanks, Anuj The following changes since commit bb1dea6806f084364b6017db2567f438e805aef0: build-appliance-image: Update to honister

[OE-core] [honister][PATCH 01/37] tar: filter CVEs using vendor name

2021-10-26 Thread Anuj Mittal
From: Ralph Siemsen Recently a number of CVEs have been logged against a nodejs project called "node-tar". These appear as false positives against the GNU tar being built by Yocto. Some of these have been manually excluded using CVE_CHECK_WHITELIST. To avoid this problem, use the vendor name

Re: [OE-core] [PATCH 4/4] gcc: Drop broken/unneeded patch

2021-10-26 Thread Khem Raj
On Tue, Oct 26, 2021 at 4:11 AM Richard Purdie wrote: > > This patch looks obsolete because it looks like part of an upstream > backport on a very old gcc version (4.3.3) and looks incomplete. The > diff also has little context making it likely to be a rebase error. > > Builds seem find without

Re: [OE-core] [PATCH 2/4] gcc: Drop sdt (dtrace) header patch

2021-10-26 Thread Khem Raj
ok On Tue, Oct 26, 2021 at 4:11 AM Richard Purdie wrote: > > Since we now have recipe specific sysroots we no longer need this patch > to avoid the dtrace headers affecting the build of gcc-runtime. Drop > the patch. > > Signed-off-by: Richard Purdie > --- >

Re: [OE-core] [PATCH 3/4] gcc: Fix nolibstdc++ patch

2021-10-26 Thread Khem Raj
thanks, I guess since it was documentation no one noticed it. On Tue, Oct 26, 2021 at 4:11 AM Richard Purdie wrote: > > Somewhere along the line the docs patch was corrupted with incorrect > changes. Strip these out and clean up the patch. > > Signed-off-by: Richard Purdie > --- >

Re: [OE-core] [PATCH 1/4] gcc: Merge three related patches together

2021-10-26 Thread Khem Raj
looks ok. On Tue, Oct 26, 2021 at 4:11 AM Richard Purdie wrote: > > The SYSTEMLIBS_DIR change was spread over three patches, merge these > together since there is no value in having them separate. > > Signed-off-by: Richard Purdie > --- > meta/recipes-devtools/gcc/gcc-11.2.inc| 2 - >

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Martyn Welch
On Tue, 2021-10-26 at 14:59 +, Peter Kjellerstedt wrote: > > -Original Message- > > From: openembedded-core@lists.openembedded.org  > c...@lists.openembedded.org> On Behalf Of Konrad Weihmann > > Sent: den 26 oktober 2021 13:24 > > To: Martyn Welch ; OE-core > > >

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Konrad Weihmann > Sent: den 26 oktober 2021 13:24 > To: Martyn Welch ; OE-core c...@lists.openembedded.org> > Subject: Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add

[OE-core] Yocto Project Status WW43`21

2021-10-26 Thread Stephen Jolley
Current Dev Position: YP 3.5 M1 Next Deadline: 6th Dec. 2021 YP 3.5 M1 build Next Team Meetings: * Bug Triage meeting Thursday Oct. 28th at 7:30am PDT ( https://zoom.us/j/454367603?pwd=ZGxoa2ZXL3FkM3Y0bFd5aVpHVVZ6dz09)

Re: [OE-core] [PATCH v2] sstate: fix touching files inside pseudo

2021-10-26 Thread Steve Sakoman
On Mon, Oct 25, 2021 at 11:06 PM Jose Quaresma wrote: > > I have found this bug on the dunfell branch, can it be backported to dunfell > too? I'll add it to my testing queue. Steve > > Jose > > Peter Kjellerstedt escreveu no dia segunda, > 25/10/2021 à(s) 15:28: >> >> > -Original

Re: [OE-core] [PATCH v2] dl: Use "adr" assembler command to get proper load address on ARM

2021-10-26 Thread ?ukasz Majewski
Hi Joseph, Szabolcs > On Mon, 25 Oct 2021, Szabolcs Nagy via Libc-alpha wrote: > > > ok, i think we need the patches upstream for that like > > https://sourceware.org/pipermail/libc-alpha/2015-November/066153.html > > > > The AArch64 prelink support isn't in the upstream Yocto >

Re: [OE-core] [PATCH] kernel-yocto: Add KERNEL_SKIP_BRANCH_CONVERSION var to skip branch conversion from remote to local

2021-10-26 Thread Bruce Ashfield
It's typically a good idea to cc' me on kernel-yocto commits, but I did happen to notice this one, so all is well. On Tue, Oct 26, 2021 at 3:34 AM Tomasz Dziendzielski < tomasz.dziendziel...@gmail.com> wrote: > Introduced poky upstream commit: > 14df6d53b6 linux-yocto: improve checkout error

Re: [OE-core] [PATCH] license_image: Prevent do_populate_lic_deploy from using image recipes' recipeinfo

2021-10-26 Thread Richard Purdie
On Tue, 2021-10-26 at 09:32 +0200, Tomasz Dziendzielski wrote: > If image recipe depends on another image recipe it will try to use > license recipeinfo that is not deployed. It will result in: > > Exception: FileNotFoundError: [Errno 2] No such file or directory: > >

Re: [OE-core] [PATCH] rust: Upgrade to 1.56.0

2021-10-26 Thread Martin Jansa
Looks like it was caused by rust-cross issues reported in: https://lists.openembedded.org/g/openembedded-core/message/156516 Re-building libstd-rs in empty TMPDIR, just for qemuarm MACHINE without using sstate worked. On Tue, Oct 26, 2021 at 2:06 PM Martin Jansa via lists.openembedded.org

Re: [OE-core] [PATCH] rust: Upgrade to 1.56.0

2021-10-26 Thread Martin Jansa
On Sat, Oct 23, 2021 at 8:52 AM Khem Raj wrote: > This is latest major release, changes are here [1] > > Forward port libstd-rs patches and refresh musl/rv64 port > > [1] https://github.com/rust-lang/rust/releases/tag/1.56.0 > > Signed-off-by: Khem Raj > Cc: Randy MacLeod > Anyone seeing

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Konrad Weihmann
On 26.10.21 13:21, Martyn Welch wrote: Note to self - remember to reply to list... Forwarded Message From: Martyn Welch To: Konrad Weihmann Subject: Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable Date: Tue, 26 Oct 2021

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Martyn Welch
On Tue, 2021-10-26 at 13:01 +0200, Alexander Kanavin wrote: > On Tue, 26 Oct 2021 at 12:56, Konrad Weihmann > wrote: > > > Suggested-by: Alexander Kanavin > > > > > > That can't be true - or the initial idea is very very old :-) pls > > use > > Alex's gmail instead > > I don't remember

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Martyn Welch
Note to self - remember to reply to list... Forwarded Message From: Martyn Welch To: Konrad Weihmann Subject: Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable Date: Tue, 26 Oct 2021 12:12:11 +0100 On Tue, 2021-10-26 at 12:56 +0200,

[OE-core] [PATCH 4/4] gcc: Drop broken/unneeded patch

2021-10-26 Thread Richard Purdie
This patch looks obsolete because it looks like part of an upstream backport on a very old gcc version (4.3.3) and looks incomplete. The diff also has little context making it likely to be a rebase error. Builds seem find without it so drop it. Signed-off-by: Richard Purdie ---

[OE-core] [PATCH 1/4] gcc: Merge three related patches together

2021-10-26 Thread Richard Purdie
The SYSTEMLIBS_DIR change was spread over three patches, merge these together since there is no value in having them separate. Signed-off-by: Richard Purdie --- meta/recipes-devtools/gcc/gcc-11.2.inc| 2 - ...AMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch | 52 ++-

[OE-core] [PATCH 3/4] gcc: Fix nolibstdc++ patch

2021-10-26 Thread Richard Purdie
Somewhere along the line the docs patch was corrupted with incorrect changes. Strip these out and clean up the patch. Signed-off-by: Richard Purdie --- .../gcc/gcc/0005-optional-libstdc.patch | 28 ++- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git

[OE-core] [PATCH 2/4] gcc: Drop sdt (dtrace) header patch

2021-10-26 Thread Richard Purdie
Since we now have recipe specific sysroots we no longer need this patch to avoid the dtrace headers affecting the build of gcc-runtime. Drop the patch. Signed-off-by: Richard Purdie --- meta/recipes-devtools/gcc/gcc-11.2.inc| 1 - .../gcc/gcc/0013-Disable-sdt.patch| 110

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Alexander Kanavin
On Tue, 26 Oct 2021 at 12:56, Konrad Weihmann wrote: > I like the idea, but wouldn't make more sense to do that on a package > level, as here the user is more or less left alone in guessing where the > file actually does come from > Perhaps both. There can be all sorts of rootfs

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Alexander Kanavin
On Tue, 26 Oct 2021 at 12:56, Konrad Weihmann wrote: > > Suggested-by: Alexander Kanavin > > That can't be true - or the initial idea is very very old :-) pls use > Alex's gmail instead > I don't remember anything whatsoever about this, and a search in my gmail for IMAGE_QA_PROHIBIT_PATHS

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Konrad Weihmann
On 26.10.21 12:50, Martyn Welch wrote: From: Martyn Welch Add a default IMAGE_QA_PROHIBIT_PATHS variable containing paths known to be mounted in the default fstab, which are known mount points or directories which should be populated at runtime. Suggested-by: Alexander Kanavin That can't

[OE-core] [PATCH v6 1/2] image.bbclass: add prohibited-paths QA test

2021-10-26 Thread Martyn Welch
Sometimes we wish to ensure that files or directories are not installed somewhere that may prove detrimental to the operation of the system. For example, this may be the case if files are placed in a directory that is utilised as a mount point at run time, thus making them inaccessible once when

[OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Martyn Welch
From: Martyn Welch Add a default IMAGE_QA_PROHIBIT_PATHS variable containing paths known to be mounted in the default fstab, which are known mount points or directories which should be populated at runtime. Suggested-by: Alexander Kanavin Signed-off-by: Martyn Welch --- Changes since v3: -

Re: [OE-core] [PATCH v2] sstate: fix touching files inside pseudo

2021-10-26 Thread Jose Quaresma
I have found this bug on the dunfell branch, can it be backported to dunfell too? Jose Peter Kjellerstedt escreveu no dia segunda, 25/10/2021 à(s) 15:28: > > -Original Message- > > From: openembedded-core@lists.openembedded.org > c...@lists.openembedded.org> On Behalf Of Jose Quaresma

[OE-core] [PATCH] kernel-yocto: Add KERNEL_SKIP_BRANCH_CONVERSION var to skip branch conversion from remote to local

2021-10-26 Thread Tomasz Dziendzielski
Introduced poky upstream commit: 14df6d53b6 linux-yocto: improve checkout error handling and reporting converts all remote branches to local branches. Our Linux repo has ~4500 remote branches: git branch -a | grep remotes |wc -l -> 4575 This costs our best workstations ~20 minutes to simply do

[OE-core] [PATCH] license_image: Prevent do_populate_lic_deploy from using image recipes' recipeinfo

2021-10-26 Thread Tomasz Dziendzielski
If image recipe depends on another image recipe it will try to use license recipeinfo that is not deployed. It will result in: | Exception: FileNotFoundError: [Errno 2] No such file or directory: | 'TMPDIR/deploy/licenses/foo-image/recipeinfo' In such case check for image_license.manifest file

Re: [OE-core] [PATCH] vte: upgrade 0.64.2 -> 0.66.0

2021-10-26 Thread Alexandre Belloni
Hello, This failed with: ./vte-gtk3-scan: error while loading shared libraries: libpango-1.0.so.0: cannot open shared object file: No such file or directory https://autobuilder.yoctoproject.org/typhoon/#/builders/108/builds/2249/steps/11/logs/stdio On 25/10/2021 22:28:50+0800, wangmy wrote:

  1   2   >