[OE-core] [PATCH] glibc: Upgrade to 2.32 release

2020-08-07 Thread Khem Raj
Drop 0001-localedef-Add-hardlink-resolver-to-build.patch as its applied to localedef upstream Drop CVE patches which are already part of 2.32 release Drop unused attribute patch as its fixed differently in 2.32 Add a patch to mitigate the sideffect of [1] for ppc which detect wrong cpu in OE sin

Re: [OE-core] [PATCH v2] kernel-fitimage: build configuration for image tree when dtb is not present

2020-08-07 Thread Richard Purdie
On Thu, 2020-08-06 at 15:16 +0100, Usama Arif wrote: > Hi, > > I had submitted patches for both the documentation of kernel-fitimage > in yocto mega manual as well as test for kernel-gitimage in oeqa. > Just wanted to check if there were any review comments for this patch > to progress? Sorry, I

Re: [OE-core] environment-setup.d usage in SDKs and eSDK

2020-08-07 Thread Richard Purdie
On Fri, 2020-08-07 at 16:17 +0100, Richard Purdie via lists.openembedded.org wrote: > I've just spent far too long staring at this so I'm going to write down > what I found out. I may as well share it publicly. > > An eSDK can be used like a normal SDK with an environment file that can > be sourc

[OE-core] [PATCH 3/3] uninative: Handle PREMIRRORS generically

2020-08-07 Thread Richard Purdie
Currently uninative handles SOURCE_MIRROR_URL but not generic PREMIRRORS. It can handle this better, attempt to iterate PREMIRRORS entries. Signed-off-by: Richard Purdie --- meta/classes/uninative.bbclass | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/meta/clas

[OE-core] [PATCH 2/3] buildtools: Handle generic environment setup injection

2020-08-07 Thread Richard Purdie
Currently buildtools has its own hacked environment setup. We added capability for generic script fragements but this code was never updated to use it even if several components it contains needs it. Remove a hardcoded variable in favour of the generic scripts to avoid bugs in this area in future.

[OE-core] [PATCH 1/3] populate_sdk_ext: Ensure buildtools doesn't corrupt OECORE_NATIVE_SYSROOT

2020-08-07 Thread Richard Purdie
buildtools is built as a nativesdk which needs to use OECORE_NATIVE_SYSROOT for its own purposes and can reset it. Save and restore the value within the eSDK so the two don't clash. Signed-off-by: Richard Purdie --- meta/classes/populate_sdk_ext.bbclass | 3 +++ 1 file changed, 3 insertions(+)

Re: [OE-core] [meta-OE][PATCH v3] image.bbclass: deploy image artifacts in stages

2020-08-07 Thread Bartosz Golaszewski
On Fri, May 15, 2020 at 7:56 AM Richard Purdie wrote: > > On Tue, 2020-05-12 at 16:05 +0200, Bartosz Golaszewski wrote: > > From: Bartosz Golaszewski > > > > Make each IMAGE_CMD task an sstate task with its own IMGDEPLOYDIR > > override. This way each generated set of artifacts is deployed as soo

[OE-core] ✗ patchtest: failure for systemd: upgrade v245.6 -> v246

2020-08-07 Thread Patchwork
== Series Details == Series: systemd: upgrade v245.6 -> v246 Revision: 1 URL : https://patchwork.openembedded.org/series/25523/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the

[OE-core][dunfell 00/11] Pull request (cover letter only)

2020-08-07 Thread Steve Sakoman
The following changes since commit 7ce425fa1295a9dca48f8474be58db3ac8aa540d: glibc: Secruity fix for CVE-2020-6096 (2020-07-27 12:15:56 -1000) are available in the Git repository at: git://git.openembedded.org/openembedded-core-contrib stable/dunfell-next http://cgit.openembedded.org/open

Re: [OE-core] environment-setup.d usage in SDKs and eSDK

2020-08-07 Thread Jens Rehsack
> Am 07.08.2020 um 17:17 schrieb Richard Purdie > : > > I've just spent far too long staring at this so I'm going to write down > what I found out. I may as well share it publicly. > > An eSDK can be used like a normal SDK with an environment file that can > be sourced. The challenge is that a

[OE-core] environment-setup.d usage in SDKs and eSDK

2020-08-07 Thread Richard Purdie
I've just spent far too long staring at this so I'm going to write down what I found out. I may as well share it publicly. An eSDK can be used like a normal SDK with an environment file that can be sourced. The challenge is that an eSDK contains native binaries rather than the nativesdk variants i

Re: [OE-core] [poky][master][PATCH] systemd: fix codesonar warnings

2020-08-07 Thread Richard Purdie
On Fri, 2020-08-07 at 14:45 +, Amitanand N Chikorde wrote: > The patch is having 8 fixes of which only 1 is applicable to upstream > systemd. This implies the issues are in patches that Yocto Project is applying? If that is the case, why aren't we fixing those patches rather than what amount

[OE-core] ✗ patchtest: failure for systemd: Fix codesonar warnings (rev4)

