The following changes since commit f7766da462905ec67bf549d46b8017be36cd5b2a:
build-appliance-image: Update to kirkstone head revision (2022-09-20 16:07:21 +0100) are available in the Git repository at: git://git.openembedded.org/openembedded-core-contrib stable/kirkstone-next http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/kirkstone-next Alexandre Belloni (1): oeqa/runtime/dnf: fix typo Bruce Ashfield (9): linux-yocto/5.10: update to v5.10.141 linux-yocto/5.10: update to v5.10.143 linux-yocto/5.15: update to v5.15.63 linux-yocto/5.15: update to v5.15.65 linux-yocto/5.15: update to v5.15.68 linux-yocto/5.15: cfg: fix ACPI warnings for -tiny kernel-yocto: allow patch author date to be commit date kern-tools: fix queue processing in relative TOPDIR configurations kern-tools: allow 'y' or 'm' to avoid config audit warnings Dmitry Baryshkov (2): linux-firmware: upgrade 20220708 -> 20220913 linux-firmware: package new Qualcomm firmware Florin Diaconescu (2): expat: upgrade 2.4.7 -> 2.4.8 expat: upgrade 2.4.8 -> 2.4.9 Mikko Rapeli (5): u-boot: switch from append to += in SRC_URI glibc-tests: use += instead of :append go-native: switch from SRC_URI:append to SRC_URI += python3-rfc3986-validator: switch from SRC_URI:append to SRC_URI += linux-libc-headers: switch from SRC_URI:append to SRC_URI += Mingli Yu (1): busybox: add devmem 128-bit support Richard Purdie (3): libpng: upgrade 1.6.37 -> 1.6.38 vim: Upgrade 9.0.453 -> 9.0.541 perf: Fix for recent kernel upgrades Robert Joslyn (1): tzdata: Update from 2022b to 2022c Ruiqiang Hao (2): gcc: add arm-v9 support tune-neoversen2: support tune-neoversen2 base on armv9a Samuli Piippo (2): Revert "gcc-cross-canadian: Add symlink to real-ld alongside other symlinks" gcc-cross-canadian: add default plugin linker Sundeep KOKKONDA (1): glibc: stable 2.35 branch updates. Teoh Jay Shen (2): go: fix CVE-2022-27664 inetutils: fix CVE-2022-39028 - remote DoS vulnerability in inetutils-telnetd Xiangyu Chen (1): ltp: Fix pread02 case trigger the glibc overflow detection pgowda (1): binutils: fix CVE-2022-38126 meta/classes/kernel-yocto.bbclass | 6 +- meta/conf/machine/include/arm/arch-armv9a.inc | 28 ++ .../include/arm/armv9a/tune-neoversen2.inc | 10 +- meta/lib/oeqa/runtime/cases/dnf.py | 2 +- meta/recipes-bsp/u-boot/u-boot_2022.01.bb | 2 +- .../inetutils/inetutils/CVE-2022-39028.patch | 54 ++++ .../inetutils/inetutils_2.2.bb | 1 + .../0001-devmem-add-128-bit-width.patch | 128 ++++++++ meta/recipes-core/busybox/busybox_1.35.0.bb | 1 + .../expat/{expat_2.4.7.bb => expat_2.4.9.bb} | 4 +- meta/recipes-core/glibc/glibc-tests_2.35.bb | 4 +- meta/recipes-core/glibc/glibc-version.inc | 2 +- .../binutils/binutils-2.38.inc | 1 + .../binutils/0016-CVE-2022-38126.patch | 34 ++ meta/recipes-devtools/gcc/gcc-11.3.inc | 5 + .../gcc/gcc-cross-canadian.inc | 3 +- ...rch64-Update-Neoverse-N2-core-defini.patch | 42 +++ .../0002-aarch64-add-armv9-a-to-march.patch | 89 ++++++ ...le-FP16-feature-by-default-for-Armv9.patch | 38 +++ ...rm-add-armv9-a-architecture-to-march.patch | 294 ++++++++++++++++++ meta/recipes-devtools/go/go-1.17.13.inc | 1 + .../go/go-1.18/CVE-2022-27664.patch | 102 ++++++ meta/recipes-devtools/go/go-native_1.17.13.bb | 2 +- .../python/python3-rfc3986-validator_0.1.1.bb | 2 +- ...er-to-avoid-glibc-overflow-detection.patch | 58 ++++ meta/recipes-extended/ltp/ltp_20220121.bb | 1 + meta/recipes-extended/timezone/timezone.inc | 6 +- .../kern-tools/kern-tools-native_git.bb | 2 +- ...20220708.bb => linux-firmware_20220913.bb} | 26 +- .../linux-libc-headers_5.16.bb | 2 +- .../linux/linux-yocto-rt_5.10.bb | 6 +- .../linux/linux-yocto-rt_5.15.bb | 6 +- .../linux/linux-yocto-tiny_5.10.bb | 8 +- .../linux/linux-yocto-tiny_5.15.bb | 6 +- meta/recipes-kernel/linux/linux-yocto_5.10.bb | 24 +- meta/recipes-kernel/linux/linux-yocto_5.15.bb | 26 +- meta/recipes-kernel/perf/perf.bb | 6 + .../{libpng_1.6.37.bb => libpng_1.6.38.bb} | 5 +- meta/recipes-support/vim/vim.inc | 4 +- 39 files changed, 973 insertions(+), 68 deletions(-) create mode 100644 meta/conf/machine/include/arm/arch-armv9a.inc create mode 100644 meta/recipes-connectivity/inetutils/inetutils/CVE-2022-39028.patch create mode 100644 meta/recipes-core/busybox/busybox/0001-devmem-add-128-bit-width.patch rename meta/recipes-core/expat/{expat_2.4.7.bb => expat_2.4.9.bb} (84%) create mode 100644 meta/recipes-devtools/binutils/binutils/0016-CVE-2022-38126.patch create mode 100644 meta/recipes-devtools/gcc/gcc/0001-aarch64-Update-Neoverse-N2-core-defini.patch create mode 100644 meta/recipes-devtools/gcc/gcc/0002-aarch64-add-armv9-a-to-march.patch create mode 100644 meta/recipes-devtools/gcc/gcc/0003-aarch64-Enable-FP16-feature-by-default-for-Armv9.patch create mode 100644 meta/recipes-devtools/gcc/gcc/0004-arm-add-armv9-a-architecture-to-march.patch create mode 100644 meta/recipes-devtools/go/go-1.18/CVE-2022-27664.patch create mode 100644 meta/recipes-extended/ltp/ltp/0001-syscalls-pread02-extend-buffer-to-avoid-glibc-overflow-detection.patch rename meta/recipes-kernel/linux-firmware/{linux-firmware_20220708.bb => linux-firmware_20220913.bb} (96%) rename meta/recipes-multimedia/libpng/{libpng_1.6.37.bb => libpng_1.6.38.bb} (83%) -- 2.25.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#171138): https://lists.openembedded.org/g/openembedded-core/message/171138 Mute This Topic: https://lists.openembedded.org/mt/93965387/21656 Group Owner: openembedded-core+ow...@lists.openembedded.org Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-