From: "Anuj Mittal" <anuj.mittal@intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [gatesgarth][PATCH 00/19] gatesgarth review request
Date: Tue, 17 Nov 2020 23:35:49 +0800 [thread overview]
Message-ID: <cover.1605626675.git.anuj.mittal@intel.com> (raw)
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 the test passed
in other configurations. Probably similar to:
https://bugzilla.yoctoproject.org/show_bug.cgi?id=14029
Thanks,
Anuj
The following changes since commit a1db1e71129c3e67ddd9dbef21e1c5eb31552e00:
grub: clean up CVE patches (2020-11-12 11:54:28 +0800)
are available in the Git repository at:
git://push.openembedded.org/openembedded-core-contrib anujm/gatesgarth
Alexander Kanavin (2):
clutter-gst-3.0: do not call out to host gstreamer plugin scanner
conf-notes.txt: mention more important images than just sato
Bruce Ashfield (1):
kernel: provide module.lds for out of tree builds in v5.10+
Denys Zagorui (1):
binutils: reproducibility: reuse debug-prefix-map for stabs
Diego Santa Cruz (1):
freetype: fix CVE-2020-15999, backport from 2.10.4
Gratian Crisan (1):
kernel-module-split.bbclass: identify kernel modconf files as
configuration files
Jose Quaresma (1):
gstreamer1.0: warn the user when something is wrong with GstBufferPool
Khem Raj (2):
lrzsz: Use Cross AR during compile
gawk: Avoid using host ar during cross compile
Konrad Weihmann (3):
oeqa/core/context: expose results as variable
oeqa/core/context: initialize _run_end_time
testimage: print results for interrupted runs
Mark Jonas (1):
libbsd: Remove BSD-4-Clause from main package
Matt Madison (1):
layer.conf: fix syntax error in PATH setting
Nathan Rossi (1):
diffstat: add nativesdk to BBCLASSEXTEND
Richard Purdie (3):
ptest-runner: Fix license as it contains 'or later' clause
libdnf: Fix license as it contains 'or later' clause
alsa-utils: Fix license to GPLv2 only
Steve Sakoman (1):
openssh: whitelist CVE-2014-9278
meta/classes/kernel-module-split.bbclass | 1 +
meta/classes/kernel.bbclass | 1 +
meta/classes/testimage.bbclass | 19 ++++---
meta/conf/conf-notes.txt | 2 +
meta/conf/layer.conf | 2 +-
meta/lib/oeqa/core/context.py | 4 ++
...mpilation-using-autoconf-detected-AR.patch | 36 +++++++++++++
meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb | 1 +
.../openssh/openssh_8.3p1.bb | 4 ++
.../binutils/binutils-2.35.inc | 1 +
...oducibility-for-stabs-debugging-data.patch | 35 +++++++++++++
.../diffstat/diffstat_1.63.bb | 2 +
meta/recipes-devtools/libdnf/libdnf_0.48.0.bb | 2 +-
.../0001-Use-cross-AR-during-compile.patch | 35 +++++++++++++
meta/recipes-extended/gawk/gawk_5.1.0.bb | 1 +
.../clutter/clutter-gst-3.0.inc | 2 +
...-sfnt-Fix-heap-buffer-overflow-59308.patch | 51 +++++++++++++++++++
.../freetype/freetype_2.10.2.bb | 1 +
meta/recipes-kernel/linux/kernel-devsrc.bb | 6 +++
meta/recipes-multimedia/alsa/alsa-utils.inc | 3 +-
...size-in-reset-when-maxsize-is-larger.patch | 49 ++++++++++++++++++
.../gstreamer/gstreamer1.0_1.16.3.bb | 1 +
meta/recipes-support/libbsd/libbsd_0.10.0.bb | 3 +-
.../ptest-runner/ptest-runner_2.4.0.bb | 2 +-
24 files changed, 251 insertions(+), 13 deletions(-)
create mode 100644 meta/recipes-bsp/lrzsz/lrzsz-0.12.20/0001-Fix-cross-compilation-using-autoconf-detected-AR.patch
create mode 100644 meta/recipes-devtools/binutils/binutils/0017-gas-improve-reproducibility-for-stabs-debugging-data.patch
create mode 100644 meta/recipes-extended/gawk/gawk/0001-Use-cross-AR-during-compile.patch
create mode 100644 meta/recipes-graphics/freetype/freetype/0001-sfnt-Fix-heap-buffer-overflow-59308.patch
create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0/0005-bufferpool-only-resize-in-reset-when-maxsize-is-larger.patch
--
2.28.0
next reply other threads:[~2020-11-17 15:36 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-17 15:35 Anuj Mittal [this message]
2020-11-17 15:35 ` [gatesgarth][PATCH 01/19] freetype: fix CVE-2020-15999, backport from 2.10.4 Anuj Mittal
2020-11-17 15:35 ` [gatesgarth][PATCH 02/19] ptest-runner: Fix license as it contains 'or later' clause Anuj Mittal
2020-11-17 15:35 ` [gatesgarth][PATCH 03/19] libdnf: " Anuj Mittal
2020-11-17 15:35 ` [gatesgarth][PATCH 04/19] alsa-utils: Fix license to GPLv2 only Anuj Mittal
2020-11-17 15:35 ` [gatesgarth][PATCH 05/19] kernel-module-split.bbclass: identify kernel modconf files as configuration files Anuj Mittal
2020-11-17 15:35 ` [gatesgarth][PATCH 06/19] clutter-gst-3.0: do not call out to host gstreamer plugin scanner Anuj Mittal
2020-11-17 15:35 ` [gatesgarth][PATCH 07/19] conf-notes.txt: mention more important images than just sato Anuj Mittal
2020-11-17 15:35 ` [gatesgarth][PATCH 08/19] openssh: whitelist CVE-2014-9278 Anuj Mittal
2020-11-17 15:35 ` [gatesgarth][PATCH 09/19] oeqa/core/context: expose results as variable Anuj Mittal
2020-11-17 15:35 ` [gatesgarth][PATCH 10/19] oeqa/core/context: initialize _run_end_time Anuj Mittal
2020-11-17 15:36 ` [gatesgarth][PATCH 11/19] testimage: print results for interrupted runs Anuj Mittal
2020-11-17 15:36 ` [gatesgarth][PATCH 12/19] binutils: reproducibility: reuse debug-prefix-map for stabs Anuj Mittal
2020-11-17 15:36 ` [gatesgarth][PATCH 13/19] lrzsz: Use Cross AR during compile Anuj Mittal
2020-11-17 15:36 ` [gatesgarth][PATCH 14/19] gawk: Avoid using host ar during cross compile Anuj Mittal
2020-11-17 15:36 ` [gatesgarth][PATCH 15/19] layer.conf: fix syntax error in PATH setting Anuj Mittal
2020-11-17 15:36 ` [gatesgarth][PATCH 16/19] libbsd: Remove BSD-4-Clause from main package Anuj Mittal
2020-11-17 15:36 ` [gatesgarth][PATCH 17/19] kernel: provide module.lds for out of tree builds in v5.10+ Anuj Mittal
2020-11-17 17:05 ` [OE-core] " Bruce Ashfield
2020-11-17 15:36 ` [gatesgarth][PATCH 18/19] gstreamer1.0: warn the user when something is wrong with GstBufferPool Anuj Mittal
2020-11-17 15:36 ` [gatesgarth][PATCH 19/19] diffstat: add nativesdk to BBCLASSEXTEND Anuj Mittal
2020-11-17 16:25 ` [OE-core] [gatesgarth][PATCH 00/19] gatesgarth review request Martin Jansa
2020-11-17 23:19 ` Anuj Mittal
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1605626675.git.anuj.mittal@intel.com \
--to=anuj.mittal@intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.