From: Steve Sakoman <steve@sakoman.com>
To: openembedded-core@lists.openembedded.org
Subject: [OE-core][langdale 00/26] Patch review
Date: Thu, 6 Apr 2023 06:01:27 -1000 [thread overview]
Message-ID: <cover.1680796770.git.steve@sakoman.com> (raw)
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/5152
The following changes since commit 6c9ca2f2de98c84d11beccbfde7c1e26cb25dfb6:
scripts/lib/buildstats: handle top-level build_stats not being complete (2023-03-30 04:10:26 -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
Andrew Geissler (1):
filemap.py: enforce maximum of 4kb block size
Arturo Buzarra (1):
run-postinsts: Set dependency for ldconfig to avoid boot issues
Enrico Jörns (7):
oeqa/selftest/cases/runqemu: update imports
oeqa/targetcontrol: fix misspelled RuntimeError
oeqa/targetcontrol: do not set dump_host_cmds redundantly
oeqa/targetcontrol: remove unused imports
oeqa/utils/commands: fix usage of undefined EPIPE
oeqa/utils/commands: remove unused imports
oeqa/utils/qemurunner: replace hard-coded user 'root' in debug output
Fawzi KHABER (2):
package.bbclass: check packages name conflict in do_package
oeqa/selftest/cases/package.py: adding unittest for package rename
conflicts
Jose Quaresma (3):
oeqs/selftest: OESelftestTestContext: replace the os.environ after
subprocess.check_output
oeqa/selftest: OESelftestTestContext: convert relative to full path
when newbuilddir is provided
oeqa/selftest/reproducible: Split different packages from missing
packages output
Khem Raj (1):
Revert "runqemu: Add workaround for APIC hang on pre 4.15 kernels on
qemux86"
Martin Jansa (3):
selftest: runqemu: better check for ROOTFS: in the log
selftest: runqemu: use better error message when asserts fail
runqemu: respect IMAGE_LINK_NAME
Michael Halstead (1):
uninative: Upgrade to 3.9 to include glibc 2.37
Mingli Yu (1):
report-error: catch Nothing PROVIDES error
Richard Purdie (2):
xdg-utils: Add a patch for CVE-2020-27748
xdg-utils: Fix CVE number
Ross Burton (2):
tzdata: upgrade to 2023c
oeqa/runtime: clean up deprecated backslash expansion
Soumya (1):
shadow: Fix can not print full login timeout message
Tobias Hagelborn (1):
lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign
.../packagenameconflict.bb | 10 +
meta/classes-global/package.bbclass | 9 +
meta/classes-recipe/testimage.bbclass | 2 +-
meta/classes/report-error.bbclass | 27 +-
meta/conf/distro/include/yocto-uninative.inc | 10 +-
meta/lib/oe/gpg_sign.py | 27 +-
meta/lib/oeqa/runtime/cases/apt.py | 4 +-
meta/lib/oeqa/runtime/cases/buildcpio.py | 7 +-
meta/lib/oeqa/runtime/cases/systemd.py | 2 +-
meta/lib/oeqa/selftest/cases/package.py | 7 +
meta/lib/oeqa/selftest/cases/reproducible.py | 10 +-
meta/lib/oeqa/selftest/cases/runqemu.py | 16 +-
meta/lib/oeqa/selftest/context.py | 20 +-
meta/lib/oeqa/targetcontrol.py | 8 +-
meta/lib/oeqa/utils/commands.py | 6 +-
meta/lib/oeqa/utils/qemurunner.py | 4 +-
.../run-postinsts/run-postinsts.service | 2 +-
.../0001-Fix-can-not-print-full-login.patch | 41 +++
meta/recipes-extended/shadow/shadow.inc | 1 +
meta/recipes-extended/timezone/timezone.inc | 6 +-
.../timezone/tzcode-native.bb | 2 -
...0001-Fix-C23-related-conformance-bug.patch | 301 ------------------
.../xdg-utils/xdg-utils/CVE-2022-4055.patch | 145 +++++++++
.../xdg-utils/xdg-utils_1.1.3.bb | 1 +
scripts/lib/wic/filemap.py | 7 +
scripts/runqemu | 74 +++--
26 files changed, 371 insertions(+), 378 deletions(-)
create mode 100644 meta-selftest/recipes-test/packagenameconflict/packagenameconflict.bb
create mode 100644 meta/recipes-extended/shadow/files/0001-Fix-can-not-print-full-login.patch
delete mode 100644 meta/recipes-extended/timezone/tzcode/0001-Fix-C23-related-conformance-bug.patch
create mode 100644 meta/recipes-extended/xdg-utils/xdg-utils/CVE-2022-4055.patch
--
2.34.1
next reply other threads:[~2023-04-06 16:02 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-06 16:01 Steve Sakoman [this message]
2023-04-06 16:01 ` [OE-core][langdale 01/26] xdg-utils: Add a patch for CVE-2020-27748 Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 02/26] xdg-utils: Fix CVE number Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 03/26] tzdata: upgrade to 2023c Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 04/26] uninative: Upgrade to 3.9 to include glibc 2.37 Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 05/26] filemap.py: enforce maximum of 4kb block size Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 06/26] oeqs/selftest: OESelftestTestContext: replace the os.environ after subprocess.check_output Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 07/26] oeqa/selftest: OESelftestTestContext: convert relative to full path when newbuilddir is provided Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 08/26] oeqa/selftest/reproducible: Split different packages from missing packages output Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 09/26] run-postinsts: Set dependency for ldconfig to avoid boot issues Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 10/26] package.bbclass: check packages name conflict in do_package Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 11/26] oeqa/selftest/cases/package.py: adding unittest for package rename conflicts Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 12/26] Revert "runqemu: Add workaround for APIC hang on pre 4.15 kernels on qemux86" Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 13/26] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 14/26] oeqa/selftest/cases/runqemu: update imports Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 15/26] oeqa/targetcontrol: fix misspelled RuntimeError Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 16/26] oeqa/targetcontrol: do not set dump_host_cmds redundantly Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 17/26] oeqa/targetcontrol: remove unused imports Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 18/26] oeqa/utils/commands: fix usage of undefined EPIPE Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 19/26] oeqa/utils/commands: remove unused imports Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 20/26] oeqa/utils/qemurunner: replace hard-coded user 'root' in debug output Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 21/26] selftest: runqemu: better check for ROOTFS: in the log Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 22/26] selftest: runqemu: use better error message when asserts fail Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 23/26] oeqa/runtime: clean up deprecated backslash expansion Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 24/26] shadow: Fix can not print full login timeout message Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 25/26] runqemu: respect IMAGE_LINK_NAME Steve Sakoman
2023-04-06 16:01 ` [OE-core][langdale 26/26] report-error: catch Nothing PROVIDES error 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.1680796770.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 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.