Re: [OE-core] [PATCH 1/3] elfutils: split libdebuginfod into its own package

2021-01-22 Thread Richard Purdie
On Thu, 2021-01-21 at 21:38 +0100, Dorinda wrote: > add package options for libdebuginfod > > Signed-off-by: Dorinda Bassey > --- >  meta/recipes-devtools/elfutils/elfutils_0.181.bb | 4 +++- >  1 file changed, 3 insertions(+), 1 deletion(-) Thanks for these, at a quick glance without testing

Re: [OE-core] [yocto] OpenEmbedded Virtual Stand at FOSDEM 2021

2021-01-22 Thread Paul Barker
On Thu, 14 Jan 2021 at 11:02, Robert ber...@yocto.user wrote: > > Hi, > > On 13/01/2021 23:33, Paul Barker wrote: > > Hi folks, > > > > * Any participants in the project who want to help host the Matrix > > chat room between 09:00 and 18:00 each day of the event. This will > > likely involve

Re: [OE-core] [PATCH] qemu: CVE-2018-18438 Security Advisory

2021-01-22 Thread Richard Purdie
On Fri, 2021-01-22 at 10:14 +, Richard Purdie via lists.openembedded.org wrote: > On Fri, 2021-01-22 at 15:15 +0800, Wang Mingyu wrote: > > > > diff --git a/meta/recipes-devtools/qemu/qemu/CVE-2018-18438.patch > > b/meta/recipes-devtools/qemu/qemu/CVE-2018-18438.patch > > new file mode

[OE-core] [PATCH 2/3] core-image-sato-sdk-ptest: these images need ptest

2021-01-22 Thread Ross Burton
As this image isn't buildable without ptest (the packages won't exist), depend on the ptest DISTRO_FEATURE to ensure we don't try and build it. Signed-off-by: Ross Burton --- meta/recipes-sato/images/core-image-sato-ptest-fast.bb | 3 +++ meta/recipes-sato/images/core-image-sato-sdk-ptest.bb |

[OE-core] [PATCH 1/3] lib/oe/package_manager: ensure repodata is wiped

