public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
From: Steve Sakoman <steve@sakoman.com>
To: openembedded-core@lists.openembedded.org
Subject: [OE-core][dunfell 00/15] Pull request (cover letter only)
Date: Fri, 31 Mar 2023 04:23:20 -1000	[thread overview]
Message-ID: <cover.1680272543.git.steve@sakoman.com> (raw)

The following changes since commit a04b207c4ffa900313a0b5e3079ad2eec7d31f27:

  base-files: Drop localhost.localdomain from hosts file (2023-03-20 16:38:51 -1000)

are available in the Git repository at:

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

Bruce Ashfield (4):
  linux-yocto/5.4: update to v5.4.231
  linux-yocto/5.4: update to v5.4.233
  linux-yocto/5.4: update to v5.4.234
  linux-yocto/5.4: update to v5.4.237

Chee Yang Lee (2):
  qemu: fix multple CVEs
  git: ignore CVE-2023-22743

Joshua Watt (5):
  classes/create-spdx: Backport
  classes/package: Add extended packaged data
  licenses: Add GPL+ licenses to map
  create-spdx: Use gzip for compression
  classes/package: Use gzip for extended package data

Mikko Rapeli (1):
  oeqa rtc.py: skip if read-only-rootfs

Piotr Łobacz (1):
  systemd: fix wrong nobody-group assignment

Richard Purdie (1):
  pybootchartui: Fix python syntax issue

Ross Burton (1):
  lib/resulttool: fix typo breaking resulttool log --ptest

 meta/classes/create-spdx-2.2.bbclass          | 1067 +++
 meta/classes/create-spdx.bbclass              |    8 +
 meta/classes/package.bbclass                  |   39 +-
 meta/conf/licenses.conf                       |    7 +
 meta/files/spdx-licenses.json                 | 5937 +++++++++++++++++
 meta/lib/oe/packagedata.py                    |   11 +
 meta/lib/oe/sbom.py                           |   84 +
 meta/lib/oe/spdx.py                           |  357 +
 meta/lib/oeqa/runtime/cases/rtc.py            |    8 +-
 meta/recipes-core/systemd/systemd_244.5.bb    |    2 +-
 meta/recipes-devtools/git/git.inc             |    2 +
 meta/recipes-devtools/qemu/qemu.inc           |   17 +
 .../qemu/qemu/CVE-2020-15469-1.patch          |   50 +
 .../qemu/qemu/CVE-2020-15469-2.patch          |   69 +
 .../qemu/qemu/CVE-2020-15469-3.patch          |   49 +
 .../qemu/qemu/CVE-2020-15469-4.patch          |   53 +
 .../qemu/qemu/CVE-2020-15469-5.patch          |   53 +
 .../qemu/qemu/CVE-2020-15469-6.patch          |   61 +
 .../qemu/qemu/CVE-2020-15469-7.patch          |   50 +
 .../qemu/qemu/CVE-2020-15469-8.patch          |   44 +
 .../qemu/qemu/CVE-2020-15859.patch            |   39 +
 .../qemu/qemu/CVE-2020-35504.patch            |   51 +
 .../qemu/qemu/CVE-2020-35505.patch            |   42 +
 .../qemu/qemu/CVE-2021-3409-1.patch           |   85 +
 .../qemu/qemu/CVE-2021-3409-2.patch           |  103 +
 .../qemu/qemu/CVE-2021-3409-3.patch           |   71 +
 .../qemu/qemu/CVE-2021-3409-4.patch           |   52 +
 .../qemu/qemu/CVE-2021-3409-5.patch           |   93 +
 .../qemu/qemu/CVE-2022-26354.patch            |   57 +
 .../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 +-
 scripts/lib/resulttool/resultutils.py         |    2 +-
 .../pybootchartgui/pybootchartgui/parsing.py  |    2 +-
 34 files changed, 8574 insertions(+), 27 deletions(-)
 create mode 100644 meta/classes/create-spdx-2.2.bbclass
 create mode 100644 meta/classes/create-spdx.bbclass
 create mode 100644 meta/files/spdx-licenses.json
 create mode 100644 meta/lib/oe/sbom.py
 create mode 100644 meta/lib/oe/spdx.py
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15469-1.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15469-2.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15469-3.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15469-4.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15469-5.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15469-6.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15469-7.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15469-8.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15859.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-35504.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-35505.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2021-3409-1.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2021-3409-2.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2021-3409-3.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2021-3409-4.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2021-3409-5.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2022-26354.patch

-- 
2.34.1



             reply	other threads:[~2023-03-31 14:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-31 14:23 Steve Sakoman [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-11-13  2:50 [OE-core][dunfell 00/15] Pull request (cover letter only) Steve Sakoman
2021-10-07  0:00 Steve Sakoman

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.1680272543.git.steve@sakoman.com \
    --to=steve@sakoman.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox