Please review this set of changes for mickledore and have comments back by end of day Monday.
Passed a-full on autobuilder: https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/5657 The following changes since commit 4724b382d183a2b3b8426c77c23b368f509411e7: acpica: Update SRC_URI (2023-07-21 07:41:18 -1000) are available in the Git repository at: https://git.openembedded.org/openembedded-core-contrib stable/mickledore-nut http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/mickledore-nut Benjamin Bouvier (1): util-linux: add alternative links for ipcs,ipcrm Bruce Ashfield (3): linux-yocto/6.1: update to v6.1.36 linux-yocto/6.1: update to v6.1.37 linux-yocto/6.1: update to v6.1.38 Jose Quaresma (3): kernel-module-split add systemd modulesloaddir and modprobedir config openssl: add PERLEXTERNAL path to test its existence openssl: use a glob on the PERLEXTERNAL to track updates on the path Khem Raj (1): meson.bbclass: Point to llvm-config from native sysroot Mingli Yu (2): cups: Fix CVE-2023-34241 ruby: Fix CVE-2023-36617 Ovidiu Panait (5): mdadm: fix util-linux ptest dependency mdadm: fix 07revert-inplace ptest mdadm: fix segfaults when running ptests mdadm: skip running known broken ptests mdadm: re-add mdadm-ptest to PTESTS_SLOW Peter Marko (2): libjpeg-turbo: patch CVE-2023-2804 python3: ignore CVE-2023-36632 Quentin Schulz (1): uboot-extlinux-config.bbclass: fix old override syntax in comment Ross Burton (4): pkgconf: update SRC_URI python3: fix missing comma in get_module_deps3.py oeqa/runtime/cases/rpm: fix wait_for_no_process_for_user failure case rootfs_rpm: don't depend on opkg-native for update-alternatives Stéphane Veyret (1): scripts/oe-setup-builddir: copy conf-notes.txt to build dir Wang Mingyu (2): taglib: upgrade 1.13 -> 1.13.1 libwebp: upgrade 1.3.0 -> 1.3.1 Yoann Congal (1): oeqa/selftest/devtool: add unit test for "devtool add -b" Yuta Hayama (1): systemd-systemctl: fix errors in instance name expansion .../kernel-module-split.bbclass | 4 +- meta/classes-recipe/meson.bbclass | 1 + meta/classes-recipe/rootfs_rpm.bbclass | 4 +- .../uboot-extlinux-config.bbclass | 8 +- .../distro/include/ptest-packagelists.inc | 3 +- meta/lib/oeqa/runtime/cases/rpm.py | 4 +- meta/lib/oeqa/selftest/cases/devtool.py | 32 ++ .../openssl/openssl_3.1.1.bb | 4 +- meta/recipes-core/images/core-image-ptest.bb | 1 + .../systemd/systemd-systemctl/systemctl | 2 +- .../util-linux/util-linux_2.38.1.bb | 2 + .../recipes-devtools/pkgconf/pkgconf_1.9.5.bb | 2 +- .../python/python3/get_module_deps3.py | 2 +- .../recipes-devtools/python/python3_3.11.2.bb | 2 + .../ruby/ruby/CVE-2023-36617_1.patch | 56 +++ .../ruby/ruby/CVE-2023-36617_2.patch | 52 ++ meta/recipes-devtools/ruby/ruby_3.2.2.bb | 2 + meta/recipes-extended/cups/cups.inc | 1 + .../cups/cups/CVE-2023-34241.patch | 70 +++ ...anup-validate_geometry_ddf_container.patch | 148 ++++++ ...nter-dereference-in-validate_geometr.patch | 56 +++ ...se-after-close-bug-by-closing-after-.patch | 91 ++++ ...gfault-when-calling-NULL-get_bad_blo.patch | 42 ++ ...Mark-and-ignore-broken-test-failures.patch | 128 +++++ ...dd-broken-files-for-all-broken-tests.patch | 454 ++++++++++++++++++ meta/recipes-extended/mdadm/files/run-ptest | 2 +- meta/recipes-extended/mdadm/mdadm_4.2.bb | 9 +- .../jpeg/files/CVE-2023-2804-1.patch | 103 ++++ .../jpeg/files/CVE-2023-2804-2.patch | 75 +++ .../jpeg/libjpeg-turbo_2.1.5.1.bb | 2 + .../linux/linux-yocto-rt_6.1.bb | 6 +- .../linux/linux-yocto-tiny_6.1.bb | 6 +- meta/recipes-kernel/linux/linux-yocto_6.1.bb | 28 +- .../webp/files/CVE-2023-1999.patch | 55 --- .../{libwebp_1.3.0.bb => libwebp_1.3.1.bb} | 6 +- .../{taglib_1.13.bb => taglib_1.13.1.bb} | 2 +- scripts/oe-setup-builddir | 14 +- 37 files changed, 1373 insertions(+), 106 deletions(-) create mode 100644 meta/recipes-devtools/ruby/ruby/CVE-2023-36617_1.patch create mode 100644 meta/recipes-devtools/ruby/ruby/CVE-2023-36617_2.patch create mode 100644 meta/recipes-extended/cups/cups/CVE-2023-34241.patch create mode 100644 meta/recipes-extended/mdadm/files/0001-DDF-Cleanup-validate_geometry_ddf_container.patch create mode 100644 meta/recipes-extended/mdadm/files/0002-DDF-Fix-NULL-pointer-dereference-in-validate_geometr.patch create mode 100644 meta/recipes-extended/mdadm/files/0003-mdadm-Grow-Fix-use-after-close-bug-by-closing-after-.patch create mode 100644 meta/recipes-extended/mdadm/files/0004-monitor-Avoid-segfault-when-calling-NULL-get_bad_blo.patch create mode 100644 meta/recipes-extended/mdadm/files/0005-mdadm-test-Mark-and-ignore-broken-test-failures.patch create mode 100644 meta/recipes-extended/mdadm/files/0006-tests-Add-broken-files-for-all-broken-tests.patch create mode 100644 meta/recipes-graphics/jpeg/files/CVE-2023-2804-1.patch create mode 100644 meta/recipes-graphics/jpeg/files/CVE-2023-2804-2.patch delete mode 100644 meta/recipes-multimedia/webp/files/CVE-2023-1999.patch rename meta/recipes-multimedia/webp/{libwebp_1.3.0.bb => libwebp_1.3.1.bb} (93%) rename meta/recipes-support/taglib/{taglib_1.13.bb => taglib_1.13.1.bb} (95%) -- 2.34.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#184975): https://lists.openembedded.org/g/openembedded-core/message/184975 Mute This Topic: https://lists.openembedded.org/mt/100397603/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