2021-01-22 Thread Ross Burton
When building package indexes for RPM feeds, delete repodata first to be absolutely sure that the indexes are up to date. We've seen some mysterious failures where the repodata doesn't match the repository, so hopefully this will stop that happening. [ YOCTO #14190 ] Signed-off-by: Ross Burton

[OE-core] [PATCH 3/3] ovmf-shell-image: image is only buildable on x86-64

2021-01-22 Thread Ross Burton
This image is only buildable for x86-64, so add a COMPATIBLE assignment to ensure it isn't attempted on others. Signed-off-by: Ross Burton --- meta/recipes-core/ovmf/ovmf-shell-image.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/ovmf/ovmf-shell-image.bb

Re: [OE-core] [PATCH v3 2/2] glslang: upgrade 8.13.3743 -> 11.1.0

2021-01-22 Thread Jose Quaresma
Sorry for that! I need to look more deeply on that. Richard Purdie escreveu no dia sexta, 22/01/2021 à(s) 11:30: > On Fri, 2021-01-22 at 09:30 +, Jose Quaresma wrote: > > License-Update: Add additional licenses > > > > - [1] BSD-2-Clause & MIT & Apache-2.0 > > - [2]

[OE-core] [PATCH][V3] dtc: improve reproducibility

2021-01-22 Thread Oleksiy Obitotskyy via lists.openembedded.org
Makefile override CFLAGS, so -fmacro/debug-prefix-map optiions was omitted and binaries contains absolute patch to sources. Signed-off-by: Oleksiy Obitotskyy --- V3 - update patch against master V2 - apply patch unconditionally V1 - apply patch only if reproducibility is turned on

Re: [OE-core] [PATCH v2] cve-check: replace Looseversion with custom version class

2021-01-22 Thread Ross Burton
On Fri, 22 Jan 2021 at 10:07, Lee Chee Yang wrote: > +def __le__(self, other): > +if not isinstance(other, Version): > +return NotImplemented > +return self._key <= other._key > + > +def __lt__(self, other): > +if not isinstance(other, Version): > +

Re: [OE-core] [PATCH v3 2/2] glslang: upgrade 8.13.3743 -> 11.1.0

2021-01-22 Thread Richard Purdie
On Fri, 2021-01-22 at 09:30 +, Jose Quaresma wrote: > License-Update: Add additional licenses > > - [1] BSD-2-Clause & MIT & Apache-2.0 > - [2] GPL-3-with-bison-exception > > [1] > https://github.com/KhronosGroup/glslang/commit/2962be40baff69848fd786c609289666b60741b8 > [2] >

Re: [OE-core] [PATCH] qemu: CVE-2018-18438 Security Advisory

2021-01-22 Thread Richard Purdie
On Fri, 2021-01-22 at 15:15 +0800, Wang Mingyu wrote: > References > https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-18438 > > Signed-off-by: Wang Mingyu > --- >  meta/recipes-devtools/qemu/qemu.inc | 1 + >  .../qemu/qemu/CVE-2018-18438.patch| 697

[OE-core] [PATCH v2] cve-check: replace Looseversion with custom version class

2021-01-22 Thread Lee Chee Yang
From: Lee Chee Yang The way distutils.version.LooseVersion compare version are tricky, it treat all these ( "1.0-beta2", "1.0-rc1", "1.0A", "1.0p2" and "1.0pre1") as greater version than "1.0". This might be right for "1.0A" and "1.0p1" but not for the rest, also these version could be

[OE-core] [PATCH v3 2/2] glslang: upgrade 8.13.3743 -> 11.1.0

2021-01-22 Thread Jose Quaresma
License-Update: Add additional licenses - [1] BSD-2-Clause & MIT & Apache-2.0 - [2] GPL-3-with-bison-exception [1] https://github.com/KhronosGroup/glslang/commit/2962be40baff69848fd786c609289666b60741b8 [2] https://github.com/KhronosGroup/glslang/commit/14a2cfbc72f2bb2e060fdfe3fbe6a4d54e3817a8

[OE-core] [PATCH v3 1/2] common-licenses: Add GPL-3.0-with-bison-exception

2021-01-22 Thread Jose Quaresma
Signed-off-by: Jose Quaresma --- meta/files/common-licenses/GPL-3-with-bison-exception | 7 +++ 1 file changed, 7 insertions(+) create mode 100644 meta/files/common-licenses/GPL-3-with-bison-exception diff --git a/meta/files/common-licenses/GPL-3-with-bison-exception

Re: [OE-core] [PATCH v2] glslang: upgrade 8.13.3743 -> 11.1.0

2021-01-22 Thread Jose Quaresma
Hi Andrey, Thanks for the catch. Andrey Zhizhikin escreveu no dia quinta, 21/01/2021 à(s) 17:05: > Hello Jose, > > On Thu, Jan 21, 2021 at 4:26 PM Jose Quaresma > wrote: > > > > License-Update: Add additional licenses > > > > - [1] BSD-2-Clause & MIT & Apache-2.0 > > - [2]

Re: [OE-core][PATCH] gobject-introspection: reserve less memory for qemu

2021-01-22 Thread Chen Qi
On 01/22/2021 03:55 PM, Richard Purdie wrote: On Fri, 2021-01-22 at 12:44 +0800, Chen Qi wrote: By default, qemu reserves 4G virtual address. It's too large. We've met error due to lack of memory even on a 32G build machine. So change it to 512M to mitigate this problem. Signed-off-by: Chen

Re: [OE-core] [PATCH v2] devtool: Fix file:// fetcher symlink directory structure

2021-01-22 Thread Tomasz Dziendzielski
>Are there some extra test cases we should be adding to account for some >of these changes? They suggest we have some missing coverage. > >oe-selftest -r devtool > >and see meta/lib/oeqa/selftest/cases/ It seems in test_devtool_update_recipe_local_files we only check if modifying files under