2020-08-07 Thread Patchwork
== Series Details == Series: systemd: Fix codesonar warnings (rev4) Revision: 4 URL : https://patchwork.openembedded.org/series/25093/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed

Re: [OE-core] [meta-oe][sumo][PATCH] systemd: fix codesonar warnings

2020-08-07 Thread Quentin Schulz
Hi Amitanand, On Fri, Aug 07, 2020 at 08:01:47PM +0530, Amitanand N Chikorde wrote: > Fixed below systemd codesonar warnings. > 1. isprint() and isspace() is invoked here with an argument of signed > type char, but only has defined behavior for int arguments that are > either representable as unsi

Re: [OE-core] [poky][master][PATCH] systemd: fix codesonar warnings

2020-08-07 Thread Amitanand N Chikorde
Hi Richard, The patch is having 8 fixes of which only 1 is applicable to upstream systemd. The applicable fix is up-streamed to systemd project ( pull request https://github.com/systemd/systemd/pull/16625 ), it is merged into upstream systemd master branch. We need to upstream all of the syst

[OE-core] [meta-oe][sumo][PATCH] systemd: fix codesonar warnings

2020-08-07 Thread Amitanand N Chikorde
Fixed below systemd codesonar warnings. 1. isprint() and isspace() is invoked here with an argument of signed type char, but only has defined behavior for int arguments that are either representable as unsigned char or equal to the value of macro EOF(-1). As per codesonar report, in a number of li

[OE-core] [PATCH] oeqa: write @OETestTag content into json test reports for each case

2020-08-07 Thread Alexander Kanavin
This allows using these tags for classification and filtering of test results according to various organization-specific criteria, such as teams responsible for the test, internal test ids, feature domains and so on. Test name itself meanwhile can stay short and human-readable. Signed-off-by: Ale

[OE-core] [PATCH][dunfell 4/4] webkitgtk: fix CVE-2020-13753

2020-08-07 Thread Lee Chee Yang
From: Lee Chee Yang Signed-off-by: Lee Chee Yang --- .../webkit/webkitgtk/CVE-2020-13753.patch | 15 +++ meta/recipes-sato/webkit/webkitgtk_2.28.2.bb | 1 + 2 files changed, 16 insertions(+) create mode 100644 meta/recipes-sato/webkit/webkitgtk/CVE-2020-13753.patch d

[OE-core] [PATCH][dunfell 2/4] qemu: fix CVE-2020-15863

2020-08-07 Thread Lee Chee Yang
From: Lee Chee Yang Signed-off-by: Lee Chee Yang --- meta/recipes-devtools/qemu/qemu.inc | 1 + .../qemu/qemu/CVE-2020-15863.patch| 63 +++ 2 files changed, 64 insertions(+) create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15863.patch diff --g

[OE-core] [PATCH][dunfell 3/4] libjpeg-turbo: fix CVE-2020-13790

2020-08-07 Thread Lee Chee Yang
From: Lee Chee Yang Signed-off-by: Lee Chee Yang --- .../jpeg/files/CVE-2020-13790.patch | 76 +++ .../jpeg/libjpeg-turbo_2.0.4.bb | 1 + 2 files changed, 77 insertions(+) create mode 100644 meta/recipes-graphics/jpeg/files/CVE-2020-13790.patch diff --

[OE-core] [PATCH][dunfell 1/4] ghostscript: fix CVE-2020-15900

2020-08-07 Thread Lee Chee Yang
From: Lee Chee Yang Signed-off-by: Lee Chee Yang --- .../ghostscript/CVE-2020-15900.patch | 54 +++ .../ghostscript/ghostscript_9.50.bb | 1 + 2 files changed, 55 insertions(+) create mode 100644 meta/recipes-extended/ghostscript/ghostscript/CVE-2020-15900.

Re: [OE-core] [poky][master][PATCH] systemd: fix codesonar warnings

2020-08-07 Thread Richard Purdie
On Fri, 2020-08-07 at 14:27 +0530, Amitanand N Chikorde wrote: > Fixed below systemd codesonar warnings. > 1. isprint() and isspace() is invoked here with an argument of signed > type char, but only has defined behavior for int arguments that are > either representable as unsigned char or equal to

[OE-core] [poky][master][PATCH] systemd: fix codesonar warnings

2020-08-07 Thread Amitanand N Chikorde
Fixed below systemd codesonar warnings. 1. isprint() and isspace() is invoked here with an argument of signed type char, but only has defined behavior for int arguments that are either representable as unsigned char or equal to the value of macro EOF(-1). As per codesonar report, in a number of li

[OE-core] gcc-runtime: Debug sources not packaged

2020-08-07 Thread Christian Eggers
It seems that there are no debug sources available for libstdc++. When debugging with GDB, I get the following message: > Can't find a source file at "/opt/orbiter-tiny/3.1.1/sysroots/cortexa7t2hf- > neon-vfpv4-poky-linux-musleabi/usr/src/debug/gcc-runtime/9.3.0-r0/arm-poky- > linux-musleabi/libst