public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [OE-core][langdale 00/14] Patch review
@ 2023-03-30 21:13 Steve Sakoman
  2023-03-30 21:13 ` [OE-core][langdale 01/14] python3-setuptools: fix for CVE-2022-40897 Steve Sakoman
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Steve Sakoman @ 2023-03-30 21:13 UTC (permalink / raw)
  To: openembedded-core

Please review this set of patches for langdale and have comments back by
end of day Monday.

Passed a-full on autobuilder:

https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/5122

With the exception of a known intermittent autobuilder issue on oe-selftest-armhost:

https://bugzilla.yoctoproject.org/show_bug.cgi?id=14969

which passed on subsequent re-test:

https://autobuilder.yoctoproject.org/typhoon/#/builders/127/builds/1201

The following changes since commit a0ef4386d37f84e8f169cbe3cfa9307010b89bbd:

  systemd: fix wrong nobody-group assignment (2023-03-21 06:55:30 -1000)

are available in the Git repository at:

  https://git.openembedded.org/openembedded-core-contrib stable/langdale-nut
  http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/langdale-nut

Bruce Ashfield (4):
  linux-yocto/5.15: update to v5.15.98
  linux-yocto/5.15: update to v5.15.103
  lttng-modules: update to v2.13.9
  kernel-devsrc: fix mismatched compiler warning

Geoffrey GIRY (2):
  cve-extra-exclusions: ignore inapplicable linux-yocto CVEs
  cve-check: Fix false negative version issue

Martin Jansa (2):
  selftest: devtool: set BB_HASHSERVE_UPSTREAM when setting
    SSTATE_MIRROR
  bmap-tools: switch to main branch

Narpat Mali (1):
  python3-setuptools: fix for CVE-2022-40897

Peter Marko (1):
  gcc-shared-source: do not use ${S}/.. in deploy_source_date_epoch

Randy MacLeod (1):
  vim: upgrade 9.0.1403 -> 9.0.1429

Ross Burton (1):
  scripts/lib/buildstats: handle top-level build_stats not being
    complete

Siddharth Doshi (1):
  openssl: Security fix for CVE-2023-0464, CVE-2023-0465, CVE-2023-0466

Wang Mingyu (1):
  xcb-proto: Fix install conflict when enable multilib.

 meta/classes/cve-check.bbclass                |   5 +-
 .../distro/include/cve-extra-exclusions.inc   | 212 +++++++++++++++++
 meta/lib/oe/cve_check.py                      |  39 +++
 meta/lib/oeqa/selftest/cases/cve_check.py     |  19 ++
 meta/lib/oeqa/selftest/cases/devtool.py       |   1 +
 .../openssl/openssl/CVE-2023-0464.patch       | 225 ++++++++++++++++++
 .../openssl/openssl/CVE-2023-0465.patch       |  56 +++++
 .../openssl/openssl/CVE-2023-0466.patch       |  50 ++++
 .../openssl/openssl_3.0.8.bb                  |   3 +
 .../gcc/gcc-shared-source.inc                 |   4 +-
 ...-of-whitespace-to-search-backtrack.-.patch |  31 +++
 .../python/python3-setuptools_65.0.2.bb       |   4 +-
 ...nstall-conflict-when-enable-multilib.patch |  32 +++
 .../xorg-proto/xcb-proto_1.15.2.bb            |   1 +
 .../linux/cve-exclusion_5.15.inc              |  90 +++++++
 meta/recipes-kernel/linux/kernel-devsrc.bb    |   7 +
 .../linux/linux-yocto-rt_5.15.bb              |   9 +-
 .../linux/linux-yocto-tiny_5.15.bb            |   9 +-
 meta/recipes-kernel/linux/linux-yocto_5.15.bb |  29 ++-
 ...ccessor-helpers-into-accessors.h-v6..patch |  45 ----
 .../fix-jbd2-upper-bound-for-v5.10.163.patch  |  52 ----
 ...e-the-correct-print-format-v5.10.163.patch |  61 -----
 ...ules_2.13.8.bb => lttng-modules_2.13.9.bb} |   5 +-
 .../bmap-tools/bmap-tools_git.bb              |   2 +-
 meta/recipes-support/vim/vim.inc              |   4 +-
 scripts/lib/buildstats.py                     |   1 +
 26 files changed, 808 insertions(+), 188 deletions(-)
 create mode 100644 meta/recipes-connectivity/openssl/openssl/CVE-2023-0464.patch
 create mode 100644 meta/recipes-connectivity/openssl/openssl/CVE-2023-0465.patch
 create mode 100644 meta/recipes-connectivity/openssl/openssl/CVE-2023-0466.patch
 create mode 100644 meta/recipes-devtools/python/python3-setuptools/0001-Limit-the-amount-of-whitespace-to-search-backtrack.-.patch
 create mode 100644 meta/recipes-graphics/xorg-proto/xcb-proto/0001-Fix-install-conflict-when-enable-multilib.patch
 create mode 100644 meta/recipes-kernel/linux/cve-exclusion_5.15.inc
 delete mode 100644 meta/recipes-kernel/lttng/lttng-modules/0001-fix-btrfs-move-accessor-helpers-into-accessors.h-v6..patch
 delete mode 100644 meta/recipes-kernel/lttng/lttng-modules/fix-jbd2-upper-bound-for-v5.10.163.patch
 delete mode 100644 meta/recipes-kernel/lttng/lttng-modules/fix-jbd2-use-the-correct-print-format-v5.10.163.patch
 rename meta/recipes-kernel/lttng/{lttng-modules_2.13.8.bb => lttng-modules_2.13.9.bb} (83%)

-- 
2.34.1



^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2023-03-30 21:14 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-30 21:13 [OE-core][langdale 00/14] Patch review Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 01/14] python3-setuptools: fix for CVE-2022-40897 Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 02/14] openssl: Security fix for CVE-2023-0464, CVE-2023-0465, CVE-2023-0466 Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 03/14] cve-extra-exclusions: ignore inapplicable linux-yocto CVEs Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 04/14] cve-check: Fix false negative version issue Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 05/14] linux-yocto/5.15: update to v5.15.98 Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 06/14] linux-yocto/5.15: update to v5.15.103 Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 07/14] lttng-modules: update to v2.13.9 Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 08/14] vim: upgrade 9.0.1403 -> 9.0.1429 Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 09/14] kernel-devsrc: fix mismatched compiler warning Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 10/14] selftest: devtool: set BB_HASHSERVE_UPSTREAM when setting SSTATE_MIRROR Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 11/14] bmap-tools: switch to main branch Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 12/14] xcb-proto: Fix install conflict when enable multilib Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 13/14] gcc-shared-source: do not use ${S}/.. in deploy_source_date_epoch Steve Sakoman
2023-03-30 21:13 ` [OE-core][langdale 14/14] scripts/lib/buildstats: handle top-level build_stats not being complete Steve Sakoman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox