[OE-core] [PATCH] selftest/cases/glibc.py: fix the override syntax

2023-07-20 Thread Anuj Mittal
Fix the override so we actually pass the correct value to glibc. Signed-off-by: Anuj Mittal --- meta/lib/oeqa/selftest/cases/glibc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/cases/glibc.py b/meta/lib/oeqa/selftest/cases/glibc.py index

Re: [OE-core] Toolchain test results

2023-07-25 Thread Anuj Mittal
On Thu, 2023-07-20 at 12:26 +0100, Richard Purdie wrote: > On Tue, 2023-07-18 at 10:14 +0100, Richard Purdie via > lists.openembedded.org wrote: > > qemuarm has ~350 failures > > qemuarm64 has ~350 failures > > qemux86-64 has ~4000 (3900 in glibc) > > qemux86 has ~4000 (3500 in glibc) > > qemuppc h

Re: [OE-core] Toolchain test results

2023-07-25 Thread Anuj Mittal
On Tue, 2023-07-25 at 23:29 -0700, Khem Raj wrote: > On Tue, Jul 25, 2023 at 11:00 PM Anuj Mittal > wrote: > > > > On Thu, 2023-07-20 at 12:26 +0100, Richard Purdie wrote: > > > On Tue, 2023-07-18 at 10:14 +0100, Richard Purdie via > > > lists.openembedded

Re: [OE-core] [kirkstone][PATCH] tiff: fix multiple CVEs

2023-07-26 Thread Anuj Mittal
On Wed, 2023-07-26 at 17:20 +0530, Hitendra Prajapati wrote: > +Upstream-Status: Backport > [https://gitlab.com/libtiff/libtiff/-/commit/b5c7d4c4e0ac16b5cfb1 > 1acaaeaa493334f8] > +CVE: CVE-2023-3618 > +Signed-off-by: Hitendra Prajapati > +--- > + tools/tiffcrop.c | 18 +++--- > + 1

[OE-core] [PATCH 0/4] Fix glibc test failures when running through qemu

2023-07-26 Thread Anuj Mittal
| - --- --- Some of the remaining failing tests (~8) need python/gdb or gprof to be installed. Some (~8) seem to be still triggering out of memory errors. Some others (~26) fail while trying to setup test container with error: error: test-container.c:844: Cannot create testroot lock Anuj Mittal (4

[OE-core] [PATCH 1/4] glibc/check-test-wrapper: don't emit warnings from ssh

2023-07-26 Thread Anuj Mittal
Dont fill up the test log with ssh warning about having added the host to list of known hosts. Also helps fix a test case failure where stderr log was being compared to a known value. Signed-off-by: Anuj Mittal --- meta/recipes-core/glibc/glibc/check-test-wrapper | 2 +- 1 file changed, 1

[OE-core] [PATCH 2/4] selftest/cases/glibc.py: increase the memory for testing

2023-07-26 Thread Anuj Mittal
Some of the tests trigger OOM and fail. Increase the amount of memory available so we dont run into these issues. Signed-off-by: Anuj Mittal --- meta/lib/oeqa/selftest/cases/glibc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/cases/glibc.py b

[OE-core] [PATCH 3/4] oeqa/utils/nfs: allow requesting non-udp ports

2023-07-26 Thread Anuj Mittal
Allows setting up NFS over TCP as well. Signed-off-by: Anuj Mittal --- meta/lib/oeqa/utils/nfs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/lib/oeqa/utils/nfs.py b/meta/lib/oeqa/utils/nfs.py index b66ed42a58..903469bfee 100644 --- a/meta/lib/oeqa/utils/nfs.py

[OE-core] [PATCH 4/4] selftest/cases/glibc.py: switch to using NFS over TCP

2023-07-26 Thread Anuj Mittal
This provides a more reliable test execution when running tests that write a large buffer/file and significantly reduces the localedata test failures. Signed-off-by: Anuj Mittal --- meta/lib/oeqa/selftest/cases/glibc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a

Re: [OE-core] Toolchain test results

2023-07-26 Thread Anuj Mittal
On Wed, 2023-07-26 at 06:45 +, Anuj Mittal wrote: > On Tue, 2023-07-25 at 23:29 -0700, Khem Raj wrote: > > On Tue, Jul 25, 2023 at 11:00 PM Anuj Mittal > > > > wrote: > > > > > > On Thu, 2023-07-20 at 12:26 +0100, Richard Purdie wrote: > > &

Re: [OE-core][kirkstone][PATCH 1/1] python3-certifi: fix CVE-2023-37920

2023-08-02 Thread Anuj Mittal
I think this recipe should simply be upgraded instead ... Thanks, Anuj On Wed, 2023-08-02 at 17:57 +, Narpat Mali via lists.openembedded.org wrote: > From: Narpat Mali > > Certifi is a curated collection of Root Certificates for validating > the trustworthiness of SSL certificates while ve

Re: [OE-core][kirkstone][PATCH] Fix kirkstone dmidedecode smbios3_decode

2023-08-14 Thread Anuj Mittal
On Sat, 2023-08-12 at 09:47 +0800, Lau, Karn Jye wrote: > From: "Lau, Karn Jye" > > Recent CVE fixes in kirkstone dmidecode broke it > functionality, this issue is only observed in kirkstone > version of dmidecode(v3.3).Update smbios3_decode to address > the broken functionality. > > Signed-off-

Re: [OE-core] [kirkstone][PATCH 1/1] dmidecode: fixup for CVE-2023-30630

2023-08-16 Thread Anuj Mittal
On Tue, 2023-08-15 at 11:50 +0200, Adrian Freihofer wrote: > The previous CVE-2023-30630_1.patch picked only the patch > "dmidecode: Write the whole dump file at once" d8cfbc808f. > But there was a refactoring which does not allow to cherry-pick it > fast > forward. Resolving this conflict was not

[OE-core] [PATCH 1/3] gstreamer1.0: upgrade 1.22.4 -> 1.22.5

2023-08-17 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../{gst-devtools_1.22.4.bb => gst-devtools_1.22.5.bb} | 2 +- ...streamer1.0-libav_1.22.4.bb => gstreamer1.0-libav_1.22.5.bb} | 2 +- .../{gstreamer1.0-omx_1.22.4.bb => gstreamer1.0-omx_1.22.5.bb} | 2 +- ...plugins-bad_1.22.4.bb => gstreame

[OE-core] [PATCH 2/3] harfbuzz: upgrade 8.0.1 -> 8.1.1

2023-08-17 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../harfbuzz/{harfbuzz_8.0.1.bb => harfbuzz_8.1.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-graphics/harfbuzz/{harfbuzz_8.0.1.bb => harfbuzz_8.1.1.bb} (95%) diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz

[OE-core] [PATCH 3/3] stress-ng: upgrade 0.15.08 -> 0.16.04

2023-08-17 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../stress-ng/{stress-ng_0.15.08.bb => stress-ng_0.16.04.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/stress-ng/{stress-ng_0.15.08.bb => stress-ng_0.16.04.bb} (94%) diff --git a/meta/recipes-extended/stress-ng/

[OE-core] [PATCH 01/11] gstreamer1.0: upgrade 1.22.6 -> 1.22.7

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../{gst-devtools_1.22.6.bb => gst-devtools_1.22.7.bb} | 2 +- ...streamer1.0-libav_1.22.6.bb => gstreamer1.0-libav_1.22.7.bb} | 2 +- .../{gstreamer1.0-omx_1.22.6.bb => gstreamer1.0-omx_1.22.7.bb} | 2 +- ...plugins-bad_1.22.6.bb => gstreame

[OE-core] [PATCH 03/11] harfbuzz: upgrade 8.2.2 -> 8.3.0

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../harfbuzz/{harfbuzz_8.2.2.bb => harfbuzz_8.3.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-graphics/harfbuzz/{harfbuzz_8.2.2.bb => harfbuzz_8.3.0.bb} (95%) diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz

[OE-core] [PATCH 04/11] libnotify: upgrade 0.8.2 -> 0.8.3

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../libnotify/{libnotify_0.8.2.bb => libnotify_0.8.3.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-gnome/libnotify/{libnotify_0.8.2.bb => libnotify_0.8.3.bb} (93%) diff --git a/meta/recipes-gnome/libnotify/libnotify

[OE-core] [PATCH 05/11] libsolv: upgrade 0.7.25 -> 0.7.26

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../libsolv/{libsolv_0.7.25.bb => libsolv_0.7.26.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/libsolv/{libsolv_0.7.25.bb => libsolv_0.7.26.bb} (95%) diff --git a/meta/recipes-extended/libsolv/libsolv_0.7

[OE-core] [PATCH 02/11] gsettings-desktop-schemas: upgrade 44.0 -> 45.0

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- ...esktop-schemas_44.0.bb => gsettings-desktop-schemas_45.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-gnome/gsettings-desktop-schemas/{gsettings-desktop-schemas_44.0.bb => gsettings-desktop-schemas_45.0.bb} (84%) diff

[OE-core] [PATCH 06/11] libtirpc: upgrade 1.3.3 -> 1.3.4

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../libtirpc/{libtirpc_1.3.3.bb => libtirpc_1.3.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/libtirpc/{libtirpc_1.3.3.bb => libtirpc_1.3.4.bb} (93%) diff --git a/meta/recipes-extended/libtirpc/libtirpc

[OE-core] [PATCH 07/11] mmc-utils: upgrade to latest revision

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- meta/recipes-devtools/mmc/mmc-utils_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/mmc/mmc-utils_git.bb b/meta/recipes-devtools/mmc/mmc-utils_git.bb index 2d02927af7b..a7e4d369ffc 100644 --- a/meta/recipes-devtools

[OE-core] [PATCH 08/11] puzzles: upgrade to latest revision

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- meta/recipes-sato/puzzles/puzzles_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-sato/puzzles/puzzles_git.bb b/meta/recipes-sato/puzzles/puzzles_git.bb index d7089ef95db..d0a9af7cb67 100644 --- a/meta/recipes-sato/puzzles

[OE-core] [PATCH 09/11] shared-mime-info: upgrade 2.3 -> 2.4

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../0001-Fix-literal-as-per-c-11.patch| 279 -- ...001-Fix-string-literal-concatenation.patch | 39 --- .../shared-mime-info/shared-mime-info_git.bb | 9 +- 3 files changed, 3 insertions(+), 324 deletions(-) delete mode 100644 meta

[OE-core] [PATCH 10/11] sqlite3: upgrade 3.43.2 -> 3.44.0

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../sqlite/{sqlite3_3.43.2.bb => sqlite3_3.44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/sqlite/{sqlite3_3.43.2.bb => sqlite3_3.44.0.bb} (78%) diff --git a/meta/recipes-support/sqlite/sqlite3_3.43.2

[OE-core] [PATCH 11/11] stress-ng: upgrade 0.17.00 -> 0.17.01

2023-11-20 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../stress-ng/{stress-ng_0.17.00.bb => stress-ng_0.17.01.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/stress-ng/{stress-ng_0.17.00.bb => stress-ng_0.17.01.bb} (94%) diff --git a/meta/recipes-extended/stress-ng/

[OE-core] [PATCH] vulkan: upgrade 1.3.261.1 -> 1.3.268.0

2023-11-20 Thread Anuj Mittal
* Allow glslang to find external spirv-tools to build. * Vulkan-validation-layers has been split. So a new recipe Vulkan-Utility-Libraries has been added and vulkan-validation-layers now depends on it. Signed-off-by: Anuj Mittal --- meta/conf/distro/include/maintainers.inc | 1

Re: [OE-core] [hardknott] [PATCH 1/2] libtirpc: add support for configuring and building with --enable-gssapi

2023-11-21 Thread Anuj Mittal
Is this for hardknott? That release isn't maintained anymore. Thanks, Anuj On Mon, 2023-11-20 at 23:24 +0200, Stefan Ghinea via lists.openembedded.org wrote: > nfs-utils with gss and svcgss has libtirpc configured with gssapi > option > as a dependency. > > Signed-off-by: Stefan Ghinea > --- >

Re: [OE-core] [PATCH dunfell v2] linux-yocto/5.4: update to v5.4.262

2023-12-10 Thread Anuj Mittal
linux-yocto-rt for dunfell doesn't compile anymore after this set of upgrades: 22:36:51 | /poky/build/tmp/work-shared/intel-skylake-64/kernel- source/include/linux/preempt.h:432:29: error: static declaration of 'migrate_disable' follows non-static declaration 22:36:51 | 432 | static __always_i

Re: [OE-core] [PATCH dunfell v2] linux-yocto/5.4: update to v5.4.262

2023-12-10 Thread Anuj Mittal
On Sun, 2023-12-10 at 16:30 -1000, Steve Sakoman wrote: > On Sun, Dec 10, 2023 at 2:53 PM Mittal, Anuj > wrote: > > > > linux-yocto-rt for dunfell doesn't compile anymore after this set > > of > > upgrades: > > Hmm . . . this didn't show up in autobuilder testing. Perhaps consider pulling in th

[OE-core] [PATCH 3/9] bluez5: upgrade 5.70 -> 5.71

2023-12-18 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- meta/recipes-connectivity/bluez5/bluez5.inc | 2 - .../0001-test-gatt-Fix-hung-issue.patch | 2 +- ...et-for-building-tests-without-runnin.patch | 6 +- ...e_probe-failing-if-SDP-record-is-not.patch | 313 -- ...shared-util.c-include

[OE-core] [PATCH 2/9] base-passwd: upgrade 3.6.2 -> 3.6.3

2023-12-18 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../base-passwd/{base-passwd_3.6.2.bb => base-passwd_3.6.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-core/base-passwd/{base-passwd_3.6.2.bb => base-passwd_3.6.3.bb} (98%) diff --git a/meta/recipes-core/base-passw

[OE-core] [PATCH 4/9] glib-2.0: upgrade 2.78.1 -> 2.78.3

2023-12-18 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- ...ot-write-bindir-into-pkg-config-files.patch | 4 ++-- .../0001-Fix-DATADIRNAME-on-uclibc-Linux.patch | 3 +-- ...l-gio-querymodules-as-libexec_PROGRAM.patch | 6 +++--- ...ing-about-deprecated-paths-in-schemas.patch | 4 ++-- ...e-correctly-when-building

[OE-core] [PATCH 5/9] glib-networking: upgrade 2.76.1 -> 2.78.0

2023-12-18 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- ...sable-PKCS-11-tests-if-not-available.patch | 113 -- .../glib-networking/eagain.patch | 20 +++- ...ng_2.76.1.bb => glib-networking_2.78.0.bb} | 3 +- 3 files changed, 15 insertions(+), 121 deletions(-) delete mode 100644 m

[OE-core] [PATCH 6/9] puzzles: upgrade to latest revision

2023-12-18 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- meta/recipes-sato/puzzles/puzzles_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-sato/puzzles/puzzles_git.bb b/meta/recipes-sato/puzzles/puzzles_git.bb index d0a9af7cb67..ab4b2394b8b 100644 --- a/meta/recipes-sato/puzzles

[OE-core] [PATCH 7/9] stress-ng: upgrade 0.17.01 -> 0.17.03

2023-12-18 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../stress-ng/{stress-ng_0.17.01.bb => stress-ng_0.17.03.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/stress-ng/{stress-ng_0.17.01.bb => stress-ng_0.17.03.bb} (94%) diff --git a/meta/recipes-extended/stress-ng/

[OE-core] [PATCH 8/9] libusb1: fix upstream version check

2023-12-18 Thread Anuj Mittal
Fix regex to not match release candidates. Signed-off-by: Anuj Mittal --- meta/recipes-support/libusb/libusb1_1.0.26.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-support/libusb/libusb1_1.0.26.bb b/meta/recipes-support/libusb/libusb1_1.0.26.bb index 122c3d48b4f

[OE-core] [PATCH 9/9] enchant2: upgrade 2.6.2 -> 2.6.4

2023-12-18 Thread Anuj Mittal
pkgdatadir is a versioned directory by default now so we don't need to pass it to EXTRA_OEMAKE. https://github.com/AbiWord/enchant/commit/6e4a8df5cbf80fd449f1857ac1065d3235f1139f Signed-off-by: Anuj Mittal --- .../enchant/{enchant2_2.6.2.bb => enchant2_2.6.4.bb} | 4 +---

[OE-core] [PATCH 1/9] sqlite3: upgrade 3.44.0 -> 3.44.2

2023-12-18 Thread Anuj Mittal
Signed-off-by: Anuj Mittal --- .../sqlite/{sqlite3_3.44.0.bb => sqlite3_3.44.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/sqlite/{sqlite3_3.44.0.bb => sqlite3_3.44.2.bb} (78%) diff --git a/meta/recipes-support/sqlite/sqlite3_3.44.0

[OE-core] [PATCH v2] libusb1: fix upstream version check

2023-12-18 Thread Anuj Mittal
Fix regex to not match release candidates. Signed-off-by: Anuj Mittal --- meta/recipes-support/libusb/libusb1_1.0.26.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-support/libusb/libusb1_1.0.26.bb b/meta/recipes-support/libusb/libusb1_1.0.26.bb index 122c3d48b4f

Re: [OE-core] [PATCH 8/9] libusb1: fix upstream version check

2023-12-18 Thread Anuj Mittal
On Mon, 2023-12-18 at 22:47 +0800, Anuj Mittal wrote: > Fix regex to not match release candidates. > > Signed-off-by: Anuj Mittal > --- >  meta/recipes-support/libusb/libusb1_1.0.26.bb | 1 + >  1 file changed, 1 insertion(+) > > diff --git a/meta/recipes-support/libu

[OE-core] [PATCH] libjpeg-turbo: upgrade 2.0.2 -> 2.0.3

2019-09-05 Thread Anuj Mittal
Bug fix release. Release notes: https://github.com/libjpeg-turbo/libjpeg-turbo/releases Signed-off-by: Anuj Mittal --- .../jpeg/{libjpeg-turbo_2.0.2.bb => libjpeg-turbo_2.0.3.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/jpeg/{libjpeg-turbo_2.

Re: [OE-core] [PATCH] devtool: unset _PYTHON_SYSCONFIGDATA_NAME

2020-08-31 Thread Anuj Mittal
I see the same problem on Fedora 32 with Python 3.8.5. Thanks, Anuj On Mon, 2020-08-31 at 22:06 +0200, Alexander Kanavin wrote: > I just ran this on opensuse tumbleweed which has 3.8.5 - no issues. > > Alex > > On Mon, 31 Aug 2020 at 21:55, gr embeter wrote: > > Hi > > > > > On Thu, Aug 27,

[OE-core] [zeus][PATCH 02/11] qemu: CVE-2020-16092

2020-09-09 Thread Anuj Mittal
From: Li Wang Backport CVE patch from the upstream: https://git.qemu.org/?p=qemu.git;a=commit;h=035e69b063835a5fd23cacabd63690a3d84532a8 Signed-off-by: Li Wang Signed-off-by: Anuj Mittal --- meta/recipes-devtools/qemu/qemu.inc | 1 + .../qemu/qemu/CVE-2020-16092.patch

[OE-core] [zeus][PATCH 10/11] go: Security Advisory - go - CVE-2020-24553

2020-09-09 Thread Anuj Mittal
From: Li Zhou Backport the patch from <https://github.com/golang/go/commit/ eb07103a083237414145a45f029c873d57037e06> to solve CVE-2020-24553. Signed-off-by: Li Zhou Signed-off-by: Anuj Mittal --- meta/recipes-devtools/go/go-1.12.inc | 2 + ...i-rename-a-test-file-to-b

[OE-core] [zeus][PATCH 03/11] go: CVE-2020-16845

2020-09-09 Thread Anuj Mittal
From: Zhixiong Chi Backport CVE patch from the upstream: https://github.com/golang/go.git commit 027d7241ce050d197e7fabea3d541ffbe3487258 Signed-off-by: Zhixiong Chi Signed-off-by: Anuj Mittal --- meta/recipes-devtools/go/go-1.12.inc | 1 + .../go/go-1.12/CVE-2020-16845.patch

[OE-core] [zeus][PATCH 04/11] qemu: CVE-2020-10756

2020-09-09 Thread Anuj Mittal
/-/commit/c7ede54cbd2e2b25385325600958ba0124e31cc0 Signed-off-by: Stefan Ghinea Signed-off-by: Anuj Mittal --- meta/recipes-devtools/qemu/qemu.inc | 1 + .../qemu/qemu/CVE-2020-10756.patch| 40 +++ 2 files changed, 41 insertions(+) create mode 100644 meta

[OE-core] [zeus][PATCH 01/11] xserver-xorg: Security Advisory - xserver-xorg - CVE-2020-14347

2020-09-09 Thread Anuj Mittal
From: Li Zhou Backport patch from <https://gitlab.freedesktop.org/xorg/xserver/-/ commit/aac28e162e5108510065ad4c323affd6deffd816> to solve CVE-2020-14347. Signed-off-by: Li Zhou Signed-off-by: Anuj Mittal --- .../xserver-xorg/CVE-2020-14347.patch | 37 +++ ..

[OE-core] [zeus][PATCH 11/11] gnutls: CVE-2020-24659

2020-09-09 Thread Anuj Mittal
From: Zhixiong Chi Backport the CVE patch from the usptream: https://gitlab.com/gnutls/gnutls.git commit 29ee67c205855e848a0a26e6d0e4f65b6b943e0a Signed-off-by: Zhixiong Chi Signed-off-by: Anuj Mittal --- .../gnutls/gnutls/CVE-2020-24659.patch| 117 ++ meta/recipes

[OE-core] [zeus][PATCH 05/11] qemu : fix CVE-2020-15863

2020-09-09 Thread Anuj Mittal
From: Li Wang Signed-off-by: Lee Chee Yang Signed-off-by: Richard Purdie Signed-off-by: Li Wang Signed-off-by: Anuj Mittal --- meta/recipes-devtools/qemu/qemu.inc | 1 + .../qemu/qemu/CVE-2020-15863.patch| 64 +++ 2 files changed, 65 insertions

[OE-core] [zeus][PATCH 09/11] qemu: CVE-2020-14364

2020-09-09 Thread Anuj Mittal
From: Li Wang Backport patch from: https://git.qemu.org/?p=qemu.git;a=patch;h=b946434f2659a182afc17e155be6791ebfb302eb Signed-off-by: Li Wang Signed-off-by: Anuj Mittal --- meta/recipes-devtools/qemu/qemu.inc | 1 + .../qemu/qemu/CVE-2020-14364.patch| 93

[OE-core] [zeus][PATCH 07/11] bind: Security Advisory - bind - CVE-2020-8623

2020-09-09 Thread Anuj Mittal
From: Li Zhou Backport patch from <https://gitlab.isc.org/isc-projects/bind9/ commit/8d807cc21655eaa6e6a08afafeec3682c0f3f2ab> to solve CVE-2020-8623. Signed-off-by: Li Zhou Signed-off-by: Anuj Mittal --- .../bind/bind/CVE-2020-8623.patch | 402 ++ .../r

[OE-core] [zeus][PATCH 08/11] bind: Security Advisory - bind - CVE-2020-8624

2020-09-09 Thread Anuj Mittal
From: Li Zhou Backport patch from <https://gitlab.isc.org/isc-projects/bind9/ commit/e4cccf9668c7adee4724a7649ec64685f82c8677> to solve CVE-2020-8624. Signed-off-by: Li Zhou Signed-off-by: Anuj Mittal --- .../bind/bind/CVE-2020-8624.patch | 33 +++ .../r

[OE-core] [zeus][PATCH 06/11] bind: Security Advisory - bind - CVE-2020-8622

2020-09-09 Thread Anuj Mittal
From: Li Zhou Backport patch from <https://gitlab.isc.org/isc-projects/bind9/ commit/6ed167ad0a647dff20c8cb08c944a7967df2d415> to solve CVE-2020-8622. Signed-off-by: Li Zhou Signed-off-by: Anuj Mittal --- .../bind/bind/CVE-2020-8622.patch | 60 +++ .../r

[OE-core] [zeus][PATCH 00/11] zeus review request

2020-09-09 Thread Anuj Mittal
A set of CVE fixes for zeus. Please review. I have rebased these on top of current zeus-next and have run the entire set through autobuilder using the contrib/rpurdie/zeus helper branch. There's one failure while compiling acl (for reproducibility test) which probably happened because of memory

Re: [OE-core] [PATCH] ncurses: remove config.cache

2020-09-10 Thread Anuj Mittal
On Thu, 2020-09-10 at 21:53 +0100, Ross Burton wrote: > From: Ross Burton You forgot to update your email somewhere? :) Thanks, Anuj > > Instead of having a config.cache that overrides the system site > files, > simply set the values in CACHED_CONFIGUREVARS. We can also drop the > mkstemp che

Re: [OE-core] [PATCH] bash: fix CVE-2019-18276

2020-09-23 Thread Anuj Mittal
Hi Mingli, On Thu, 2020-09-24 at 10:39 +0800, Yu, Mingli wrote: > From: De Huo > > An issue was discovered in disable_priv_mode in shell.c in GNU Bash > through 5.0 patch 11. By default, if Bash is run with its effective > UID > not equal to its real UID, it will drop privileges by setting its >

Re: [OE-core] [PATCH] bash: fix CVE-2019-18276

2020-09-29 Thread Anuj Mittal
On Mon, 2020-09-28 at 20:45 -0700, Khem Raj wrote: > On Mon, Sep 28, 2020 at 8:27 AM Khem Raj wrote: > > On Wed, Sep 23, 2020 at 11:00 PM Yu, Mingli < > > mingli...@windriver.com> wrote: > > > Hi Anuj, > > > > > > On 9/24/20 10:50 AM, Anuj Mittal w

Re: [OE-core] [gatesgarth][PATCH 13/22] bluez5: fix CVE-2020-27153

2020-11-10 Thread Anuj Mittal
Anuj > > Steve > > On Thu, Nov 5, 2020 at 8:28 PM Anuj Mittal > wrote: > > > > From: Chee Yang Lee > > > > (From OE-Core rev: 4b0688bb8abb2fb8a620541207d40e90e4bf16f9) > > > > Signed-off-by: Chee Yang Lee &g

[OE-core] [gatesgarth][PATCH 00/21] pull request (cover letter only)

2020-11-11 Thread Anuj Mittal
Please merge these changes in gatesgarth. Thanks, Anuj The following changes since commit b1eb390bbcb995c0da70478e17f9170721c75341: scripts/buildhistory_analysis: Avoid tracebacks from file comparision code (2020-10-30 12:37:53 +) are available in the Git repository at: git://push.op

Re: [OE-core][dunfell 16/18] openssh: upgrade 8.3p1 -> 8.4p1 to fix CVE-2020-14145 and CVE-2020-15778

2020-11-13 Thread Anuj Mittal
Hi Steve, On Fri, 2020-11-13 at 04:52 -1000, Steve Sakoman wrote: > From: Alexander Kanavin > > CVE-2020-14145 > > The client side in OpenSSH 5.7 through 8.3 has an Observable > Discrepancy leading to an information leak in the algorithm > negotiation. This allows man-in-the-middle attackers to

[OE-core] [gatesgarth][PATCH 02/19] ptest-runner: Fix license as it contains 'or later' clause

2020-11-17 Thread Anuj Mittal
From: Richard Purdie The license headers are clear that the code is "or later", fix LICENSE to match. Signed-off-by: Richard Purdie (cherry picked from commit 5f0b5cdfcb104ac50222a47652e090ad8770e49f) Signed-off-by: Anuj Mittal --- meta/recipes-support/ptest-runner/ptest-runner_2.

[OE-core] [gatesgarth][PATCH 04/19] alsa-utils: Fix license to GPLv2 only

2020-11-17 Thread Anuj Mittal
a9a17a991174b732597e21045763ea851f486a01) Signed-off-by: Anuj Mittal --- meta/recipes-multimedia/alsa/alsa-utils.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/alsa/alsa-utils.inc b/meta/recipes-multimedia/alsa/alsa-utils.inc index b523a5a832..0a2e86fcc7

[OE-core] [gatesgarth][PATCH 00/19] gatesgarth review request

2020-11-17 Thread Anuj Mittal
Next set of changes for gatesgarth. Please review. Passed a-full on autobuilder except for one failure. Ping test failed while executing do_testimage for sato image. https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1602 I think this failure is not related to the changes here as

[OE-core] [gatesgarth][PATCH 11/19] testimage: print results for interrupted runs

2020-11-17 Thread Anuj Mittal
(cherry picked from commit 2bcc643195a3b3c66d698fac8b7af037c08545ac) Signed-off-by: Anuj Mittal --- meta/classes/testimage.bbclass | 19 +++ 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index

[OE-core] [gatesgarth][PATCH 06/19] clutter-gst-3.0: do not call out to host gstreamer plugin scanner

2020-11-17 Thread Anuj Mittal
From: Alexander Kanavin This is host contamination and can also fail for all kinds of reasons when running under usermode qemu. Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie (cherry picked from commit fb60d0920b660dffb346b2212dc6f8ba2a0b9fde) Signed-off-by: Anuj Mittal

[OE-core] [gatesgarth][PATCH 08/19] openssh: whitelist CVE-2014-9278

2020-11-17 Thread Anuj Mittal
requirements that would force a local login. Whitelist the CVE since this issue is Redhat specific. Signed-off-by: Steve Sakoman Signed-off-by: Richard Purdie (cherry picked from commit 309132e50d23b1e3f15ef8db1a101166b35f7ca4) Signed-off-by: Anuj Mittal --- meta/recipes-connectivity/openssh

[OE-core] [gatesgarth][PATCH 13/19] lrzsz: Use Cross AR during compile

2020-11-17 Thread Anuj Mittal
From: Khem Raj Current code hardcodes archiver to be 'ar' from build host Signed-off-by: Khem Raj Signed-off-by: Richard Purdie (cherry picked from commit 74ed1d10434213ad3fcf54ded49879090f979e1e) Signed-off-by: Anuj Mittal --- ...mpilation-using-autoconf-detected-AR.

[OE-core] [gatesgarth][PATCH 18/19] gstreamer1.0: warn the user when something is wrong with GstBufferPool

2020-11-17 Thread Anuj Mittal
From: Jose Quaresma This is not a critical bug fix but it can be usefull in some BSP with exotic drivers like on nvidia tegra bsp. Signed-off-by: Jose Quaresma Signed-off-by: Anuj Mittal --- ...size-in-reset-when-maxsize-is-larger.patch | 49 +++ .../gstreamer

[OE-core] [gatesgarth][PATCH 16/19] libbsd: Remove BSD-4-Clause from main package

2020-11-17 Thread Anuj Mittal
. Signed-off-by: Mark Jonas Signed-off-by: Richard Purdie (cherry picked from commit 9c3e3f83b5fb162d161a7b9773d426418a22c05f) Signed-off-by: Anuj Mittal --- meta/recipes-support/libbsd/libbsd_0.10.0.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-support

[OE-core] [gatesgarth][PATCH 10/19] oeqa/core/context: initialize _run_end_time

2020-11-17 Thread Anuj Mittal
-off-by: Anuj Mittal --- meta/lib/oeqa/core/context.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py index 84b43a93e1..2abe353d27 100644 --- a/meta/lib/oeqa/core/context.py +++ b/meta/lib/oeqa/core/context.py @@ -85,6 +85,7

[OE-core] [gatesgarth][PATCH 17/19] kernel: provide module.lds for out of tree builds in v5.10+

2020-11-17 Thread Anuj Mittal
generated and overwrite our copy (as expected). Signed-off-by: Pan, Kris Signed-off-by: Lili Li Signed-off-by: Bruce Ashfield Signed-off-by: Richard Purdie (cherry picked from commit 0fc66a0b64953aae38d0124b57615fffaec8de52) Signed-off-by: Anuj Mittal --- meta/classes/kernel.bbclass

[OE-core] [gatesgarth][PATCH 05/19] kernel-module-split.bbclass: identify kernel modconf files as configuration files

2020-11-17 Thread Anuj Mittal
rom commit 1a70a92d1f1006be115429a4262259c9084f484d) Signed-off-by: Anuj Mittal --- meta/classes/kernel-module-split.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/kernel-module-split.bbclass b/meta/classes/kernel-module-split.bbclass index 221022b7bc..c8ede26996 100644 --- a/me

[OE-core] [gatesgarth][PATCH 15/19] layer.conf: fix syntax error in PATH setting

2020-11-17 Thread Anuj Mittal
is by using the more appropriate '!=' comparison operator. Signed-off-by: Matt Madison Signed-off-by: Richard Purdie (cherry picked from commit 2e753a12cf6bb98f9e0940e5ed6255ce8c538eed) Signed-off-by: Anuj Mittal --- meta/conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 delet

[OE-core] [gatesgarth][PATCH 01/19] freetype: fix CVE-2020-15999, backport from 2.10.4

2020-11-17 Thread Anuj Mittal
From: Diego Santa Cruz Signed-off-by: Diego Santa Cruz Signed-off-by: Anuj Mittal --- ...-sfnt-Fix-heap-buffer-overflow-59308.patch | 51 +++ .../freetype/freetype_2.10.2.bb | 1 + 2 files changed, 52 insertions(+) create mode 100644 meta/recipes-graphics

[OE-core] [gatesgarth][PATCH 14/19] gawk: Avoid using host ar during cross compile

2020-11-17 Thread Anuj Mittal
From: Khem Raj Signed-off-by: Khem Raj Signed-off-by: Richard Purdie (cherry picked from commit 5bc83ca06d0d38a6eb9fcc0343d081021dafb2ce) Signed-off-by: Anuj Mittal --- .../0001-Use-cross-AR-during-compile.patch| 35 +++ meta/recipes-extended/gawk/gawk_5.1.0.bb | 1

[OE-core] [gatesgarth][PATCH 07/19] conf-notes.txt: mention more important images than just sato

2020-11-17 Thread Anuj Mittal
From: Alexander Kanavin Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie (cherry picked from commit f89138e12c3021ed49aa7ccdf90543d2d279) Signed-off-by: Anuj Mittal --- meta/conf/conf-notes.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/conf/conf-notes.txt b

[OE-core] [gatesgarth][PATCH 12/19] binutils: reproducibility: reuse debug-prefix-map for stabs

2020-11-17 Thread Anuj Mittal
-off-by: Anuj Mittal --- .../binutils/binutils-2.35.inc| 1 + ...oducibility-for-stabs-debugging-data.patch | 35 +++ 2 files changed, 36 insertions(+) create mode 100644 meta/recipes-devtools/binutils/binutils/0017-gas-improve-reproducibility-for-stabs-debugging

[OE-core] [gatesgarth][PATCH 09/19] oeqa/core/context: expose results as variable

2020-11-17 Thread Anuj Mittal
a97ae47525157871b6c098ffc352293e365a4335) Signed-off-by: Anuj Mittal --- meta/lib/oeqa/core/context.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py index 7d3fa3b84a..84b43a93e1 100644 --- a/meta/lib/oeqa/core/context.py +++ b/meta/lib/oeqa

[OE-core] [gatesgarth][PATCH 03/19] libdnf: Fix license as it contains 'or later' clause

2020-11-17 Thread Anuj Mittal
From: Richard Purdie The license headers are clear that the code is "or later", fix LICENSE to match. Signed-off-by: Richard Purdie (cherry picked from commit e565e0b908c71ad5106d1c6c73d269b819787e55) Signed-off-by: Anuj Mittal --- meta/recipes-devtools/libdnf/libdnf_0.48.0.bb | 2

[OE-core] [gatesgarth][PATCH 19/19] diffstat: add nativesdk to BBCLASSEXTEND

2020-11-17 Thread Anuj Mittal
) Signed-off-by: Anuj Mittal --- meta/recipes-devtools/diffstat/diffstat_1.63.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/diffstat/diffstat_1.63.bb b/meta/recipes-devtools/diffstat/diffstat_1.63.bb index ee0a7e7bd6..61b2ea5dc2 100644 --- a/meta/recipes-devtools

Re: [OE-core] [gatesgarth][PATCH 00/19] gatesgarth review request

2020-11-17 Thread Anuj Mittal
n't see it in this PR. Yes, I missed it this time and will include it in the next set. Thanks, Anuj > > On Tue, Nov 17, 2020 at 4:36 PM Anuj Mittal > wrote: > > Next set of changes for gatesgarth. Please review. > > > > Passed a-full on autobuilder except for

Re: [OE-core] cups: whitelist CVE-2018-6553

2020-11-18 Thread Anuj Mittal
On Wed, 2020-11-18 at 05:25 -1000, Steve Sakoman wrote: > This an Ububtu specific issue: > > The CUPS AppArmor profile incorrectly confined the dnssd backend > due to use of hard links. A local attacker could possibly use this > issue to escape confinement. This flaw affects versions prior to > 2.

[OE-core] [gatesgarth][PATCH 00/18] pull request (cover letter only)

2020-11-18 Thread Anuj Mittal
Please merge these changes in gatesgarth. I have dropped the kernel change from this request and will include it along with the fix up sent by Bruce in next series. Thanks, Anuj The following changes since commit a1db1e71129c3e67ddd9dbef21e1c5eb31552e00: grub: clean up CVE patches (2020-11-1

[OE-core] [PATCH] distutils-common-base: fix LINKSHARED expansion

2020-11-18 Thread Anuj Mittal
Add the missing $ so SECURITY_CFLAGS actually gets expanded. Signed-off-by: Anuj Mittal --- meta/classes/distutils-common-base.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/distutils-common-base.bbclass b/meta/classes/distutils-common-base.bbclass

[OE-core] [PATCH] glib-2.0: RDEPEND on dbusmock only when GI_DATA_ENABLED is True

2020-11-19 Thread Anuj Mittal
python3-dbusmock depends on pygobject unconditionally and it's not going to work if g-i is disabled. Signed-off-by: Anuj Mittal --- meta/recipes-core/glib-2.0/glib.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes

[OE-core] [gatesgarth][PATCH 00/21] gatesgarth patch review request

2020-11-23 Thread Anuj Mittal
Please review these next set of changes for gatesgarth. These build cleanly on the autobuilder except for one unrelated failure while running ltp tests: https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1619 Thanks, Anuj The following changes since commit 3a4ac9d028e6d7840660bb9

[OE-core] [gatesgarth][PATCH 02/21] linux-yocto/5.8: update to v5.8.15

2020-11-23 Thread Anuj Mittal
45cfe mmc: sdhci: Workaround broken command queuing on Intel GLK based IRBIS models a8183e677fc1 btrfs: fix filesystem corruption after a device replace f2a5cb2f24ae io_uring: always delete double poll wait entry on match Signed-off-by: Bruce Ashfield Signed-off-by: Richard Purdie

[OE-core] [gatesgarth][PATCH 01/21] bluez5: update to 5.55

2020-11-23 Thread Anuj Mittal
From: Chee Yang Lee Release note: https://github.com/bluez/bluez/commit/5a180f2ec9edfacafd95e5fed20d36fe8e077f07 Signed-off-by: Chee Yang Lee Signed-off-by: Richard Purdie (cherry picked from commit c2895e3e4eabca64cbcc8682e72d25026df5e5f0) Signed-off-by: Anuj Mittal --- .../bluez5

[OE-core] [gatesgarth][PATCH 04/21] linux-yocto/5.8: update to v5.8.16

2020-11-23 Thread Anuj Mittal
picked from commit 869f4a5edf70a88301646356c8d3faa55996e5a9) Signed-off-by: Anuj Mittal --- .../linux/linux-yocto-rt_5.8.bb | 6 ++--- .../linux/linux-yocto-tiny_5.8.bb | 8 +++ meta/recipes-kernel/linux/linux-yocto_5.8.bb | 22 +-- 3 files changed

[OE-core] [gatesgarth][PATCH 05/21] linux-yocto/5.4: update to v5.4.72

2020-11-23 Thread Anuj Mittal
y picked from commit 5da55c543cf38ca1082bc160fd571b3c7c6a40ba) Signed-off-by: Anuj Mittal --- .../linux/linux-yocto-rt_5.4.bb | 6 ++--- .../linux/linux-yocto-tiny_5.4.bb | 8 +++ meta/recipes-kernel/linux/linux-yocto_5.4.bb | 22 +-- 3 files changed,

[OE-core] [gatesgarth][PATCH 03/21] linux-yocto/5.4: update to v5.4.71

2020-11-23 Thread Anuj Mittal
ion 23389cf97aa1 mmc: sdhci: Workaround broken command queuing on Intel GLK based IRBIS models 09c826447cb0 btrfs: fix filesystem corruption after a device replace Signed-off-by: Bruce Ashfield Signed-off-by: Richard Purdie (cherry picked from commit 8f9352782e610775efbb059fbfb5a6b99

[OE-core] [gatesgarth][PATCH 06/21] linux-yocto/5.8: update to v5.8.17

2020-11-23 Thread Anuj Mittal
le() d6cc94152da1 net: dsa: microchip: fix race condition 61d51568e43b mlx4: handle non-napi callers to napi_poll 8536e300622a ipv4: Restore flowi4_oif update before call to xfrm_lookup_route bd0912cd125e ibmveth: Identify ingress large send packets. d673d278f59f ibmveth:

[OE-core] [gatesgarth][PATCH 10/21] linux-yocto/5.8: config cleanup / warnings

2020-11-23 Thread Anuj Mittal
commit bc51dcff0b23827fc05a6203c889154616f48014) Signed-off-by: Anuj Mittal --- meta/recipes-kernel/linux/linux-yocto-rt_5.8.bb | 2 +- meta/recipes-kernel/linux/linux-yocto-tiny_5.8.bb | 2 +- meta/recipes-kernel/linux/linux-yocto_5.8.bb | 2 +- 3 files changed, 3 insertions(+), 3

[OE-core] [gatesgarth][PATCH 11/21] linux-yocto/5.8: update to v5.8.18

2020-11-23 Thread Anuj Mittal
iting task 6e1f770fbc0a netfilter: nftables_offload: KASAN slab-out-of-bounds Read in nft_flow_rule_create Signed-off-by: Bruce Ashfield Signed-off-by: Richard Purdie (cherry picked from commit 8c81b83bfe7cb870eb12c93d0793cad27d1de162) Signed-off-by: Anuj Mittal --- .../linux/linux-yocto-rt_5.8.b

[OE-core] [gatesgarth][PATCH 07/21] linux-yocto/5.4: update to v5.4.73

2020-11-23 Thread Anuj Mittal
: Identify ingress large send packets. b809bead48a3 ibmveth: Switch order of ibmveth_helper calls. Signed-off-by: Bruce Ashfield Signed-off-by: Richard Purdie (cherry picked from commit 13cc1130b778f60330534804153abef4c4833ea4) Signed-off-by: Anuj Mittal --- .../linux/linux-yocto-rt_5.4.bb | 6 ++--- .../linux

[OE-core] [gatesgarth][PATCH 14/21] kernel: relocate copy of module.lds to module compilation task

2020-11-23 Thread Anuj Mittal
ild starts. Signed-off-by: Bruce Ashfield Signed-off-by: Richard Purdie (cherry picked from commit 7d94f9209ebaaf59ea001239a889dd7f928a0e7c) Signed-off-by: Anuj Mittal --- meta/classes/kernel.bbclass | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/classes/kernel.bbcl

[OE-core] [gatesgarth][PATCH 09/21] linux-yocto/5.4: config cleanup / warnings

2020-11-23 Thread Anuj Mittal
commit e8df0a1f9607417f3f308b9ff852e287837b6cdf) Signed-off-by: Anuj Mittal --- meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb | 2 +- meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb | 2 +- meta/recipes-kernel/linux/linux-yocto_5.4.bb | 2 +- 3 files changed, 3 insertions(+), 3 deletions

[OE-core] [gatesgarth][PATCH 16/21] weston-init: Fix incorrect idle-time setting

2020-11-23 Thread Anuj Mittal
From: Alistair Signed-off-by: Alistair Francis Signed-off-by: Richard Purdie (cherry picked from commit 84b3a6b7bd73ebad90865ee4351578c2109358fb) Signed-off-by: Anuj Mittal --- meta/recipes-graphics/wayland/weston-init.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

  1   2   3   4   5   6   7   8   9   10   >