<feed xmlns='http://www.w3.org/2005/Atom'>
<title>BMC/tmp/openbmc.git/poky, branch fplus</title>
<subtitle>OpenBMC Distribution (mirror)</subtitle>
<id>https://git.radix-linux.su/BMC/tmp/openbmc.git/atom?h=fplus</id>
<link rel='self' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/atom?h=fplus'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/'/>
<updated>2025-09-08T11:43:00+00:00</updated>
<entry>
<title>update-alternatives: suppress systemd WARNING: NOT adding alternative provide /usr/sbin/init</title>
<updated>2025-09-08T11:43:00+00:00</updated>
<author>
<name>Andrey V.Kosteltsev</name>
<email>a.kosteltsev@fplustech.ru</email>
</author>
<published>2025-09-08T11:43:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=0b53eb8ac3bcea0e0d4fcc03bf5d7a4613af0d2a'/>
<id>urn:sha1:0b53eb8ac3bcea0e0d4fcc03bf5d7a4613af0d2a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>qemu-system-native: disable VNC due to build error related to use system libraries instead of own libraryes</title>
<updated>2025-09-08T07:31:22+00:00</updated>
<author>
<name>Andrey V.Kosteltsev</name>
<email>a.kosteltsev@fplustech.ru</email>
</author>
<published>2025-09-08T07:31:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=f4dd93bc64d5ca52abaf128a3cb8dd34050cabf4'/>
<id>urn:sha1:f4dd93bc64d5ca52abaf128a3cb8dd34050cabf4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Suppress '/home/root' BB warning</title>
<updated>2025-09-08T07:28:57+00:00</updated>
<author>
<name>Andrey V.Kosteltsev</name>
<email>a.kosteltsev@fplustech.ru</email>
</author>
<published>2025-09-08T07:28:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=1bfc97b3f6564ba0bb7a62f645a75532b620f5a5'/>
<id>urn:sha1:1bfc97b3f6564ba0bb7a62f645a75532b620f5a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>systemd.bbclass: deduplicate template and instance lines in preset file</title>
<updated>2025-08-22T08:16:04+00:00</updated>
<author>
<name>Khang D Nguyen</name>
<email>khangng@os.amperecomputing.com</email>
</author>
<published>2025-08-19T02:40:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=21b3dd060a30c0bb0fc945ed61963455aca8dcad'/>
<id>urn:sha1:21b3dd060a30c0bb0fc945ed61963455aca8dcad</id>
<content type='text'>
If SYSTEMD_SERVICE contains both template and instance names, the
preset file will contain two lines: one describing the template name
and one describing the instance names.

This is problematic because systemd.preset only use the first matching
one [1], leading to the instances not getting enabled.

For example, openbmc's obmc-console recipe has the following
final SYSTEMD_SERVICE variable:

```
SYSTEMD_SERVICE:obmc-console = " \
obmc-console@.service \
obmc-console-ssh@.service \
obmc-console-ssh@2200.service \
"
```

The resulting preset file will contain lines with the same name:

```
enable obmc-console@.service
enable obmc-console-ssh@.service
enable obmc-console-ssh@.service 2200
```

Fix this by interpreting the template name as a special case of empty
instances.

Tested: preset files are generated correctly:

```
enable obmc-console@.service
enable obmc-console-ssh@.service 2200
```

[1]: https://www.freedesktop.org/software/systemd/man/257/systemd.preset.html#Preset%20File%20Format

Fixes: f33d9b1f434e ("systemd.bbclass: generate preset for templates")
Signed-off-by: Khang D Nguyen &lt;khangng@os.amperecomputing.com&gt;
(cherry picked from commit 7cdf10840c200a327b6336775698342af7212ee4)
Change-Id: I6a6a6964fd8715e6916d68f9b56b35fb9f83f33d
</content>
</entry>
<entry>
<title>systemd.bbclass: generate preset for templates</title>
<updated>2025-07-23T07:25:47+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2025-05-28T20:43:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=66be983025289e1b4086ad5680ed649e28c7aee0'/>
<id>urn:sha1:66be983025289e1b4086ad5680ed649e28c7aee0</id>
<content type='text'>
There was a regression introduced by the change to use
systemd-systemctl-native rather than a python fake implementation,
which caused template units to not be properly enabled when set in
the SYSTEMD_SERVICE variable.  Through investigation, it seems that
the best way to re-enable template instances is to handle them
explicitly in the systemd.bbclass and enable them with `preset`, like
most units are handled[1,2].

Per the systemd.preset manpage, the format for template units is
different than for regular units[3].  We need to coalesce all the
template instances onto a single line and emit them as an additional
space-deliminated argument.

Ran this against openbmc's phosphor-ipmi-net recipe and generated
the following preset file:
```
$ cat packages-split/phosphor-ipmi-net/usr/lib/systemd/system-preset/98-phosphor-ipmi-net.preset
enable phosphor-ipmi-net@.service eth0
enable phosphor-ipmi-net@.socket eth0
```

[1]: https://lore.kernel.org/openembedded-core/Z2ch.1747051947055246176.oktf@lists.openembedded.org/
[2]: https://lore.kernel.org/openembedded-core/aDdoTVtCmElpURYD@heinlein/
[3]: https://www.freedesktop.org/software/systemd/man/latest/systemd.preset.html

Fixes: 7a580800db39 ("systemd: Build the systemctl executable")
Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
(cherry picked from commit 56fd00726aabdcba9d1439d9956b7fd398762a5b)
Change-Id: I1ce41c3c860b0bb800340809916e8757a0b4d436
</content>
</entry>
<entry>
<title>poky: subtree update:c49684b48b..1e811f9e70</title>
<updated>2025-07-23T07:25:47+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2025-05-30T19:56:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=c9537f57ab488bf5d90132917b0184e2527970a5'/>
<id>urn:sha1:c9537f57ab488bf5d90132917b0184e2527970a5</id>
<content type='text'>
Adrian Freihofer (13):
      ref-manual: cover UBOOT_ENV variables
      oe-selftest: drop redundant imports
      linux-fitimage: sign setup sections
      uboot, kernel: use hex address for UBOOT_ENTRYPOINT
      oe-selftest: adapt u-boot tests to latest changes
      oe-selftest: fitimage sort tests
      oe-selftest: fitimage cleanup
      oe-selftest: fitimage add more kernel tests
      oe-selftest: fitimage improve bb_vars access
      oe-selftest: fitimage add more u-boot tests
      migration-guides: cover FIT_UBOOT_ENV
      ref-manual: variable FIT_SIGN_INDIVIDUAL mix-and-match attacks
      ref-manual: kernel-fitimage.bbclass does not use SPL_SIGN_KEYNAME

Alejandro Hernandez Samaniego (1):
      newlib: Upgrade 4.4.0 -&gt; 4.5.0

Aleksandar Nikolic (2):
      scripts/install-buildtools: Update to 5.1.2
      scripts/install-buildtools: Update to 5.2

Alex Kiernan (14):
      boost: Use PN/BPN for naming of packages
      scdoc: Import from meta-wayland
      scdoc: Upgrade 1.11.2 -&gt; 1.11.3
      selftest: gdbserver: Adjust regex for change to output
      kmod: Upgrade 33 -&gt; 34.1
      eudev: Drop --output=... from kmod call in init script
      connman: Merge .inc into .bb
      connman: Delete patches for gold and MIPS binutils fix
      connman: Move ppp from DEPENDS to PACKAGECONFIG
      connman: Set --runstatedir to ${runtimedir}
      connman: Create ${sysconfdir} for systemd images
      connman: Add iptables/ip6tables-save to ac_cv_path
      connman: Mark iptables/nftables mutually incompatible
      connman: Set dns-backend automatically

Alexander Kanavin (37):
      classes/insane: do not leak host uid/gid into package_qa sstate signatures
      bitbake: lib/bb/cooker.py: produce an error when BB_HASHSERVE_UPSTREAM cannot be used due to missing python module
      systemd-systemctl-native: correctly set PV
      python3-roman-numbers-py: correct upstream version check
      gnupg: follow odd-even scheme in upstream version checks
      gcr: exclude x.y.9z pre-releases from upstream version check
      scripts/install-buildtools: add an option to specify where downloads go
      scripts/install-buildtools: write download URLs to files for traceability
      glib-2.0: address ptest failures
      meta/lib/oe/recipeutils.py: handle fetcher errors when checking for new commits
      libsdl2: only include 2.x releases in version check
      ppp: remove erroneous generated header from the source tree
      mesa: correct download location
      mesa-demos: update 8.5.0 -&gt; 9.0.0
      qemu: fix upstream version check
      nfs-utils: replace problematic pending patch with upstream submission
      perl-cross: submit determinism.patch upstream
      tcl8: mark pending patches as inappropriate
      elfutils: remove 0001-libasm-may-link-with-libbz2-if-found.patch
      elfutils: remove 0001-dso-link-change.patch
      ca-certificates: submit sysroot patch upstream, drop default-sysroot.patch
      vulkan-samples: rewrite and submit reproducubility patch upstream
      tcl: provide a description for shared library name fixup patch
      xserver-xorg: submit 0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch upstream
      apt: remove 0001-Hide-fstatat64-and-prlimit64-defines-on-musl.patch
      mdadm: fetch from git
      mdadm: update 4.3 -&gt; 4.4
      ifupdown: mark defn2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch as Inappropriate
      gst-devtools: submit 0001-connect-has-a-different-signature-on-musl.patch upstream
      vim: mark no-path-adjust.patch as Inappropriate
      avahi: mark initscript.patch as Inappropriate
      apr: drop libtoolize_check.patch
      numactl: mark Fix-the-test-output-format.patch as Inappropriate
      tcf-agent: update SRC_URI to https://gitlab.eclipse.org
      libunwind: use github-releases class to determine latest versions
      libarchive: correct upstream version check
      clang: fix upstream version check

Alexandre Marques (2):
      bitbake: hashserv: Add `gc-mark-stream` command for batch hash marking
      scripts: Add clean-hashserver-database script

Alexis Cellier (1):
      systemd: Fix man page indices generation

Alon Bar-Lev (1):
      module.bbclass: add KBUILD_EXTRA_SYMBOLS to install

Alper Ak (3):
      ref-manual/variables.rst: document INHIBIT_AUTOTOOLS_DEPS
      ref-manual/variables.rst: document INHIBIT_DEFAULT_RUST_DEPS
      ref-manual/variables.rst: document INHIBIT_UPDATERCD_BBCLASS

Andrew Kreimer (1):
      manuals: remove repeated word

Antonin Godard (70):
      contributor-guide/submit-changes: add policy on AI generated code
      Add favicon for the documentation html
      bitbake: doc: bitbake-user-manual-ref-variables: document BB_CURRENT_MC
      dev-manual: move multiconfig documentation to its own document
      variables.rst: add a reference to BB_CURRENT_MC from bbdocs
      migration-5.2: fix references to BB_CURRENT_MC
      dev-manual/multiconfig: rename to use Multiconfig term
      dev-manual/multiconfig: improve the current doc
      dev-manual/multiconfig: add suggested best practices and baremetal sections
      ref-manual/variables: document KMETA* and KCONF_AUDIT* variables
      bitbake: doc: bitbake-user-manual-metadata: document the include_all directive
      native: follow BUILD_* definitions for OBJCOPY, OBJDUMP and READELF
      overview-manual: convert source-fetching.png to svg and fix UNPACKDIR
      overview-manual: convert patching.png to svg
      overview-manual: convert configuration-compile-autoreconf.png to svg
      overview-manual: convert analysis-for-package-splitting.png to svg
      overview-manual/concepts: remove PR from the build dir list
      overview-manual/concepts: add UNPACKDIR in the directory description
      migration-guides/release-notes-5.2: add known issue on stalled NVD
      ref-manual/classes.rst: document the ptest-python-pytest class and variables
      ref-manual/variables.rst: WATCHDOG_TIMEOUT: fix recipe name
      ref-manual/variables.rst: document the WATCHDOG_RUNTIME_SEC variable
      ref-manual/variables.rst: document the MOUNT_GROUP variable
      ref-manual/features.rst: drop ld-is-gold
      ref-manual/variables.rst: document the MESON_INSTALL_TAGS
      ref-manual/variables.rst: document the NVD_DB_VERSION variable
      ref-manual/variables.rst: document autotools class related variables
      migration-guides/migration-5.2.rst: add information about autotools changes
      ref-manual/variables.rst: add a link for BB_USE_HOME_NPMRC
      migration-guides/migration-5.2: update for upcoming 5.2 release
      migration-guides/release-notes-5.2: update for upcoming 5.2 release
      classes/spdx-*.bbclass: move spdx2 specific variables out of spdx-common class
      migration-guides/release-notes-5.2.rst: add the list of contributors
      migration-guides/release-notes-5.2.rst: add recipe upgrades
      migration-guides/release-notes-5.2.rst: add LICENSE recipe changes
      migration-guides/release-notes-5.2.rst: add security fixes
      migration-guides/release-notes-5.2.rst: add an entry for addfragments
      migration-guides/migration-5.2.rst: final update for 5.2
      ref-manual/system-requirements.rst: update list of supported distributions
      poky.yaml.in: bump minimum required Python version to 3.9
      ref-manual/variables.rst: document the GRUB_MKIMAGE_OPTS variable
      ref-manual/variables.rst: document the SPDX_PACKAGE_VERSION variable
      migration-guides/{migration,release-note}-5.2: update for 5.2 release
      ref-manual/classes: ptest-python-pytest: improve the current documentation
      migration-guides/{migration,release-note}-5.2: improvements and fixes
      documentation/conf.py: define a manpage url
      ref-manual/variables.rst: add manpage links for toolchain variables
      ref-manual/variables.rst: add missing documentation for BUILD_* variables
      ref-manual/variables.rst: document missing SDK_*_ARCH variables
      ref-manual/variables.rst: document HOST_*_ARCH variables
      ref-manual/variables.rst: HOST_CC_ARCH: fix wrong SDK reference
      bitbake: doc/bitbake-user-manual-metadata.rst: fix python task example
      ref-manual/variables.rst: improve the PKGV documentation
      migration-guides/{migration,release-note}-5.2: update for 5.2 release
      poky.yaml: introduce DISTRO_LATEST_TAG
      Fix dead links that use the DISTRO macro
      migration-guides/{migration,release-notes}-5.2.rst: notes for systemd pni-names
      migration-guides/release-notes-5.2.rst: fix badly formatted gstreamer entries
      migration-guides/release-notes-5.2.rst: add missing cves
      bitbake: utils: format and improve docstrings
      bitbake: lib/bb: format and improve logging docstrings
      bitbake: doc: add a new Library Functions document
      bitbake: doc: bitbake-user-manual-metadata: provide link to new doc
      linux-firmware: fix zst install suffix
      scripts/cve-json-to-text.py: remove unused options
      scripts/cve-json-to-text.py: fix missing -o option
      test-manual/intro: remove Buildbot version used
      ref-manual/release-process: update releases.svg
      migration-guides: add placeholders for 5.3
      brief-yoctoprojectqs/index.rst: replace removed macro

Archana Polampalli (1):
      ffmpeg: upgrade 7.1 -&gt; 7.1.1

Balaji Pothunoori (1):
      dhcpcd: fix for unexpected syscall 135 for 10.1.0 version

Bastian Krause (1):
      systemd: move sysusers.d systemd-remote to PN-journal-remote

Benjamin Szőke (1):
      bitbake: runqueue: Optimize loop in scenequeue data construction

Bin Lan (1):
      babeltrace2: upgrade 2.0.6 -&gt; 2.1.0

Bruce Ashfield (26):
      linux-yocto-dev: bump to v6.14
      perf: enable zstd in default PACKAGECONFIG
      linux-yocto/6.12: configuration graphics, I2C and warnings
      linux-yocto/6.12: genericarm64: set the DMA Contiguous Memory Allocator size to 32MB
      linux-yocto/6.12: update to v6.12.17
      linux-yocto/6.12: update to v6.12.18
      linux-yocto/6.12: update to v6.12.19
      linux-yocto/6.12: yaffs2: fix module build
      mips: Add '-std=gnu11' to vdso CFLAGS
      linux-yocto/6.12: config: add pmem to genericarm64
      kern-tools: allow comments after configuration options
      linux-yocto/6.12: update to v6.12.22
      linux-yocto/6.12: update to v6.12.23
      linux-yocto/6.12: cfg: Include iommu.scc for Arrowlake boot support
      linux-yocto/6.12: cfg: fix iommu configuration for -tiny kernel
      kernel-yocto: allow annotated options to be modified
      linux-yocto-dev: update to v6.15
      linux-yocto/6.12: update to v6.12.24
      linux-yocto/6.12: update to v6.12.25
      linux-yocto/6.12: bsp/genericarm64: modular configuration updates
      linux-yocto/6.12: update to v6.12.27
      linux-yoto/6.12: bsp/arm: fix CONFIG_CRYPTO_LIB_CHACHA
      linux-yocto/6.12: update to v6.12.28
      linux-yocto/6.12: update to v6.12.29
      linux-yocto/6.12: riscv config sync
      linux-yocto/6.12: update to v6.12.30

Changqing Li (14):
      Revert "python3-ctypes: depend on ldconfig only if distro-feature set"
      python3: update python3-ctypes RDEPENDS to RRECOMMENDS
      babeltrace: extend to nativesdk
      babeltrace2: extend to nativesdk
      patch.py: set commituser and commitemail for addNote
      initscripts: add function log_success_msg/log_failure_msg/log_warning_msg
      buildtools-tarball: move setting of envvars to respective envfile
      buildtools-tarball: add envvars into BB_ENV_PASSTHROUGH_ADDITIONS
      buildtools-tarball: Make buildtools respects host CA certificates
      icu: set ac_cv_path_install to ensure install tool reproducibility
      libsoup-2.4: fix CVE-2025-32911
      send-error-report: make output align with original design when debug disabled
      libsoup-2.4: fix build failure
      libsoup-2.4: fix CVE-2024-52532

Chen Qi (26):
      sysstat: upgrade from 12.7.6 to 12.7.7
      shadow: upgrade from 4.17.1 to 4.17.2
      diffutils: upgrade from 3.10 to 3.11
      coreutils: upgrade from 9.5 to 9.6
      glibc: fix header file conflict in case of multilib
      util-linux/util-linux-libuuid: upgrade from 2.40.2 to 2.40.4
      systemd/systemd-boot: upgrade from 257.1 to 257.3
      debugedit: fix build failure when enabling DEBUG_BUILD
      bitbake: data_smart: fix indentation
      bitbake: data_smart.py: remove unnecessary ? from __expand_var_regexp__
      bitbake: data_smart.py: simple clean up
      bitbake: data_smart.py: clear expand_cache in _setvar_update_overridevars
      mc: fix buildpath QA regarding unzip
      time: fix runtime version from UNKNOWN to 1.9
      classes/recipes: remove unnecessary qemu inherit and use qemuwrapper-cross
      cpio: fix ptest-runner dependency
      nativesdk.bbclass: handle PACKAGE_WRITE_DEPS
      image/populate_sdk.bbclass: drop qemuwrapper-cross from DEPENDS
      lib/classes/conf: refactor qemu.bbclass functions into library functions
      busybox: fix CVE-2023-39810
      bitbake: fetch2/git: fix shallow clone for tag containing slash
      bitbake: lib/bb/tests/fetch: add a test case to ensure git shallow fetch works for tag containing slash
      diffutils: upgrade from 3.11 to 3.12
      coreutils: upgrade from 9.6 to 9.7
      util-linux/util-linux-libuuid: upgrade from 2.40.4 to 2.41
      shadow: upgrade from 4.17.3 to 4.17.4

Christian Lindeberg (1):
      bitbake: fetch2/gomod: Fix mirroring problem

Christos Gavros (6):
      skeletoninit: remove broken link
      oeqa/selftest: add a newline in local.conf (newbuilddir)
      go: Check if GO_IMPORT is set in recipe and error if not
      initramfs-framework: remove hard dependency with busybox
      ref-manual/variables.rst: document the IMAGE_ROOTFS_MAXSIZE variable
      ref-manual/variables.rst: document the INITRAMFS_MAXSIZE variable

Dan McGregor (2):
      openssl-native(sdk): poision built in paths
      genericx86*: allow higher tunes

Daniel Ammann (1):
      systemd: Fix typo in 00-create-volatile.conf

Daniel McGregor (4):
      nfs-utils: clean up startup
      nfs-utils: Use upstream systemd service files
      nfs-utils: Configure nfsv4 ID mapping &amp; Kerberos
      nfs-utils: Start nfsv4 utilities with sysvinit

Daniel Turull (4):
      linux/generate-cve-exclusions: use data from CVEProject
      linux/cve-exclusion: Execute the script after changing to the new data source
      cve-exclusions: correct cve status for 5 entries
      cve-check: fix debug message

Dario Binacchi (1):
      mmc-utils: upgrade to latest revision

Deepesh Varatharajan (17):
      rust: Upgrade 1.81.0-&gt;1.82.0
      rust: oe-selftest issue fix with v1.82
      rust: Oe-selftest changes for rust v1.82.0
      rust: Upgrade 1.82.0-&gt;1.83.0
      rust: Fix build break because of download-ci-llvm
      rust: Oe-selftest changes for rust v1.83.0
      rust: Fix bloat issue in recent rust updates
      rust: Fix build break because of "download-rustc" and "llvm-tools"
      rust: Upgrade 1.83.0-&gt;1.84.1
      rust: Fix build failure when multilibs are enabled
      rust: Oe-selftest changes for rust v1.84.1
      rust: re-enable the unit tests that are ignored
      rust: re-enable the unit tests that are ignored
      binutils: stable 2.44 branch updates
      glibc: stable 2.41 branch update
      rust: re-enable the unit tests that are previously ignored
      binutils: Fix CVE-2025-1178

Denys Dmytriyenko (1):
      nativesdk-buildtools-perl-dummy: add more missing packages

Divya Chellam (4):
      vim: Upgrade 9.1.0764 -&gt; 9.1.1043
      vim: Upgrade 9.1.1043 -&gt; 9.1.1115
      ruby: upgrade 3.4.2 -&gt; 3.4.3
      libxml2: upgrade 2.13.6 -&gt; 2.13.8

Dmitry Baryshkov (42):
      linux-firmware: fix qca-qca61x4-usb package contents
      linux-firmware: make linux-firmware-qcom-qcm6490-wifi provide -qcs6490-
      vulkan: upgrade 1.3.296.0 -&gt; 1.4.309.0
      runqemu: also set GBM_BACKENDS_PATH
      llvm: move libLLVM.so.N.M to llvm-libllvm package
      llvm: use OECMAKE_SOURCEPATH to specify cmake dir
      llvm: handle libdir in llvm-config
      llvm: also use llvm-config wrapper for nativesdk recipes
      llvm: remove LLVM_LDFLAGS from llvm-config --ldflags output
      llvm: support building libclc
      llvm: add SPIRV-LLVM-Translator support
      llvm: enable more targets to build
      mesa: upgrade 24.0.7 -&gt; 25.0.2
      bindgen-cli: a tool to generate Rust bindings
      linux-firmware: upgrade 20250311 -&gt; 20250410
      mesa: drop kmsro PACKAGECONFIG
      mesa: update patch status
      mesa: don't buid Intel drivers outside of x86 world
      mesa: introduce amd PACKAGECONFIG
      mesa: handle svga Gallium driver through PACKAGECONFIG too
      llvm: import build fix from meta-clang
      llvm: also install llvm-min-tblgen
      meson: pass -target and -I to bindgen calls
      mesa: drop the bindgen patch
      mesa: bundle Clang OpenCL headers into meta-clc
      mesa: upgrade 25.0.2 -&gt; 25.0.5
      clang: split SPIRV-LLVM-Translator to its own recipe
      meson: correct bindgen_clang_argments
      clang: build-depend on spirv-llvm-translator-native
      mesa: remove OSMesa support
      mesa: drop useless -Dshared-glapi flag
      mesa: drop -Dgallium-opencl flag
      mesa: fold GL ES 3 packages into GL ES 2 ones
      mesa: drop the libopencl-mesa-dev package
      mesa: don't add extra tags to the libopencl-mesa package
      mesa: drop gallium-pipe support
      mesa: don't set RCONFLICTS / PROVIDES if glvnd is enabled
      mesa: sort out PROVIDES for the glvnd case
      mesa: drop .so files for GLVND ICD libraries
      mesa: move dri_internal header to mesa-dev
      mesa: remove XA tracker support
      mesa: add support for Teflon, TFLite delegate

Enrico Jörns (8):
      busybox: drop net-tools from defconfig
      barebox: drop patch file left over during last upgrade
      barebox: upgrade 2024.12.0 -&gt; 2025.02.0
      cml1.bbclass: use consistent make flags for menuconfig
      poky: fix remove/append override syntax in comment
      barebox: upgrade 2025.02.0 -&gt; 2025.03.0
      ref-manual/variables.rst: update ROOT_HOME documentation
      conf.py: tweak SearchEnglish to be hyphen-friendly

Enrico Scholz (2):
      cargo_common: use 'config.toml' instead of plain 'config'
      oeqa/selftest/devtool: use 'config.toml' instead of plain 'config'

Eric Meyers (2):
      bitbake: fetch2/npm: Adding npmrc support for private registry authentication
      bitbake: doc: bitbake-user-manual-ref-variables: document BB_USE_HOME_NPMRC

Erick Shepherd (1):
      kernel-devsrc.bb: Replace extra System.map file with symlink

Etienne Cordonnier (4):
      python3-setuptools-scm: respect GIT_CEILING_DIRECTORIES
      gdb: add source-highlight PACKAGECONFIG option
      coreutils: remove outdated comment
      ref-manual/variables.rst: document SSTATE_SKIP_CREATION

Fabio Berton (1):
      ccache.conf: Add include_file_ctime to sloppiness

Fabio Estevam (3):
      mtd-utils: Upgrade to 2.3.0
      u-boot: upgrade 2025.01 -&gt; 2025.04
      bmaptool: upgrade 3.8.0 -&gt; 3.9.0

Guðni Már Gilbert (5):
      bluez5: upgrade 5.79 -&gt; 5.80
      bluez5: add missing tools to noinst-tools package
      bluez5: disable aics tests
      bluez5: upgrade 5.80 -&gt; 5.82
      bluez5: remove obsolete patch for test-gatt

Gyorgy Sarvari (4):
      yocto-check-layer: expect success for test_patches_upstream_status
      libmatchbox: upgrade 1.13 -&gt; 1.14
      ca-certificates: fix on-target postinstall script
      conf/bitbake.conf: use gnu mirror instead of main server

Haixiao Yan (1):
      glibc: Add single-threaded fast path to rand()

Harish Sadineni (2):
      binutils: Fix CVE-2025-1180
      binutils: Fix CVE-2025-1182

Hiago De Franco (2):
      base-files: add nsswitch-resolved.conf and remove nsswitch patch
      readline: enable HOME, END, INSERT, and DELETE key bindings in inputrc

Hongxu Jia (20):
      setuptools3-base.bbclass: override default subprocess timeout
      gnupg: upgrade 2.5.3 -&gt; 2.5.4
      man-pages: upgrade 6.9.1 -&gt; 6.11
      gpgme: upgrade 1.24.1 -&gt; 1.24.2
      socat: upgrade 1.8.0.2 -&gt; 1.8.0.3
      go: upgrade 1.22.12 -&gt; 1.24.0
      go: fix buildpath issue for go-runtime
      go: remove support for GOROOT_FINAL
      lib: spdx30_tasks: remove duplicated patched CVEs
      gnupg: 2.5.4 -&gt; 2.5.5
      man-pages: 6.12 -&gt; 6.13
      spdx3: support to override the version of a package in SBOM 3
      ovmf: fix CVE-2025-2295
      barebox-tools: clean up yamltree from dtc
      cdrtools-native: fix booting EFI ISO live failed
      syslinux: improve isohybrid to process extra sector count for ISO 9660 image
      spdx30: Provide software_packageUrl field in SPDX 3.0 SBOM
      man-pages: upgrade 6.13 -&gt; 6.14
      libgcrypt: upgrade 1.11.0 -&gt; 1.11.1
      lttng-tools: fix compile failed with libxml2 2.14.0+

Ines KCHELFI (5):
      ptest-cargo: refactor run-ptest generation to remove redundancy
      ptest-cargo: fix incorrect FAIL count when multiple tests are run
      ptest-cargo: fix tests output format for testimage
      rpm-sequoia: add ptest
      insane.bbclass: Add unimplemented-ptest detection for cargo-based tests

Isaac True (1):
      bitbake: fetch2: add support for .debs containing uncompressed data tarballs

J. S. (4):
      perlcross: upgrade 1.6 -&gt; 1.6.1
      perl: upgrade 5.40.0 -&gt; 5.40.1
      perlcross: 1.6.1 -&gt; 1.6.2
      perl: upgrade 5.40.1 -&gt; 5.40.2

Jaeyoon Jung (2):
      send-error-report: Respect URL scheme in server name if exists
      send-error-report: Drop --no-ssl

Jamin Lin (7):
      uboot-sign: support to create TEE and ATF image tree source
      uboot-sign: support to add users specific image tree source
      oe-selftest: fitimage: add testcases to test ATF and TEE
      ref-manual: uboot-sign: Add how to enable ATF, TEE and User defined snippet ITS for U-Boot FIT image
      uboot-sign: Fix unintended "-e" written into ITS
      uboot-sign: Add support for setting firmware property in FIT configuration
      ref-manual: uboot-sign: Support firmware property in FIT config

Jason Schonberg (1):
      sqlite3: upgrade 3.47.2 -&gt; 3.48.0

Jean-Pierre Geslin (1):
      cargo: pass PACKAGECONFIG_CONFARGS to cargo build

Jeroen Hofstee (1):
      gcc: Fix wrong code generation in atomic intrinsics for arm

Jiaying Song (2):
      gcc: Undef _TIME_BITS in sanitizer_procmaps_solaris.cpp
      gobject-introspection: Fix wrong PN used in MULTILIB_SCRIPTS

Joao Marcos Costa (1):
      multilib.conf: fix typo in comment

Joerg Schmidt (1):
      bitbake: bblayers/query: Fix using "removeprefix" string method

Jose Quaresma (1):
      sstate-cache-management: add dry-run argument

Joshua Watt (11):
      spdx30: Improve os.walk() handling
      scripts/contrib: Add oe-image-files-spdx script
      lib: sbom30: Add action statement for affected VEX statements
      lib: spdx30_tasks: Handle patched CVEs
      lib: Fix dependencies on SPDX code
      classes: create-spdx-2.2: Fix dependency handling
      oeqa: spdx: Add tar test for SPDX 2.2
      lib: oe: Add cve_check to BBIMPORTS
      bitbake: codeparser: Add function decorators for vardeps
      lib/oe/cve_check: Mark variable flag dependencies
      bitbake: hashserv: Fix deprecation warning about sqlite adapter

João Henrique Ferreira de Freitas (1):
      neard: use WIRELESS_DAEMON

Julian Haller (2):
      bitbake: bitbake: fetch: Fix BB_FETCH_PREMIRRORONLY for git mirror tarballs
      bitbake: bitbake: tests/fetch: Fix git PREMIRRORONLY test

Kai Kang (3):
      webkitgtk: 2.46.6 -&gt; 2.48.0
      libpam: add ptest cases back
      xserver-xorg: remove sub-package ${PN}-xwayland

Khem Raj (150):
      python3-lxml: upgrade 5.3.0 -&gt; 5.3.1
      libxcrypt-compat,libxcrypt: upgrade 4.4.37 -&gt; 4.4.38
      musl: Upgrade to latest tip of trunk
      python3: Ignore locale2 tests on musl
      python3: Skip test_write_read_append
      rust-llvm: Fix build break found with clang
      mpfr: Apply the backport of Float128 patch
      libtirpc: Fix build with gcc-15/C23
      gcc-cross,gcc-cross-canadian: Drop symlinking gold linker
      gcc-runtime: Package libstdc++.modules.json
      gmp: Fix build with GCC15/C23
      gmp: Fix build with older gcc versions
      m4: Stick to C17 standard
      ppp: Replace K&amp;R style C declarations
      llvm: upgrade 19.1.7 -&gt; 20.1.0
      webkitgtk: Fix build with clang-20
      webkitgtk: Fix assertion options with clang
      gdbm: Use C11 standard
      bash: Stick to C17 std
      tcp-wrappers: Stick to C17 standard
      cpio: Pin to use C17 std
      ncurses: Pin to C17 standard
      webkitgtk: Add packageconfig for assertions
      expect: Fix build with GCC 15
      at: Remove mktime signature from posixtm.c
      libsndfile1: Include &lt;stdbool.h&gt; instead of redefining bool true and false
      e2fsprogs: Fix build failure with gcc 15
      makedumpfile: Fix build with GCC-15
      cronie: Resolve build failure with GCC15
      bluez: Fix build with GCC-15
      readline: Fixed build with GCC-15
      ppp: Fix build when shadow is enabled
      unzip: Fix build with GCC-15
      time: Fix build with GCC 15
      time: Fix build with musl
      oeqa: Build cpio with C17 std
      babeltrace2: Fix build with clang on 32bit hosts
      webkitgtk: Fix build on RISCV
      opensbi: Do not inherit autotools bbclass
      man-db: Fix musl build with NLS
      which: Drop md4sum for SRC_URI
      lrzsz: Drop setting md5sum for SRC_URI
      unifdef: Don't use C23 constexpr keyword
      nettle: Fix build with GCC-15
      make: Fix signatures for getenv() and getopt()
      groff: Fix build with GCC-15 on musl
      gawk: Fix build with gcc-15 on musl
      which: Fix build with gcc-15 on musl
      db: Disable incompatible-pointer-types warning as error
      bc: Add missing params to getopt/getenv signatures
      parted: Fix build with GCC 15
      mtd-utils: Fix GCC version detection
      alsa-tools: Fix build with gcc 15
      ghostscript: Pin to C17 std
      lrzsz: Fix build with gcc-15
      syslinux: Use -idirafter to add back path for system stdarg.h
      xinetd: Pin to C17 std
      gperf: Pin to C17 std
      apt: Fix build with GCC 15
      unifdef: Drop md5sum for SRC_URI
      man-db: Add missing rdep for col utility
      vulkan-samples: Fix build with GCC-15
      fmt: Backport patch to fix spdlog ABI issue
      man-db: Do not delete chatset.alias
      rust-llvm: Disable benchmarks by cmake options
      oeqa: Update lzip version in buildzip testcase
      cargo-c,rust: Fix build on risv32
      webkitgtk: Use WTF_CPU_UNKNOWN when building for riscv64
      python3-maturin: Backport a libc build fix for riscv32
      python3-pdm: upgrade 2.22.4 -&gt; 2.23.1
      python3-pdm-backend: upgrade 2.4.3 -&gt; 2.4.4
      glibc: Forward -ffile-prefix-map option to assembler flags
      bitbake.conf: Switch prefix mapping to use -ffile-prefix-map
      webkitgtk: Fix build break on non-arm/non-x86 systems
      toolchain/clang: Remove duplicate RANLIB setting
      harfbuzz: Upgrade to 11.1.0 release
      harfbuzz: Fix build with gcc-15
      cmake.bbclass: Enhance to emit a native toolchain cmake file
      sstatesig: Handle special case of llvm-project-source shared-workdir
      multilib.conf: Add llvm-project-source recipe to NON_MULTILIB_RECIPES
      kernel-arch.bbclass: Do not use weak assignment for TOOLCHAIN
      binutils: Specify sysroot for libtool during build
      rust: Fix build with GCC-15 on aarch64/musl
      gdb: Upgrade to 16.3
      util-linux: ignore mkfds BPF related ptests
      gcc: Upgrade GCC to 15 release
      clang: Merge llvm/clang family recipes from meta-clang
      clang: RPROVIDE spirv-llvm-translator and libclc
      mesa: Pass needed clang flags via BINDGEN_EXTRA_CLANG_ARGS
      maintainers.inc: Add myself as maintainer for clang family of recipes
      clang: Upgrade to 20.1.3
      libcxx,compiler-rt-sanitizers: Add cflags to build with clang compiler
      libsolv: Upgrade to 0.7.32 release
      mesa: Fix header search paths
      mesa: Do not use envvar BINDGEN_EXTRA_CLANG_ARGS
      compiler-rt-sanitizers: Omit the musl architecture restrictions
      arch-mips.inc: Use -EB/-EL for denoting endianness
      musl: Enable riscv32
      compiler-rt: Always use clang for compiler
      clang: Space optimize clang recipes
      clang: Build limited targets for target clang recipe
      arch-powerpc: Use -maltivec in compiler flags if altivec is in tune features
      compiler-rt: Consolidate and fix cmake arguments
      libcxx: Fix cflags and ldflags for using compiler runtime
      compiler-rt: Rename the rt libraries if compiled with arm hardfloat ABI
      clang: Upgrade to 20.1.4
      compiler-rt: Map the COMPILER_RT_DEFAULT_TARGET_ARCH
      compiler-rt: Exclude sync builtins from build when arm &lt; v6
      compile-rt: Fix building compiler-native on aarch64 build hosts.
      compiler-rt-sanitizers: Fix native builds on aarch64 build hosts
      valgrind: Fix build with clang
      systemtap: Remove unneeded -Wno-dangling-pointer
      babeltrace2: Update patch to upstreamed version of patch
      opensbi: Pass CROSS_COMPILE and REPRODUCIBLE flags
      m4: Upgrade to 1.4.20 release
      ovmf: Upgrade to 202502 release
      libvorbis: Ignore -mfused-madd as well for clang
      kexec-tools: Fix ppc build
      rust: Use patchelf in place of chrpath to edit rpaths
      gcc: Always use GCC toolchain
      glibc: Always use GCC toolchain
      grub,grub-efi: Pin to using gcc on aarch64
      syslinux: Pin to using GCC toolchain
      pseudo: Pin to using GCC compiler
      rpm: Always use gcc compiler
      busybox: Fix build on architectures without SYS_settimeofday
      perf: Do not treat maybe-uninitialized warnings as errors
      gnu-efi: Use objcopy from GNU binutils with clang
      pulseaudio: Treat -Wunused-command-line-argument as error
      systemd-boot: Remove -mfpmath=sse option from cflags
      openssl: Link with libatomic on x86/clang
      qemu: Link with libatomic on x86/clang
      valgrind: Use gcc to compile on riscv64
      webkitgtk: Use gcc to compile for arm target
      pulseaudio: Pin to use GCC compiler
      vulkan-samples: Upgrade to latest tip of trunk
      compiler-rt-sanitizers: Fix build on mips
      clang: Upgrade to 20.1.5 release
      clang.inc: Specify ldso when using usrmerge
      clang.inc: Add compiler-rt to default deps when using clang compiler
      vulkan-samples: Disable overriding-option as error
      systemtap: Pin to build with GCC
      seatd: Disable sign-compare warning as error on clang
      systemd-boot: Pin to use gcc toolchain on arm
      busybox: Do not define global 'const' with clang
      gcc: Fix riscv32 multilib issues in non-multilib toolchain
      linux-yocto: Remove debug-kernel.scc for riscv32 kernels
      mesa-gl: Remove osmesa dependency
      rust: Disable cross-unwinding support in llvm libunwind
      libjpeg-turbo: Fix build on mips/clang

Koch, Stefan (1):
      bitbake: tests/fetch: Add test case to check shallow cloning using `PREMIRRORS`

Lee Chee Yang (9):
      migration-guides: add release notes for 5.0.7
      migration-guides: add release notes for 4.0.25
      migration-guides: add release notes for 5.1.3
      migration-guides: add release notes for 5.1.4
      migration-guides: add release notes for 5.0.8
      docs: update walnascar-5.2 release
      release-notes-5.2: update download section
      migration-guides: add release notes for 4.0.26
      migration-guides: add release notes for 5.0.9

Lei Maohui (5):
      kea: fix conflict between kea-dhcp6 multilibs
      python3-pdm python3-pdm-{backend,build-locked}: move from meta-python
      python3-webcolors: upgrade 24.8.0 -&gt; 24.11.1
      python3-hypothesis: upgrade 6.129.2 -&gt; 6.131.0
      python3-hypothesis: Update to use the new ptest-python-pytest class

Leonard Anderweit (1):
      ref-manual: classes: uki: Fix git links

Li Wang (1):
      xinetd: use monotonic time

Liu Yiding (2):
      gzip: upgrade 1.13 -&gt; 1.14
      libunwind: disable installation of tests dir

Louis Rannou (2):
      bitbake: bitbake: data_smart: fix ??= operator for variable flags
      bitbake: bitbake: tests/data: add tests for variable flags

Luca Fancellu (1):
      clang: Include the libclang python bindings in the build

Madhu Marri (1):
      qemu: ignore CVE-2023-1386

Makarios Christakis (1):
      icu: Adjust ICU_DATA_DIR path on big endian targets

Marek Vasut (1):
      u-boot: kernel-fitimage: Restore FIT_SIGN_INDIVIDUAL="1" behavior

Mark Asselstine (1):
      bitbake: utils: lock_timeout_nocheck() ensure `l` is initialized

Mark Hatle (1):
      bitbake: bitbake: runqueue: Verify mcdepends are valid

Markus Volk (26):
      wayland-protocols: update 1.40 -&gt; 1.41
      boost: add charconv lib
      libsdl2: fix PACKAGECONFIG for libusb
      fastfloat: add recipe
      libsdl2: fix build with pipewire 1.4.0
      vala: update 0.56.17 -&gt; 0.56.18
      glib-2.0: update 2.82.4 -&gt; 2.84.0
      gtk4: update 4.16.12 -&gt; 4.18.1
      libadwaita: update 1.6.4 -&gt; 1.7.0
      glib-2.0: fix build issue with gobject-introspection
      gobject-introspection: update 1.82.0 -&gt; 1.84.0
      gsettings-desktop-schemas: update 47.1 -&gt; 48.0
      gtk4: update 4.18.3 -&gt; 4.18.4
      qemu: add PACKAGECONFIG for sdl-image
      mpg123: make use of virtual/libsdl2
      default-providers.inc: add entries for virtual/libsdl2
      qemu.inc: make use of virtual/libsdl2
      glib-2.0: update 2.84.0 -&gt; 2.84.1
      gtk4: update 4.18.4 -&gt; 4.18.5
      wayland-protocols: update 1.42 -&gt; 1.44
      libxcvt: allow native build
      mesa: update 25.0.5 -&gt; 25.1.0
      mesa: add support for asahi drivers
      mesa: update 25.1.0 -&gt; 25.1.1
      boost: add process library
      mesa: make asahi dependent on opencl

Marta Rybczynska (8):
      cve-update-db-native: restore
      cve-update-db-native: update structure
      cve-update-db-native: add the fkie source
      cve-check: allow feed choice
      flex: update CVE_PRODUCT
      vulnerabilities/classes: remove references to cve-check text format
      maintainers.inc: change email address
      cve-check: change the default feed

Martin Jansa (6):
      cargo.bbclass: show PACKAGECONFIG_CONFARGS in bbnote
      buildcfg: get_metadata_git_*: catch also bb.process.NotFoundError
      pkgconfig: fix build with gcc-15
      flex: fix build with gcc-15 on host
      ghostscript: fix build with gcc-15 on host
      bash: use -std=gnu17 also for native CFLAGS

Mathieu Dubois-Briand (2):
      linux/cve-exclusion: Update exclusions after kernel update
      linux/cve-exclusion: Update exclusions after kernel update

Matthias Schiffer (2):
      curl: only set CA bundle in target build
      Revert "git: git-replacement-native: depend on ca-certificate"

Michael Estner (2):
      bitbake: utils: Clean up imports
      bitbake: lib: Remove double imports

Michael Halstead (2):
      yocto-uninative: Update to 4.7 for glibc 2.41
      docs: update current releases for Walnascar

Michael Opdenacker (5):
      flac: upgrade 1.4.3 -&gt; 1.5.0
      alsa-lib: upgrade 1.2.13 -&gt; 1.2.14
      alsa-tools: upgrade 1.2.11 -&gt; 1.2.14
      alsa-ucm-conf: upgrade 1.2.13 -&gt; 1.2.14
      alsa-utils: upgrade 1.2.13 -&gt; 1.2.14

Michal Sieron (1):
      kernel-module-split: Allow for external conf files

Mike Crowe (2):
      classes-recipe: npm: Complain immediately if npm-shrinkwrap.json is too old
      rootfs.py: Don't create modules directory for all kernels

Mike Looijmans (1):
      dropbear/dropbearkey.service: Allow extra arguments for key generation

Mikko Rapeli (15):
      psplash: start via udev if framebuffer device detected
      psplash: fix typo in psplash-systemd.service
      systemd: depend on util-linux-mkswap
      psplash: ignore startup errors in psplash-systemd.service
      poky-bleeding.bbclass: support recipes with multiple scm SRCREVs
      selftest pokybleeding.py: add test for poky-bleeding.bbclass
      uki.bbclass: drop serial console from kernel command line
      test_efi_plugin_plain_systemd-boot: don't set console
      genericarm64.conf: increase INITRAMFS_MAXSIZE
      efi-uki-bootdisk.wks.in: reduce ESP boot partition size
      lttng-modules: fix build failure on genericarm64
      oeqa/selftest/wic: Increase rootfs size in test_offset
      oeqa/selftest/wic: Add ext4 to IMAGE_FSTYPES in test_exclude_path_with_extra_space
      oeqa/selftest/pokybleeding: change from mtd-utils-selftest to pseudo
      sbom.rst: how to disable SPDX generation

Ming Liu (1):
      zip: fix a buffer overflow detected issue

Mingli Yu (3):
      systemd: Correct tmpfile.d file for resolv.conf
      openssh: Add pam_env support
      base-files: Make PATH retain the existing value

NeilBrown (1):
      nfs-utils: don't use signals to shut down nfs server.

Nguyen Dat Tho (1):
      libatomic-ops: Update GITHUB_BASE_URI

Niko Mauno (17):
      cve-check.bbclass: Mitigate symlink related error
      at-spi2-core: Avoid non-ASCII characters in FILES
      python3-imagesize: Avoid non-ASCII in SUMMARY
      kbd: Avoid non-ASCII characters in DESCRIPTION
      packagegroup-core-x11: Avoid non-ASCII in RDEPENDS
      packagegroup-core-x11: Drop dbus-x11 in REDEPENDS:${PN}-utils
      iproute2: Add iptables PACKAGECONFIG knob
      default-providers: Add VIRTUAL-RUNTIME_dbus variable
      dbus: Allow using dbus-lib with alternative D-Bus
      systemd: Support using alternative runtime D-Bus
      glib: Support using alternative runtime D-Bus
      recipes-connectivity: Drop dbus from RDEPENDS:${PN}
      dbus-glib: Revise RDEPENDS:${PN}-tests assignment
      dbus: Remove 'dbus-x11' from RPROVIDES
      cve-exclusion_6.12.inc: Update using current cvelistV5
      linux: cve-exclusions: Fix false negatives
      linux: cve-exclusions: Amend terminology

Olga Denisova (2):
      buildstats.py: Add tracking of network I/O per interface
      pybootchartgui: visualize /proc/net/dev network stats in graphs

Patrik Nordvall (1):
      bitbake: fetch2/git: Restore escape quoting for the git url when used

Patryk Seregiet (1):
      linux-firmware: fix FILES to drop RDEPENDS on full package

Paul Gortmaker (1):
      requirements: move Ubuntu-20.04 into unsupported category due to python

Pavel Zhukov (2):
      ovmf: Add PACKAGECONFIG[debug]
      overlayfs-etc: Unmount /sys and /proc before init

Pedro Ferreira (1):
      bitbake: codeparser: Skipping typing when inspecting Python modules

Peter Bergin (1):
      pkg-config-native,librsvg-native: fix EXTRA_NATIVE_PKGCONFIG_PATH

Peter Kjellerstedt (10):
      libbsd: Remove package specific licenses
      bitbake: tests/fetch: Verify regular expression "URLs" that contain a ?
      devtool: Do not create annotated tags if tag.gpgSign is set
      devtool-source.bbclass: Do not create annotated tags if tag.gpgSign is set
      buildhistory.bbclass: Do not create annotated tags if tag.gpgSign is set
      devtool: reset: Escape command line input used in regular expression
      systemd-systemctl-native: Use += instead of :append
      insane.bbclass: Move test for invalid PACKAGECONFIGs to do_recipe_qa
      insane.bbclass: Report all invalid PACKAGECONFIGs for a recipe at once
      libstd-rs: Correct the license to use Unicode-3.0

Peter Marko (54):
      curl: upgrade 8.12.0 -&gt; 8.12.1
      openssl: upgrade 3.4.0 -&gt; 3.4.1
      gnutls: upgrade 3.8.8 -&gt; 3.8.9
      sassc: set status of CVE-2022-43357
      libsass: fix fetched commit hash
      Revert "cve-update-nvd2-native: Tweak to work better with NFS DL_DIR"
      xwayland: mark CVEs fixed in 24.1.6 as fixed
      grub: drop obsolete CVE statuses
      grub: backport strlcpy function
      grup: patch CVE-2024-45781
      grub: patch CVE-2024-45782 and CVE-2024-56737
      grub: patch CVE-2024-45780
      grub: patch CVE-2024-45783
      grub: patch CVE-2025-0624
      grub: patch CVE-2024-45774
      grub: patch CVE-2024-45775
      grub: patch CVE-2025-0622
      grub: patch CVE-2024-45776
      grub: patch CVE-2024-45777
      grub: patch CVE-2025-0690
      grub: patch CVE-2025-1118
      grub: patch CVE-2024-45778 and CVE-2024-45779
      grub: patch CVE-2025-0677, CVE-2025-0684, CVE-2025-0685, CVE-2025-0686 and CVE-2025-0689
      grub: patch CVE-2025-0678 and CVE-2025-1125
      go: upgrade 1.24.0 -&gt; 1.24.1
      binutils: patch CVE-2025-1153
      expat: upgrade 2.6.4 -&gt; 2.7.0
      xserver-xorg: mark CVEs fixed in 21.1.16 as fixed
      spdx30: handle links to inaccessible locations
      cve-update-nvd2-native: handle missing vulnStatus
      spdx30: handle Unknown CVE_STATUS
      cve-update-nvd2-native: add workaround for json5 style list
      openssl: upgrade 3.4.1 -&gt; 3.5.0
      go: upgrade 1.24.1 -&gt; 1.24.2
      bitbake: fetch/git: always fetch lfs when creating shallow tarball
      bitbake: fetch/git: correct typo in comment and style
      xz: upgrade 5.6.4 -&gt; 5.8.1
      libarchive: upgrade 3.7.8 -&gt; 3.7.9
      cve-check: extract extending CVE_STATUS to library function
      spdx: extend CVE_STATUS variables
      ptest-cargo: handle packageconfig arguments
      linux/cve-exclusion: update with latest cvelistV5
      linux/cve-exclusion: correct fixed-version calculation
      linux/cve-exclusion: update exclusions after script fixes
      linux/cve-exclusion: do not shift first_affected
      binutils: drop obsolete CVE_STATUS
      binutils: mark CVE-2025-1153 as fixed
      vex: fix rootfs manifest
      go: upgrade 1.24.2 -&gt; 1.24.3
      testimage: get real os-release file
      dropbear: add mirror
      dropbear: upgrade 2024.86 -&gt; dropbear_2025.88
      libxml2: upgrade 2.13.6 -&gt; 2.14.3
      libxml2: revert commit breaking patchs in cmake file

Philip Lorenz (8):
      bitbake: fetch2: Clean up no longer used name parameter
      bitbake: tests/fetch: Move commonly used imports to top
      bitbake: fetch2: Check for git-lfs existence before using it
      bitbake: fetch2: Simplify git LFS detection
      bitbake: fetch2: Use git-lfs fetch to download objects
      bitbake: fetch2: Fix incorrect lfs parametrization for submodules
      bitbake: fetch2: Fix LFS object checkout in submodules
      bitbake: tests/fetch: Test gitsm with LFS

Praveen Kumar (3):
      connman: Fix CVE-2025-32743
      connman: Fix CVE-2025-32366
      glib-2.0: update 2.84.1 -&gt; 2.84.2

Priyal Doshi (1):
      tzdata/tzcode-native: upgrade 2025a -&gt; 2025b

Quentin Schulz (5):
      docs: use literalinclude for system requirements
      tools: add script for building documentation inside containers
      b4-wrapper-poky.py: output errors to stderr
      mesa: Enable PanVK for panfrost PACKAGECONFIG
      set_versions.py: mark Styhead as EoL

Randy MacLeod (7):
      tcmode-default: eliminate needless gdb, qemu defaults
      tcmode-default: eliminate needless 'go' defaults
      tcmode-default: eliminate needless binutils version defaults
      tcmode-default: eliminate needless linux-libc-headers version defaults
      valgrind: Upgrade from 3.24.0 to 3.25.0
      linux: add CVE_STATUS for a chrome* bug
      valgrind: Upgrade from 3.25.0 to 3.25.1

Rasmus Villemoes (2):
      openssl: fold result of sed invocation into environment file
      openssl: honour calling environment's values in wrapper script

Richard Purdie (174):
      oeqa/runtime/connman: Drop unused test
      base: Fix PACKAGECONFIG handling for cross recipes
      gdb: Include xz support by default and clean up PACKAGECONFIG
      udev-extraconf: Switch from ifconfig to ip
      oeqa/qemurunner: Convert from ifconfig to use ip
      bitbake: fetch2: Fix BB_FETCH_PREMIRRORONLY network disabling
      lib/package/utils: Improve multiprocess_launch argument passing
      shadow-native: Disable syslog usage
      buildstats: Avoid rare UnboundLocalError
      qemurunner: Fix a bug with fork/exit handling
      bitbake: utils: Print information about lock issue before exiting
      bitbake: utils: Tweak lock_timeout logic
      bitbake: utils: Add signal blocking for lock_timeout
      bitbake: event/utils: Avoid deadlock from lock_timeout() and recursive events
      poky: Update SANITY_TESTED_DISTROS
      poky: Remove Fedora38 from SANITY_TESTED_DISTROS
      bitbake.conf: Start to separate out gcc related variable definitions
      bitbake: toaster: Add script to compare toaster fixtures to project release data
      bitbake: toaster/fixtures: Add walnascar release information
      bitbake: toaster/tests: Fix kirkstone test
      build-appliance-image: Update to master head revision
      bitbake: cooker: Add debug for parsing being complete
      bitbake: command: Fix command complete event ordering
      bitbake: bitbake-server/worker: Hide os.fork() deprecation warning
      bitbake: data_smart: Ensure module dependency changes invalidate the base config cache
      cairo: upgrade 1.18.2 -&gt; 1.18.4
      cmake: Upgrade 3.31.5 -&gt; 3.31.6
      diffoscope: upgrade 287 -&gt; 289
      ell: upgrade 0.73 -&gt; 0.74
      epiphany: upgrade 47.3.1 -&gt; 48.0
      fastfloat: upgrade 8.0.0 -&gt; 8.0.2
      gcr: upgrade 4.3.0 -&gt; 4.3.1
      ghostscript: upgrade 10.04.0 -&gt; 10.05.0
      git: upgrade 2.48.1 -&gt; 2.49.0
      hwdata: upgrade 0.392 -&gt; 0.393
      libical: upgrade 3.0.19 -&gt; 3.0.20
      libxmlb: upgrade 0.3.21 -&gt; 0.3.22
      libxslt: upgrade 1.1.42 -&gt; 1.1.43
      mmc-utils: upgrade to latest revision
      ofono: upgrade 2.14 -&gt; 2.15
      pango: upgrade 1.56.1 -&gt; 1.56.2
      pkgconf: upgrade 2.3.0 -&gt; 2.4.3
      puzzles: upgrade to latest revision
      python3-attrs: upgrade 25.1.0 -&gt; 25.3.0
      python3-cryptography/python3-cryptography-vectors: Upgrade 44.0.0 -&gt; 44.0.2
      python3-hypothesis: upgrade 6.127.4 -&gt; 6.129.2
      python3-jinja2: upgrade 3.1.5 -&gt; 3.1.6
      python3-maturin: upgrade 1.8.1 -&gt; 1.8.3
      python3-pyproject-metadata: upgrade 0.9.0 -&gt; 0.9.1
      python3-scons: upgrade 4.8.1 -&gt; 4.9.0
      python3-setuptools-rust: upgrade 1.10.2 -&gt; 1.11.0
      python3-setuptools: upgrade 75.8.2 -&gt; 76.0.0
      python3-trove-classifiers: upgrade 2025.2.18.16 -&gt; 2025.3.13.13
      python3-websockets: upgrade 15.0 -&gt; 15.0.1
      python3-yamllint: upgrade 1.35.1 -&gt; 1.36.0
      sysklogd: upgrade 2.7.0 -&gt; 2.7.1
      sysvinit: upgrade 3.13 -&gt; 3.14
      ttyrun: upgrade 2.36.0 -&gt; 2.37.0
      wpebackend-fdo: upgrade 1.14.3 -&gt; 1.16.0
      lttng-modules: Upgrade 2.13.16 -&gt; 2.13.17
      libx11: Upgrade 1.8.11 -&gt; 1.8.12
      xauth: upgrade 1.1.3 -&gt; 1.1.4
      libsm: Upgrade 1.2.5 -&gt; 1.2.6
      xtrans: Upgrade 1.5.2 -&gt; 1.6.0
      xinit: upgrade 1.4.3 -&gt; 1.4.4
      ccache: upgrade 4.10.2 -&gt; 4.11
      libidn2: upgrade 2.3.7 -&gt; 2.3.8
      libxkbcommon: upgrade 1.8.0 -&gt; 1.8.1
      native: Drop export statements that aren't needed
      dhcpcd: upgrade 10.1.0 -&gt; 10.2.2
      bitbake: tests/fetch: Add missing branch parameter to tests
      bitbake: fetch/git: Rework tag parameter handling
      bitbake: fetch/git: Ensure tags work with shallow clones
      bitbake: tests/fetch: Add git tag verification tests
      bitbake: tests/fetch: Fix typo in npm test
      dbus-glib: Upgrade 0.112 -&gt; 0.114
      psplash: Fix build with GCC 15
      libmatchbox: Upgrade 1.12 -&gt; 1.13
      sanity: Bump minimum python version requirement to 3.9
      bitbake: lib/bb: Bump minimum python version requirement to 3.9
      bitbake: fetch: Drop multiple branch/revision support for single git urls
      spdx: Update for bitbake changes
      buildhistory: Update for bitbake changes
      bitbake: Revert "bblayers/query: Fix using "removeprefix" string method"
      bitbake: bitbake: Bump version to 2.9.2
      sanity.conf: Require bitbake 2.9.2
      meta/conf: Start to populate autobuilder config fragments
      expat: Upgrade 2.7.0 -&gt; 2.7.1
      buildperf: Avoid step usage in performance line graphs
      buildperf: Tweak tooltip positioning for usability
      lttng-tools: Update patch status
      rust-source: Fix remove_gcc_directory
      bitbake: bitbake: Update version to 2.12.0 for release
      sanity.conf: Update minimum bitbake version to 2.12.0
      layer.conf: Update layer series name for release
      poky-tiny: Drop obsolete/broken comment
      poky.conf: Bump version for 5.2 walnascar release
      build-appliance-image: Update to master head revision
      rust-llvm: Compile llvm to use dynamic libraries
      poky-tiny: Fix whitespace in variable assignment
      rust-llvm: Disable libedit
      bitbake: fetch2/git: Handle srcrevs for annotated tags in tag check
      at-spi2-core: upgrade 2.56.0 -&gt; 2.56.1
      base-passwd: upgrade 3.6.6 -&gt; 3.6.7
      bind: upgrade 9.20.6 -&gt; 9.20.7
      btrfs-tools: upgrade 6.13 -&gt; 6.14
      ccache: upgrade 4.11 -&gt; 4.11.2
      connman: upgrade 1.43 -&gt; 1.44
      createrepo-c: upgrade 1.2.0 -&gt; 1.2.1
      diffoscope: upgrade 289 -&gt; 293
      ed: upgrade 1.21 -&gt; 1.21.1
      ell: upgrade 0.74 -&gt; 0.75
      gtk4: upgrade 4.18.1 -&gt; 4.18.3
      harfbuzz: upgrade 10.4.0 -&gt; 11.0.0
      iproute2: upgrade 6.13.0 -&gt; 6.14.0
      kmod: upgrade 34.1 -&gt; 34.2
      libevdev: upgrade 1.13.3 -&gt; 1.13.4
      libinput: upgrade 1.27.1 -&gt; 1.28.1
      libnotify: upgrade 0.8.4 -&gt; 0.8.6
      libsdl2: upgrade 2.32.2 -&gt; 2.32.4
      libsoup: upgrade 3.6.4 -&gt; 3.6.5
      libusb1: upgrade 1.0.27 -&gt; 1.0.28
      lighttpd: upgrade 1.4.77 -&gt; 1.4.78
      llvm: upgrade 20.1.0 -&gt; 20.1.1
      mpfr: upgrade 4.2.1 -&gt; 4.2.2
      ofono: upgrade 2.15 -&gt; 2.16
      pango: upgrade 1.56.2 -&gt; 1.56.3
      piglit: upgrade to latest revision
      python3-beartype: upgrade 0.20.0 -&gt; 0.20.2
      python3-numpy: upgrade 2.2.3 -&gt; 2.2.4
      python3-poetry-core: upgrade 2.1.1 -&gt; 2.1.2
      python3-pygobject: upgrade 3.52.2 -&gt; 3.52.3
      python3-pyparsing: upgrade 3.2.1 -&gt; 3.2.3
      python3-pytz: upgrade 2025.1 -&gt; 2025.2
      python3-rdflib: upgrade 7.1.3 -&gt; 7.1.4
      python3-rpds-py: upgrade 0.22.3 -&gt; 0.24.0
      python3-scons: upgrade 4.9.0 -&gt; 4.9.1
      python3-setuptools-scm: upgrade 8.2.0 -&gt; 8.2.1
      python3-setuptools: upgrade 76.0.0 -&gt; 78.1.0
      python3-trove-classifiers: upgrade 2025.3.13.13 -&gt; 2025.3.19.19
      python3-typing-extensions: upgrade 4.12.2 -&gt; 4.13.0
      python3-yamllint: upgrade 1.36.0 -&gt; 1.37.0
      qemu: Upgrade 9.2.0 -&gt; 9.2.3
      repo: upgrade 2.52 -&gt; 2.53
      shaderc: upgrade 2024.3 -&gt; 2025.1
      sysklogd: upgrade 2.7.1 -&gt; 2.7.2
      wayland-protocols: upgrade 1.41 -&gt; 1.42
      python3-calver: upgrade 2022.6.26 -&gt; 2025.04.01
      stress-ng: upgrade 0.18.11 -&gt; 0.18.12
      python3-iniconfig: upgrade 2.0.0 -&gt; 2.1.0
      poky-bleeding: Drop debug code
      bitbake: parse/ConfHandler: Add warning for deprecated whitespace usage
      oeqa/selftest/fetch: Fix whitespace
      lttng-tools: 2.13.14 -&gt; 2.13.15
      lttng-modules: Upgrade 2.13.17 -&gt; 2.13.18
      send-error-report: Apply v2 of the patch
      selftest-ed: Upgrade to version 1.21/1.20.2
      recipes: Drop remaining md5sum checksums
      lttng-ust: upgrade 2.13.8 -&gt; 2.13.9
      qemu: Upgrade 9.2.3 -&gt; 10.0.0
      pseudo: Upgrade to version 1.9.1
      bitbake.conf/pseudo: Switch from exclusion list to inclusion list
      gst-examples: Update 1.18.6 -&gt; 1.26.1
      libsoup-2.4: Drop recipe as obsolete
      openssh: Upgrade 9.9p2 -&gt; 10.0p1
      gcc: Fix riscv multilib issues in plain toolchains
      oeqa/selftest/rust: Add exclusion to fix riscv64 builds
      ptest-packagelists: Add riscv64 exclusions so we can add testing
      bitbake: toaster/fixtures: Add whinlatter, drop styhead
      bitbake: toaster/tests: Update after release numbering changes
      bitbake: toaster/tests/buildtest: Switch to new CDN
      sstatetests: Switch to new CDN
      local.conf.sample: Switch to new CDN
      brief-yoctoprojectqs/ref-manual: Switch to new CDN

Robert Yang (3):
      runqemu: Set target to rootfs when target is empty
      coreutils: Fix file-rdeps for single-binary
      coreutils: Drop 0001-local.mk-fix-cross-compiling-problem.patch

Rogerio Guerra Borin (1):
      u-boot: ensure keys are generated before assembling U-Boot FIT image

Roland Hieber (1):
      bitbake: contrib: vim: ftdetect: don't conflict with other filetypes

Ross Burton (106):
      linux-yocto: revert omap8250 power management changes on genericarm64
      python3-license-expression: fix ptest installation
      documentation: remove AUTHOR[doc]
      autotools: don't try and find in-tree macros
      recipes/*: remove obsolete use of acpaths
      apr-utils: remove obsolete patch
      freetype: pass missing include paths to autoreconf
      bitbake: lib/bb/build: remove mention of OE_EXTRA_IMPORTS
      conf/documentation.conf: remove OE_IMPORTS
      automake: remove upstreamed patches
      ltp: don't use host objcopy
      weston-init: improve XDG_RUNTIME_DIR fallback creation
      xserver-nodm-init: improve XDG_RUNTIME_DIR fallback creation
      systemd-serialgetty: don't set a default SERIAL_CONSOLES
      systemd: if getty generator is disabled remove the generator, not the units
      systemd-serialgetty: use existing unit files in systemd
      mirrors: rationalise Debian mirrors
      puzzles: ignore three new CVEs for a different puzzles
      Remove all mention of core-image-lsb
      ref-manual: don't refer to poky-lsb
      ref-manual: remove OE_IMPORTS
      xserver-xf86-config: add a configuration fragment to disable screen blanking
      xserver-xf86-config: remove obsolete configuration files
      dbus-glib: depend on dbus, not dbus-x11
      libcap: drop obsolete patches
      libcap: remove redundant FILES:PN-dev
      libcap: clean up configuration variables
      libcap: fix licensing fields
      libcap: upgrade to 2.75
      mdadm: don't inherit autotools
      autotools: require that a configure script exists
      dhcpcd: don't try to run autoreconf
      docbook-xml-dtd4: clean up LICENSE situation
      common-licenses/OASIS: remove unused license
      pciutils: work around pseudo symlink creation race
      gtk+3: depend on the librsvg pixbuf loader in gtk3-demo
      dev-manual: remove qemu machine name list in runqemu invocation
      meson: refresh upstreamed patch
      perl: add more module RDEPENDS that don't get detected
      attr: merge .bb and .inc
      attr: improve ptest packaging
      acl: improve ptest packaging
      flex: remove obsolete disable-tests.patch
      flex: build occasional build failures in test suite compile
      bitbake: fetch2/wget: consider downloadfilename when checking for upstream
      bitbake: fetch2/wget: don't conditionalise --continue
      bitbake: fetch2/wget: use long arguments for clarity
      bitbake: bb/tests: use subtests when looping in a test case
      bitbake: tests/fetch: use a namedtuple for the wget test data
      bitbake: tests/fetch: support setting PV in the wget fetcher
      bitbake: tests/fetch: add a test for download paths without a proper filename
      coreutils: add missing ptest dependencies
      coreutils: fix cksum on musl
      scripts/devtool: sort the recipes that need to be upgraded together
      lib/oe: remove redundant __name__ == "__main__" checks
      python3: remove obsolete deletion of non-deterministic .pyc files
      meson: upgrade to 1.7.1
      libjpeg-turbo: fix upstream release checking
      mesa: remove obsolete deletion of .la files
      mesa-demos: fix detection of GLX headers
      libunwind: Upgrade 1.6.2 -&gt; 1.8.1
      autoconf: upgrade to final 2.72 release
      genericarm64: add ttyPS1 for KV260
      systemd: enable getty generator by default
      systemd: always depend on the explicit serial console units
      libunwind: refresh ppc32/musl patch
      libunwind: check if libatomic is needed at configure time
      libunwind: fix build when unused sections are garbage collected
      libunwind: fix the build with GCC 15
      wget: use libpcre2
      bmaptool: put the PV in the filename
      uninative: show errors if installing fails
      python3: backport the full fix for importlib scanning invalid distributions
      autoconf: set PKGV to avoid version-goes-backwards
      meson: upgrade to 1.8.0
      classes/yocto-check-layer: refactor to be extended easily
      classes/yocto-check-layer: add check for tasks that allow network access
      buildtools-tarball: fix default_cases assignment
      testsdk: allow user to specify which tests to run
      oe/sdk: fix empty SDK manifests
      oeqa/sdk/context: fix multilib handling bug in hasTargetPackage
      oeqa/sdkext/context: align hasHostPackage with parent class
      oeqa/sdk: add simple test that the manifests are not empty
      oeqa/selftest/sdk: add test to verify the manifests are generated correctly
      oeqa/sdk: add helpers to check for and install packages
      oeqa/sdk: use ensure_*_package helpers
      oeqa/sdk/kmod: skip test in eSDKs
      oeqa/sdk/meson: generalise test case
      core-image-sato: fix SDK dependency on glib
      oeqa/sdk/gtk3: build libhandy instead of galculator
      oeqa/sdk/meson: add check that meson has detected the target correctly
      oeqa/sdk/maturin: be less picky in the list_python test
      oeqa/sdk/maturin: no need for a setupClass, merge code into test
      oeqa/sdk/autotools: verify that configure is using the correct host
      meson: split template generation
      meson: remove sysroot from the native environment file
      meson: clean up the native template in nativesdk builds
      cryptodev-linux: clean up do_install
      buildstats-diff: find last two buildstats files if none are specified
      Revert "xwayland: mark CVEs fixed in 24.1.6 as fixed"
      Revert "xserver-xorg: mark CVEs fixed in 21.1.16 as fixed"
      rust: remove python3-native DEPENDS
      rust: consolidate rust-llvm dependencies
      rust: remove file-native DEPENDS
      linux/generate-cve-exclusions: show the name and version of the data source
      linux-yocto: refresh CVE exclusions

Ryan Eatmon (1):
      sbc: Fix for gcc 15 compile error

Samuli Piippo (1):
      libjpeg-turbo: don't use chrpath

Sebastian Zenker (1):
      kernel.bbclass: Handle possible multiconfig.

Simone Weiß (2):
      sassc, libsass: add recipes
      libadwaita: upgrade 1.6.2 -&gt; 1.6.4

Sofiane HAMAM (2):
      sanity: Check for non ascii chars in TOPDIR
      patchtest: Fix minor README typo

Stefan Herbrechtsmeier (1):
      bitbake: fetch2: Partial revert decodeurl() to not use the URI class

Stefan Koch (7):
      bitbake: fetch2/git: Add support for fast initial shallow fetch
      bitbake: bitbake-user-manual: Update documentation for fast `BB_GIT_SHALLOW`
      bitbake: fetch2/gitsm: Unpack even when `ud.clonedir` is not available
      bitbake: tests/fetch: Adapt test cases for fast shallow fetches
      bitbake: tests/fetch: Add an additional test case to check whether the fast fetch is shallow
      bitbake: fetch2: Move the `ensure_symlink()` function into the `FetchMethod` class
      bitbake: fetch2: Ensure a valid symlink in `PREMIRRORS` case when using shallow cloning

Stefan Mueller-Klieser (1):
      kernel-arch: add macro-prefix-map in KERNEL_CC

Sven Kalmbach (1):
      cml1.bbclass: do not escape the exit value

Thomas Perrot (1):
      send-error-report: improve debugging

Tom Hochstein (4):
      meson: Allow user to override setup command options
      toolchain-scripts: Add Meson settings for Yocto build SDK
      toolchain-scripts: Export meson settings for SDK builds
      meson: Fix host_machine setting for native cross-file

Trevor Gamblin (11):
      python3-flit-core: upgrade 3.10.1 -&gt; 3.11.0
      python3-setuptools-scm: upgrade 8.1.0 -&gt; 8.2.0
      python3-roman-numerals-py: add recipe
      python3-sphinx: upgrade 8.1.3 -&gt; 8.2.1
      python3-numpy: upgrade 2.2.4 -&gt; 2.2.5
      python3-numpy: fix ptests
      python3: upgrade 3.13.2 -&gt; 3.13.3
      python3-cython: upgrade 3.0.12 -&gt; 3.1.0
      python3-numpy: upgrade 2.2.5 -&gt; 2.2.6
      python3-setuptools: upgrade 78.1.0 -&gt; 80.8.0
      setuptools3: remove NO_FETCH_BUILD

Trevor Woerner (9):
      wic: do not ignore ROOTFS_SIZE if the rootfs is modified
      oe-selftest.wic: add PATH handling
      oe-selftest.wic: add native sysroot handling
      systemd: disable linker GCS warning on aarch64
      contributor-guide/submit-changes: encourage patch version changelogs
      sphinx-lint: various fixes
      ref-manual/variables.rst: document WIC_CREATE_EXTRA_ARGS
      sphinx-lint: superfluous backtick in front of role
      sphinx-lint: unbalanced inline literal markup

Valeria Petrov (1):
      grub2: Add GRUB_MKIMAGE_OPTS for configurable grub-mkimage options

Victor J. Hansen (1):
      cmake.bbclass: remove whitespace

Vijay Anusuri (4):
      xwayland: upgrade 24.1.5 -&gt; 24.1.6
      libtasn1: upgrade 4.19.0 -&gt; 4.20.0
      xserver-xorg: upgrade 21.1.15 -&gt; 21.1.16
      vim: Upgrade 9.1.1115 -&gt; 9.1.1198

Vivek Puar (4):
      linux-firmware: upgrade 20250109 -&gt; 20250211
      linux-firmware: upgrade 20250211 -&gt; 20250311
      linux-firmware: update qca-qca61x4-usb package contents
      linux-firmware: upgrade 20250410 -&gt; 20250509

Vyacheslav Yurkov (4):
      oeqa/selftest: Drop dependency on systemd-native
      systemd: Build the systemctl executable
      classes-recipe: Consolidate machine-id handling
      systemd: Password agents shouldn't be optional

Wang Mingyu (157):
      ell: upgrade 0.71 -&gt; 0.73
      erofs-utils: upgrade 1.8.4 -&gt; 1.8.5
      fmt: upgrade 11.1.1 -&gt; 11.1.3
      hwdata: upgrade 0.391 -&gt; 0.392
      libffi: upgrade 3.4.6 -&gt; 3.4.7
      libportal: upgrade 0.9.0 -&gt; 0.9.1
      libtest-warnings-perl: upgrade 0.037 -&gt; 0.038
      libuv: upgrade 1.49.2 -&gt; 1.50.0
      libwpe: upgrade 1.16.1 -&gt; 1.16.2
      libx11: upgrade 1.8.10 -&gt; 1.8.11
      libxkbcommon: upgrade 1.7.0 -&gt; 1.8.0
      python3-babel: upgrade 2.16.0 -&gt; 2.17.0
      python3-cython: upgrade 3.0.11 -&gt; 3.0.12
      python3-dtschema: upgrade 2024.11 -&gt; 2025.2
      python3-hypothesis: upgrade 6.124.7 -&gt; 6.125.3
      python3-mako: upgrade 1.3.8 -&gt; 1.3.9
      python3-numpy: upgrade 2.2.2 -&gt; 2.2.3
      python3-pip: upgrade 25.0 -&gt; 25.0.1
      python3-poetry-core: upgrade 2.0.1 -&gt; 2.1.1
      python3-psutil: upgrade 6.1.1 -&gt; 7.0.0
      ruby: upgrade 3.4.1 -&gt; 3.4.2
      stress-ng: upgrade 0.18.09 -&gt; 0.18.10
      xhost: upgrade 1.0.9 -&gt; 1.0.10
      xkeyboard-config: upgrade 2.43 -&gt; 2.44
      xwayland: upgrade 24.1.4 -&gt; 24.1.5
      xz: upgrade 5.6.3 -&gt; 5.6.4
      libpcre2: upgrade 10.44 -&gt; 10.45
      pango: upgrade 1.55.5 -&gt; 1.56.1
      bind: upgrade 9.20.5 -&gt; 9.20.6
      dbus: upgrade 1.16.0 -&gt; 1.16.2
      fmt: upgrade 11.1.3 -&gt; 11.1.4
      harfbuzz: upgrade 10.2.0 -&gt; 10.4.0
      inetutils: upgrade 2.5 -&gt; 2.6
      libassuan: upgrade 3.0.1 -&gt; 3.0.2
      libnotify: upgrade 0.8.3 -&gt; 0.8.4
      libpng: upgrade 1.6.45 -&gt; 1.6.47
      libsdl2: upgrade 2.30.12 -&gt; 2.32.2
      liburcu: update 0.15.0 -&gt; 0.15.1
      man-pages: upgrade 6.11 -&gt; 6.12
      minicom: upgrade 2.9 -&gt; 2.10
      mtools: upgrade 4.0.47 -&gt; 4.0.48
      nghttp2: upgrade 1.64.0 -&gt; 1.65.0
      openssh: upgrade 9.9p1 -&gt; 9.9p2
      orc: upgrade 0.4.40 -&gt; 0.4.41
      python3-bcrypt: upgrade 4.2.1 -&gt; 4.3.0
      python3-beartype: upgrade 0.19.0 -&gt; 0.20.0
      python3-hypothesis: upgrade 6.125.3 -&gt; 6.127.4
      python3-pyelftools: upgrade 0.31 -&gt; 0.32
      python3-pytest: upgrade 8.3.4 -&gt; 8.3.5
      python3-setuptools: upgrade 75.8.0 -&gt; 75.8.2
      python3-trove-classifiers: upgrade 2025.1.15.22 -&gt; 2025.2.18.16
      python3-websockets: upgrade 14.2 -&gt; 15.0
      re2c: upgrade 4.0.2 -&gt; 4.1
      repo: upgrade 2.51 -&gt; 2.52
      shadow: update 4.17.2 -&gt; 4.17.3
      stress-ng: upgrade 0.18.10 -&gt; 0.18.11
      wireless-regdb: upgrade 2024.10.07 -&gt; 2025.02.20
      zstd: upgrade 1.5.6 -&gt; 1.5.7
      gi-docgen: upgrade 2024.1 -&gt; 2025.3
      btrfs-tools: upgrade 6.12 -&gt; 6.13
      at-spi2-core: upgrade 2.54.1 -&gt; 2.56.0
      libjitterentropy: upgrade 3.6.1 -&gt; 3.6.2
      netbase: upgrade 6.4 -&gt; 6.5
      python3-pycryptodome: upgrade 3.21.0 -&gt; 3.22.0
      python3-pycryptodomex: upgrade 3.21.0 -&gt; 3.22.0
      python3-pygobject: upgrade 3.50.0 -&gt; 3.52.2
      systemd: upgrade 257.3 -&gt; 257.4
      adwaita-icon-theme: upgrade 47.0 -&gt; 48.0
      python3-dbus: upgrade 1.3.2 -&gt; 1.4.0
      libdnf: upgrade 0.73.4 -&gt; 0.74.0
      ell: upgrade 0.75 -&gt; 0.76
      gawk: upgrade 5.3.1 -&gt; 5.3.2
      harfbuzz: upgrade 11.0.0 -&gt; 11.0.1
      lighttpd: upgrade 1.4.78 -&gt; 1.4.79
      meson: upgrade 1.7.1 -&gt; 1.7.2
      python3-calver: upgrade 2025.04.01 -&gt; 2025.04.02
      python3-flit-core: upgrade 3.11.0 -&gt; 3.12.0
      python3-lxml: upgrade 5.3.1 -&gt; 5.3.2
      python3-typing-extensions: upgrade 4.13.0 -&gt; 4.13.1
      systemd: upgrade 257.4 -&gt; 257.5
      cmake: Avoid using undocumented type for CURLOPT_NETRC values
      llvm: upgrade 20.1.1 -&gt; 20.1.2
      sbc: upgrade 2.0 -&gt; 2.1
      hwdata: upgrade 0.393 -&gt; 0.394
      glslang: upgrade 1.4.309.0 -&gt; 1.4.313.0
      gst-devtools: upgrade 1.26.0 -&gt; 1.26.1
      gstreamer1.0-libav: upgrade 1.26.0 -&gt; 1.26.1
      gstreamer1.0-plugins-bad: upgrade 1.26.0 -&gt; 1.26.1
      gstreamer1.0-plugins-base: upgrade 1.26.0 -&gt; 1.26.1
      gstreamer1.0-plugins-good: upgrade 1.26.0 -&gt; 1.26.1
      gstreamer1.0-plugins-ugly: upgrade 1.26.0 -&gt; 1.26.1
      gstreamer1.0-python: upgrade 1.26.0 -&gt; 1.26.1
      gstreamer1.0-rtsp-server: upgrade 1.26.0 -&gt; 1.26.1
      gstreamer1.0: upgrade 1.26.0 -&gt; 1.26.1
      gstreamer1.0-vaapi: upgrade 1.26.0 -&gt; 1.26.1
      spirv-headers: upgrade 1.4.309.0 -&gt; 1.4.313.0
      spirv-tools: upgrade 1.4.309.0 -&gt; 1.4.313.0
      vulkan-headers: upgrade 1.4.309.0 -&gt; 1.4.313.0
      vulkan-loader: upgrade 1.4.309.0 -&gt; 1.4.313.0
      vulkan-tools: upgrade 1.4.309.0 -&gt; 1.4.313.0
      vulkan-utility-libraries: upgrade 1.4.309.0 -&gt; 1.4.313.0
      vulkan-validation-layers: upgrade 1.4.309.0 -&gt; 1.4.313.0
      vulkan-volk: upgrade 1.4.309.0 -&gt; 1.4.313.0
      appstream: upgrade 1.0.4 -&gt; 1.0.5
      at-spi2-core: upgrade 2.56.1 -&gt; 2.56.2
      babeltrace2: upgrade 2.1.0 -&gt; 2.1.1
      barebox-tools: upgrade 2025.03.0 -&gt; 2025.04.0
      bind: upgrade 9.20.7 -&gt; 9.20.8
      boost: upgrade 1.87.0 -&gt; 1.88.0
      ca-certificates: upgrade 20241223 -&gt; 20250419
      ccache: upgrade 4.11.2 -&gt; 4.11.3
      cups: upgrade 2.4.11 -&gt; 2.4.12
      debianutils: upgrade 5.21 -&gt; 5.22
      diffstat: upgrade 1.67 -&gt; 1.68
      enchant2: upgrade 2.8.2 -&gt; 2.8.4
      epiphany: upgrade 48.0 -&gt; 48.3
      fmt: upgrade 11.1.4 -&gt; 11.2.0
      ghostscript: upgrade 10.05.0 -&gt; 10.05.1
      grep: upgrade 3.11 -&gt; 3.12
      harfbuzz: upgrade 11.1.0 -&gt; 11.2.0
      iso-codes: upgrade 4.17.0 -&gt; 4.18.0
      kexec-tools: upgrade 2.0.30 -&gt; 2.0.31
      libadwaita: upgrade 1.7.0 -&gt; 1.7.2
      libcgroup: upgrade 3.1.0 -&gt; 3.2.0
      libffi: upgrade 3.4.7 -&gt; 3.4.8
      libgpg-error: upgrade 1.51 -&gt; 1.55
      libjitterentropy: upgrade 3.6.2 -&gt; 3.6.3
      libjpeg-turbo: upgrade 3.0.1 -&gt; 3.1.0
      libpng: upgrade 1.6.47 -&gt; 1.6.48
      libsdl2: upgrade 2.32.4 -&gt; 2.32.6
      liburcu: upgrade 0.15.1 -&gt; 0.15.2
      libuv: upgrade 1.50.0 -&gt; 1.51.0
      libxft: upgrade 2.3.8 -&gt; 2.3.9
      libxkbcommon: upgrade 1.8.1 -&gt; 1.9.2
      man-db: upgrade 2.13.0 -&gt; 2.13.1
      pixman: upgrade 0.44.2 -&gt; 0.46.0
      python3-calver: upgrade 2025.04.02 -&gt; 2025.04.17
      python3-certifi: upgrade 2025.1.31 -&gt; 2025.4.26
      python3-hatch-fancy-pypi-readme: upgrade 24.1.0 -&gt; 25.1.0
      python3-hypothesis: upgrade 6.131.0 -&gt; 6.131.14
      python3-jsonschema-specifications: upgrade 2024.10.1 -&gt; 2025.4.1
      python3-lxml: upgrade 5.3.2 -&gt; 5.4.0
      python3-mako: upgrade 1.3.9 -&gt; 1.3.10
      python3-markdown: upgrade 3.7 -&gt; 3.8
      python3-meson-python: upgrade 0.17.1 -&gt; 0.18.0
      python3-packaging: upgrade 24.2 -&gt; 25.0
      python3-pdm: upgrade 2.23.1 -&gt; 2.24.1
      python3-pip: upgrade 25.0.1 -&gt; 25.1.1
      python3-poetry-core: upgrade 2.1.2 -&gt; 2.1.3
      python3-pycairo: upgrade 1.27.0 -&gt; 1.28.0
      python3-typing-extensions: upgrade 4.13.1 -&gt; 4.13.2
      python3-yamllint: upgrade 1.37.0 -&gt; 1.37.1
      re2c: upgrade 4.1 -&gt; 4.2
      repo: upgrade 2.53 -&gt; 2.54
      resolvconf: upgrade 1.92 -&gt; 1.93
      shaderc: upgrade 2025.1 -&gt; 2025.2
      swig: upgrade 4.3.0 -&gt; 4.3.1

Weisser, Pascal (1):
      ref-manual: Add missing variable IMAGE_ROOTFS_MAXSIZE

Xiaotian Wu (3):
      grub2: Add loongarch64 as grub target
      llvm: Use LoongArch as host for LLVM architecture
      lib/oe/elf.py: Add loongarch64 architecture definition for musl

Yash Shinde (4):
      rust: Update "do_update_snapshot" task for rust-snapshot.inc
      rust: Upgrade 1.84.1-&gt;1.85.0
      rust: Upgrade 1.85.0-&gt;1.85.1
      gcc: fix incorrect preprocessor line numbers in large files

Yi Zhao (22):
      libsdl2: upgrade 2.30.11 -&gt; 2.30.12
      psplash: update to latest rev
      kea: make kea environment available to lfc process
      kea: avoid assertion on empty DHCPDISCOVER packet
      nfs-utils: fix rpc.statd path in initscript
      ltp: upgrade 20240930 -&gt; 20250130
      coreutils: fix segfault for ls --context
      base-files: add gshadow entry in nsswitch.conf
      oeqa/selftest/wic: add test for excluding symlinks
      python3-unittest-automake-output: fix version mismatch
      dpkg: drop suffix from version number
      sign_rpm.bbclass: fix variable assignment whitespace
      makedumpfile: upgrade 1.7.6 -&gt; 1.7.7
      libsass: fix runtime version
      sassc: fix runtime version
      python3-pygobject: RDEPENDS on gobject-introspection
      openssl: add fips support
      iputils: Security fix for CVE-2025-47268
      libcap: upgrade 2.75 -&gt; 2.76
      gnu-efi: upgrade 4.0.0 -&gt; 4.0.1
      less: upgrade 668 -&gt; 678
      psplash: update to latest rev

Yoann Congal (13):
      ref-manual/variables: document OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS
      reproducible-builds: change/add titles in the "How" section
      reproducible-builds: add a "How to" section with OEQA* variables
      release-notes-5.2: Add new variable OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS
      bitbake: tinfoil: Refactor temporary data tracking in a context manager
      bitbake: tinfoil: Track data during finalizeData
      sanity: Refactor "C++ toolchain support this flag" check
      sanity: Check if the C++ toolchain supports --std=gnu++20
      poky.yaml.in: Raise minimum GCC version to 10.1
      cargo-c: Update patch Upstream-Status
      rpm-sequoia-crypto-policy: Fix build failure on Debian 12+Strongswan
      bitbake: knotty: pass failed task logs through the log infrastructure
      selftest/reproducible: Limit memory used by diffoscope

Yogesh Tyagi (1):
      ltp: backport patch to fix compilation error for Skylake -march=x86-64-v3

Yogita Urade (5):
      webkitgtk: upgrade 2.46.5 -&gt; 2.46.6
      libcap: upgrade 2.73 -&gt; 2.74
      libarchive: upgrade 3.7.7 -&gt; 3.7.8
      webkitgtk: upgrade 2.48.0 -&gt; 2.48.1
      webkitgtk: upgrade 2.48.1 -&gt; 2.48.2

Zoltan Boszormenyi (1):
      linux-firmware: Fix packaging of some subpackages

Zoltán Böszörményi (8):
      rpm-sequoia-crypto-policy: New recipe
      rpm-sequoia: New recipe for version 1.7.0
      rpm: Set SEQUOIA_CRYPTO_POLICY in wrapped tools
      dnf: Set SEQUOIA_CRYPTO_POLICY in wrapped tools
      oeqa/selftest/cases/signing.py: Re-enable self-test
      rpm-sequoia-crypto-policy: clean up dependencies
      rpm-sequoia-crypto-policy: Don't validate gnutls crypto policy
      mesa: add support for RustiCL under PACKAGECONFIG "opencl"

denisova-ok (1):
      buildstats.py: extend diskstats support for NVMe and flexible token count

hongxu (4):
      libxml2: upgrade 2.13.5 -&gt; 2.13.6
      tcmode-default: bump GOVERSION to 1.24.0
      spdx30: test the existence of directory before walking
      patch: upgrade 2.7.6 -&gt; 2.8

leimaohui (11):
      gst-devtools: upgrade 1.24.12 -&gt; 1.26.0
      gstreamer1.0: upgrade 1.24.12 -&gt; 1.26.0
      gstreamer1.0-libav: upgrade 1.24.12 -&gt; 1.26.0
      gstreamer1.0-vaapi: upgrade 1.24.12 -&gt; 1.26.0
      gstreamer1.0-rtsp-server: upgrade 1.24.12 -&gt; 1.26.0
      gstreamer1.0-plugins-base: upgrade 1.24.12 -&gt; 1.26.0
      gstreamer1.0-plugins-good: upgrade 1.24.12 -&gt; 1.26.0
      gstreamer1.0-plugins-ugly: upgrade 1.24.12 -&gt; 1.26.0
      gstreamer1.0-python: upgrade 1.24.12 -&gt; 1.26.0
      gstreamer1.0-plugins-bad: upgrade 1.24.12 -&gt; 1.26.0
      ethtool: upgrade 6.11 -&gt; 6.14

rajmohan r (1):
      glibc-y2038-tests: remove glibc-y2038-tests_2.41.bb recipe

Change-Id: I3960d321a74bc6045902d8ac9fd2a3de49b35597
Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
</content>
</entry>
<entry>
<title>u-boot: kernel-fitimage: Restore FIT_SIGN_INDIVIDUAL="1" behavior</title>
<updated>2025-05-06T17:57:20+00:00</updated>
<author>
<name>Marek Vasut</name>
<email>marex@denx.de</email>
</author>
<published>2025-02-22T00:20:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=8526f2b4e97436e47c8edcf1f8589b32118efe3b'/>
<id>urn:sha1:8526f2b4e97436e47c8edcf1f8589b32118efe3b</id>
<content type='text'>
OE FIT_SIGN_INDIVIDUAL is implemented in an unusual manner,
where the resulting signed fitImage contains both signed
images and signed configurations, possibly using different
keys. This kind of signing of images is redundant, but so is
the behavior of FIT_SIGN_INDIVIDUAL="1" and that is here to
stay.

Adjust the process of public key insertion into u-boot.dtb
such that if FIT_SIGN_INDIVIDUAL==1, the image signing key
is inserted into u-boot.dtb first, and in any case the
configuration signing key is inserted into u-boot.dtb last.

The verification of the keys inserted into u-boot.dtb against
unused.itb is performed only for FIT_SIGN_INDIVIDUAL!=1 due to
mkimage limitation, which does not allow mkimage -f auto-conf
to update the generated unused.itb, and instead rewrites it.

Fixes: 259bfa86f384 ("u-boot: kernel-fitimage: Fix dependency loop if UBOOT_SIGN_ENABLE and UBOOT_ENV enabled")
(From OE-Core rev: 0106e5efab99c8016836a2ab71e2327ce58a9a9d)

Signed-off-by: Marek Vasut &lt;marex@denx.de&gt;
Signed-off-by: Mathieu Dubois-Briand &lt;mathieu.dubois-briand@bootlin.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
(cherry picked from commit d63dba2f98edf89558647e336b19d805b00f4d98)
Change-Id: I7d231ac5d1db1fbca3121b98923dfd64ec971664
</content>
</entry>
<entry>
<title>Reapply "boost: update 1.86.0 -&gt; 1.87.0"</title>
<updated>2025-04-22T16:18:02+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2025-02-12T21:52:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=8cdd98df04042c54bb470143be5bc7a5fe8fc790'/>
<id>urn:sha1:8cdd98df04042c54bb470143be5bc7a5fe8fc790</id>
<content type='text'>
This reverts commit 0dcec9802d2d50bd5d59e07eca461d9614f6b6c1.

Change-Id: Ia1a1fb2d228d24b79b77990e3234908343b88a97
Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
Signed-off-by: Ed Tanous &lt;ed@tanous.net&gt;
</content>
</entry>
<entry>
<title>bitbake: fetch2: Partial revert decodeurl() to not use the URI class</title>
<updated>2025-04-17T14:01:14+00:00</updated>
<author>
<name>Stefan Herbrechtsmeier</name>
<email>stefan.herbrechtsmeier@weidmueller.com</email>
</author>
<published>2025-03-07T09:43:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=5562ba89cfc493f292271e21f46e71b2ec6915b1'/>
<id>urn:sha1:5562ba89cfc493f292271e21f46e71b2ec6915b1</id>
<content type='text'>
This partial reverts commit a5d569c94700f04b8193c6bccae5af619931b00f
which changes decodeurl() to use the URI class to parse the URL instead
of doing it itself. While reusing code is generally a good idea, using
urllib.parse.urlparse() (which the URI class does) to parse the regular
expression "URLs" that are used in PREMIRRORS and MIRRORS does not work.
A regular expression URL containing https?://... would be silently
ignored, while a URL using a negative lookahead such as
git://(?!internal\.git\.server).*/.* would result in a cryptic error:

  Exception: re.error: missing ), unterminated subpattern at position 0

The problem is that urllib.parse.urlparse() treats the ? as the start of
URL parameters and thus stops parsing whatever part of the URL it was
parsing. Restore the old function and use it in the PREMIRRORS and
MIRRORS code.

(Bitbake rev: f8a7712754e6d0199a0d227fca288307b935368d)

Signed-off-by: Peter Kjellerstedt &lt;peter.kjellerstedt@axis.com&gt;
Signed-off-by: Stefan Herbrechtsmeier &lt;stefan.herbrechtsmeier@weidmueller.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
(cherry picked from commit bae86fe618075f28b708d2c89d247937a75226fc)
Change-Id: I5e5ace69ee5daa924ad28c5a161e2a2d251664b5
</content>
</entry>
<entry>
<title>subtree updates</title>
<updated>2025-04-14T23:50:02+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2025-02-13T20:13:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=43a6b7c2a48b0cb1381af4d3192d22a12ead65f0'/>
<id>urn:sha1:43a6b7c2a48b0cb1381af4d3192d22a12ead65f0</id>
<content type='text'>
meta-openembedded: 0623501548..f6352cd450:
  Alex Kiernan (3):
        mdns: Upgrade 2559.40.32 -&gt; 2559.60.39.0.1
        mdns: Correct RPROVIDE to match libdns-sd in avahi
        mdns: Separate out mdns-libnss-mdns package

  Alistair Francis (2):
        libspdm: Fixup the build flags
        spdm-utils: Initial support for spdm-utils

  Andrew Geissler (1):
        libspdm: add support for ppc64le

  Ayoub Zaki (1):
        bmap-writer: Upgrade to 1.0.2

  Bartosz Golaszewski (3):
        libgpiod: fix ptests failure
        python3-gpiod: fix ptest failure
        python3-gpiod: update to v2.2.4

  Bastian Germann (1):
        python3-crc32c: Declare Zlib license

  Changqing Li (1):
        phpmyadmin: upgrade 5.2.1 -&gt; 5.2.2

  Dmitry Baryshkov (3):
        android-tools: drop useless USB_DEBUGGING_ENABLED handling
        android-tools: fix compilation because of include path poisoning
        android-tools: build without gold

  Eduardo Ferreira (1):
        libatasmart: fix SRC_URI protocol

  Ethan Roderick (1):
        openldap: make license match spdx identifier

  Gyorgy Sarvari (9):
        mod-dnssd: update SRC_URI
        capnproto: remove binaries from target-build, add bbclass
        gegl: Clean up PACKAGECONFIG
        ibus: missing installed file w/ gtk2 PACKAGECONFIG
        gnome-commander: missing dependency for tests PACKAGECONFIG
        folks: add missing dependency
        mozjs-128: keep persistent state directory in WORKDIR
        grilo: remove obsolete comment
        mutter: fix profiler PACKAGECONFIG

  Hongxu Jia (2):
        net-snmp: correct typo on RDEPENDS
        nmap: fix racing issue at do_compile

  Jose Quaresma (1):
        networkmanager: remove nmtui from EXTRA_OEMESON

  Khem Raj (8):
        python3-lief: Update to tip of master branch
        python3-lief: Disable ccache
        python3-lief: Disable build on 32bit x86
        python3-lief: Define LIEF_BUILD_DIR as B
        gphoto: Fix regex to remove --sysroot from CC in config.h
        python3-soupsieve: Add missing rdep on python3-typing-extensions for ptests
        python3-typer: Ignore failing ptests
        python3-google-auth: Disable TestDecryptPrivateKey ptest

  Leon Anavi (12):
        sip: Upgrade 6.9.1 -&gt; 6.10.0
        valkey: Upgrade 8.0.1 -&gt; 8.0.2
        python3-aiohttp: Upgrade 3.11.11 -&gt; 3.11.12
        python3-aiohappyeyeballs: Upgrade 2.4.4 -&gt; 2.4.6
        python3-semver: Upgrade 3.0.2 -&gt; 3.0.4
        python3-pymodbus: Upgrade 3.8.3 -&gt; 3.8.6
        python3-python-vlc: Upgrade 3.0.2012 -&gt; 3.0.21203
        python3-tomli-w: Upgrade 1.1.0 -&gt; 1.2.0
        python3-pydantic: Upgrade 2.10.5 -&gt; 2.10.6
        python3-git-pw: Upgrade 2.7.0 -&gt; 2.7.1
        python3-whitenoise: Upgrade 6.8.2 -&gt; 6.9.0
        python3-pylint: Upgrade 3.3.3 -&gt; 3.3.4

  Markus Volk (1):
        gegl: update 0.4.52 -&gt; 0.4.54

  Martin Jansa (1):
        spectre-meltdown-checker: fix script name

  Peter Kjellerstedt (2):
        libeigen: Remove LGPL code
        licenses/MINPACK: Remove

  Peter Marko (22):
        protobuf: remove unneeded atomic linker flag
        protobuf: remove rdepends on abseil-cpp
        jsoncpp: enable nativesdk build
        protobuf: use system jsoncpp
        protobuf: don't download git submodules
        protobuf: add MIT to license
        python3-protobuf: add MIT to license
        protobuf: set CVE_PRODUCT
        python3-protobuf: set CVE_PRODUCT
        python3-grpcio: drop obsolete variable
        python3-grpcio: add patch to allow unbundled build
        python3-grpcio: use openssl instead of bundled boringssl-with-bazel
        python3-grpcio: use system zlib
        python3-grpcio: use system c-ares
        python3-grpcio: use system re2
        python3-grpcio: use system abseil-cpp
        python3-grpcio: add missing license
        python3-grpcio: add licenses from third party components
        grpc: remove unneeded dependencies
        grpc: remove workaround for GCC 4.8 in Ubuntu-14.04
        grpc: fix protobuf-lite package config
        grpc: add licenses from third party components

  Pulkit Singh Tak (1):
        opencv: upgrade 4.10.0 -&gt; 4.11.0

  RAED (2):
        Update spdm-utils_0.7.2.bb
        Update libspdm_3.6.0.bb

  Thomas Schlien (1):
        python3-gevent: upgrade 24.2.1 -&gt; 24.11.1

  Wang Mingyu (67):
        gjs: Fix install conflict when enable multilib.
        apache2: upgrade 2.4.62 -&gt; 2.4.63
        botan: upgrade 3.6.1 -&gt; 3.7.1
        ctags: upgrade 6.1.20250119.0 -&gt; 6.1.20250202.0
        dool: upgrade 1.3.3 -&gt; 1.3.4
        flatbuffers: upgrade 24.12.23 -&gt; 25.1.24
        gnome-system-monitor: upgrade 47.0 -&gt; 47.1
        gparted: upgrade 1.6.0 -&gt; 1.7.0
        libdaq: upgrade 3.0.17 -&gt; 3.0.18
        libjcat: upgrade 0.2.2 -&gt; 0.2.3
        libmozilla-ca-perl: upgrade 20240924 -&gt; 20250202
        libmxml: upgrade 4.0.3 -&gt; 4.0.4
        libpaper: upgrade 2.2.5 -&gt; 2.2.6
        libspelling: upgrade 0.4.5 -&gt; 0.4.6
        libzip: upgrade 1.11.2 -&gt; 1.11.3
        memcached: upgrade 1.6.34 -&gt; 1.6.36
        mpich: upgrade 4.2.3 -&gt; 4.3.0
        multipath-tools: upgrade 0.10.0 -&gt; 0.11.0
        mutter: upgrade 47.4 -&gt; 47.5
        nautilus: upgrade 47.1 -&gt; 47.2
        nss: upgrade 3.107 -&gt; 3.108
        osinfo-db: upgrade 20240701 -&gt; 20250124
        parallel: upgrade 20241222 -&gt; 20250122
        python3-alembic: upgrade 1.14.0 -&gt; 1.14.1
        python3-beautifulsoup4: upgrade 4.12.3 -&gt; 4.13.3
        python3-black: upgrade 24.10.0 -&gt; 25.1.0
        python3-cantools: upgrade 40.1.1 -&gt; 40.2.0
        python3-cmd2: upgrade 2.5.9 -&gt; 2.5.11
        python3-dateparser: upgrade 1.2.0 -&gt; 1.2.1
        python3-dbus-fast: upgrade 2.30.2 -&gt; 2.33.0
        python3-deprecated: upgrade 1.2.15 -&gt; 1.2.18
        python3-eth-utils: upgrade 5.1.0 -&gt; 5.2.0
        python3-evdev: upgrade 1.7.1 -&gt; 1.8.0
        python3-eventlet: upgrade 0.37.0 -&gt; 0.39.0
        python3-executing: upgrade 2.1.0 -&gt; 2.2.0
        python3-fsspec: upgrade 2024.12.0 -&gt; 2025.2.0
        python3-grpcio-channelz: upgrade 1.69.0 -&gt; 1.70.0
        python3-grpcio-reflection: upgrade 1.69.0 -&gt; 1.70.0
        python3-grpcio-tools: upgrade 1.69.0 -&gt; 1.70.0
        python3-grpcio: upgrade 1.69.0 -&gt; 1.70.0
        python3-importlib-metadata: upgrade 8.5.0 -&gt; 8.6.1
        python3-inline-snapshot: upgrade 0.19.3 -&gt; 0.20.1
        python3-ipython: upgrade 8.31.0 -&gt; 8.32.0
        python3-jdatetime: upgrade 5.1.0 -&gt; 5.2.0
        python3-lief: upgrade 0.16.2 -&gt; 0.16.3
        python3-lz4: upgrade 4.3.3 -&gt; 4.4.3
        python3-marshmallow: upgrade 3.26.0 -&gt; 3.26.1
        python3-mlcommons-loadgen: upgrade 5.0.5 -&gt; 5.0.14
        python3-nanobind: upgrade 2.4.0 -&gt; 2.5.0
        python3-paramiko: upgrade 3.5.0 -&gt; 3.5.1
        python3-pdm: upgrade 2.22.2 -&gt; 2.22.3
        python3-prettytable: upgrade 3.12.0 -&gt; 3.14.0
        python3-prompt-toolkit: upgrade 3.0.48 -&gt; 3.0.50
        python3-pymongo: upgrade 4.10.1 -&gt; 4.11
        python3-pyparted: upgrade 3.12.0 -&gt; 3.13.0
        python3-pytest-lazy-fixtures: upgrade 1.1.1 -&gt; 1.1.2
        python3-qface: upgrade 2.0.11 -&gt; 2.0.12
        python3-rlp: upgrade 4.0.1 -&gt; 4.1.0
        python3-starlette: upgrade 0.45.2 -&gt; 0.45.3
        python3-twine: upgrade 6.0.1 -&gt; 6.1.0
        python3-tzdata: upgrade 2024.2 -&gt; 2025.1
        python3-web3: upgrade 7.7.0 -&gt; 7.8.0
        python3-xlsxwriter: upgrade 3.2.0 -&gt; 3.2.1
        python3-zeroconf: upgrade 0.141.0 -&gt; 0.143.0
        smarty: update 5.4.2 -&gt; 5.4.3
        xmlsec1: upgrade 1.3.5 -&gt; 1.3.7
        wireshark: upgrade 4.2.9 -&gt; 4.2.10

  Yi Zhao (1):
        opencv: fix build for ppc64

meta-arm: 03af0c72f1..7c2df809e0:
  Jon Mason (4):
        arm/trusted-firmware-a: Add cot-dt2c
        arm/trusted-firmware-a: Move 2.11 to meta-arm-bsp
        CI/machine-summary: remove binary toolchains and sort entries alphabetically
        arm/trusted-firmware-a: move qemuarm64-secureboot file to the correct location

  Mikko Rapeli (1):
        systemd-boot: update systemd-bootaarch64.efi path

  Philip Puk (1):
        arm-bsp/u-boot: corstone1000: Reserve memory for RSS comm pointer access protocol

meta-raspberrypi: b58e2af859..4f934c0ed1:
  Gijs Peskens (2):
        raspberrypi5.conf: Add CM5 dtb's
        rpi-base: Fix CM5 boot panic

  Markus Volk (1):
        linux-raspberrypi: add recipe for 6.12

poky: c2da016918..c49684b48b:
  Adrian Freihofer (4):
        kernel-fitimage.bbclass: introduce FIT_UBOOT_ENV
        kernel-fitimage.bbclass: do not use the UBOOT_ENV variable
        oe-selftest: fitimage split run_dumpimage function
        oe-selftest: fitimage add u-boot env script

  Alex Kiernan (4):
        alsa-utils: Backport fix for alsa_restore_go/std
        nss-mdns: Rename recipe to avahi-libnss-mdns
        avahi: Switch RRECOMMENDS to avahi-libnss-mdns
        linux-firmware: Add RTL8723DS blobs into ${PN}-rtl8723

  Alexander Kanavin (3):
        valgrind: update 3.23.0 -&gt; 3.24.0 (ptest fails, vg_regtest needs rebase)
        rust: restore parallel builds, disable lto only for rustdoc
        libxkbcommon: convert to git

  Antonin Godard (5):
        Move devtool doc from extensible to dev manual
        dev-manual/devtool: remove reference to the extensible SDK
        ref-manual/faq: add q&amp;a on systemd as default
        migration-5.2: document BB_CURRENT_MC default value change
        migration-5.2: add virtual provider change

  Artur Kowalski (1):
        systemd-systemctl: fix handling of instance unit files

  Bastian Germann (5):
        docbook-xsl-stylesheets: Use SPDX identifier
        hwdata: Use SPDX identifier
        licenses: Map SGIv1 to SGI-OpenGL
        tcf-agent: Use SPDX identifier
        unfs3: Use SPDX identifier

  Bruce Ashfield (6):
        kernel: drop 6.6 reference kernels
        kernel: remove unused 6.10 CVE exclusion file
        linux-yocto/6.12: update to v6.12.12
        linux-yocto/6.12: update to v6.12.13
        poky-alt: switch preferred kernel to 6.12
        yocto-bsp: drop linux-yocto 6.6 bbappend

  Chen Qi (1):
        python3-bcrypt: fix ptest

  Daniel McGregor (1):
        rpm: add PACKAGECONFIG dependencies

  Dmitry Baryshkov (2):
        linux-firmware: split the qca6390 firmware
        linux-firmware: further split qca61x4 package

  Hongxu Jia (2):
        script/relocate_sdk.py: check dynamic loader arch before relocating interpreter
        toolchain-shar-relocate.sh: support multiple dynamic loaders for multilib

  Igor Opaniuk (7):
        README.OE-Core.md: fix markdown style issues
        MAINTAINERS.md: fix markdown style issues
        README.qemu.md: fix markdown style issues
        SECURITY.md: fix markdown style issues
        patchtest/README.md: fix markdown style issues
        rust/README-rust.md: fix markdown style issues
        wic: bootimg-efi: Support + symbol in filenames

  Joshua Watt (2):
        lib/oe/sbom30: Fix SHA256 hash dictionary
        spdx30: Include files in rootfs

  Khem Raj (5):
        binutils: Upgrade to 2.44 release
        gdb: Upgrade to 16.2 relese
        glibc: Upgrade to 2.41 release
        mpfr: Fix build with glibc 2.41
        python3-cffi: Fix failing ptests with clang

  Koen Kooi (1):
        uki.bbclass: remove duplicate d.getVar('DEPLOY_DIR_IMAGE')

  Lee Chee Yang (2):
        migration-guides: add release notes for 4.0.24
        migration-guides: add release notes for 5.1.2

  Markus Volk (1):
        xorg-minimal-fonts: dont try to install builddir

  Mikko Rapeli (5):
        testimage.bbclass: fix logDetails() call on error path
        systemd-boot-native: move do_install() to after do_patch()
        uki.bbclass: capture ukify command stdout and stderr
        systemd-boot-native: fix kernel signature for secureboot
        genericarm64.conf: allow overriding u-boot and qemuboot variables

  Moritz Haase (1):
        meta: Enable '-o pipefail' for the SDK installer

  Nikolai Merinov (1):
        bitbake: parse: Forbid ambiguous assignments to ${.}, ${+}, and ${:} variables

  Ninette Adhikari (1):
        scripts/buildperf: Add chart tabs for commit count/time

  Omri Sarig (2):
        python3: Fix typo in python3-manifest.json
        python3: Fix typo in create_manifest3.py

  Peter Marko (5):
        go: upgrade 1.22.11 -&gt; 1.22.12
        classes: switch p7zip to 7zip
        cmake: apply parallel build settings to ptest tasks
        curl: upgrade 8.11.1 -&gt; 8.12.0
        python3: upgrade 3.13.1 -&gt; 3.13.2

  Quentin Schulz (4):
        bitbake: b4-config: Add basic support for b4 contribution workflow
        scripts: add b4-wrapper for poky
        b4-config: Add basic support for b4 contribution workflow
        b4-wrapper-poky.py: send changes to .b4-config to the poky mailing list

  Randy MacLeod (2):
        valgrind: disable ptests
        ptest-packagelists: remove valgrind

  Richard Purdie (59):
        at-spi2-core: upgrade 2.54.0 -&gt; 2.54.1
        bind: upgrade 9.20.4 -&gt; 9.20.5
        diffoscope: upgrade 284 -&gt; 287
        epiphany: upgrade 47.2 -&gt; 47.3.1
        git: upgrade 2.47.1 -&gt; 2.48.1
        gnupg: upgrade 2.5.2 -&gt; 2.5.3
        gst-devtools: upgrade 1.24.10 -&gt; 1.24.12
        gstreamer1.0-libav: upgrade 1.24.10 -&gt; 1.24.12
        gstreamer1.0-plugins-{bad,ugly,base,good,rtsp-server}: upgrade 1.24.10 -&gt; 1.24.12
        gstreamer1.0-python: upgrade 1.24.10 -&gt; 1.24.12
        gstreamer1.0: upgrade 1.24.10 -&gt; 1.24.12
        gstreamer1.0-vaapi: upgrade 1.24.10 -&gt; 1.24.12
        harfbuzz: upgrade 10.1.0 -&gt; 10.2.0
        iproute2: upgrade 6.12.0 -&gt; 6.13.0
        libexif: upgrade 0.6.24 -&gt; 0.6.25
        libinput: upgrade 1.27.0 -&gt; 1.27.1
        libslirp: upgrade 4.8.0 -&gt; 4.9.0
        libsoup: upgrade 3.6.1 -&gt; 3.6.4
        libwpe: upgrade 1.16.0 -&gt; 1.16.1
        lighttpd: upgrade 1.4.76 -&gt; 1.4.77
        lzlib: upgrade 1.14 -&gt; 1.15
        mc: upgrade 4.8.32 -&gt; 4.8.33
        mmc-utils: upgrade to latest revision
        msmtp: upgrade 1.8.27 -&gt; 1.8.28
        mtools: upgrade 4.0.46 -&gt; 4.0.47
        piglit: upgrade to latest revision
        python3-attrs: upgrade 24.3.0 -&gt; 25.1.0
        python3-certifi: upgrade 2024.12.14 -&gt; 2025.1.31
        python3-hypothesis: upgrade 6.123.2 -&gt; 6.124.7
        python3-license-expression: upgrade 30.4.0 -&gt; 30.4.1
        python3-more-itertools: upgrade 10.5.0 -&gt; 10.6.0
        python3-pip: upgrade 24.3.1 -&gt; 25.0
        python3-poetry-core: upgrade 2.0.0 -&gt; 2.0.1
        python3-pygments: upgrade 2.19.0 -&gt; 2.19.1
        python3-pyopenssl: upgrade 24.3.0 -&gt; 25.0.0
        python3-pytz: upgrade 2024.2 -&gt; 2025.1
        python3-referencing: upgrade 0.35.1 -&gt; 0.36.2
        python3-ruamel-yaml: upgrade 0.18.9 -&gt; 0.18.10
        python3-setuptools: upgrade 75.6.0 -&gt; 75.8.0
        python3-trove-classifiers: upgrade 2024.10.21.16 -&gt; 2025.1.15.22
        python3-websockets: upgrade 14.1 -&gt; 14.2
        repo: upgrade 2.50.1 -&gt; 2.51
        stress-ng: upgrade 0.18.08 -&gt; 0.18.09
        sysklogd: upgrade 2.6.2 -&gt; 2.7.0
        wayland-protocols: upgrade 1.39 -&gt; 1.40
        cmake: upgrade 3.31.4 -&gt; 3.31.5
        llvm: upgrade 19.1.6 -&gt; 19.1.7
        ed: upgrade 1.20.2 -&gt; 1.21
        libpng: upgrade 1.6.44 -&gt; 1.6.45
        lzip: upgrade 1.24.1 -&gt; 1.25
        python3-rdflib: upgrade 7.1.1 -&gt; 7.1.3
        Revert "selftest/sstatetests: run CDN mirror check only once"
        lib/oeqa/metadata: Add commit_time to branch metadata being saved
        go: Fix to work without gold on aarch64
        recipes: Drop ld-is-gold support
        libsecret: Inherit bash-completion
        oe-build-perf-report: Use commit_time if available
        oeqa/runtime: Add debugging if networking fails
        package_ipk: Use preferred form of --force-postinstall

  Ross Burton (5):
        systemd-serialgetty: add comments explaining use
        nfs-utils: remove python hashbang rewrites
        openssl: fix register trampling on aarch64
        libslirp: set the PV in the filename
        dbus: explictly set the path to systemctl

  Simon A. Eugster (2):
        documentation: Fix typo in standards.md
        ref-manual: Describe grub-efi-cfg overrides and GRUB_TITLE

  Simone Weiß (2):
        libseccomp: Upgrade 2.5.5 -&gt; 2.6
        libsecret: upgrade 0.21.4 -&gt; 0.21.6

  Stefan Herbrechtsmeier (10):
        bitbake: fetch2: do not decode user from file URI
        bitbake: tests: fetch: add test for file URI with @
        bitbake: tests: fetch: use lower case hostnames
        bitbake: tests: fetch: quote URI password as per RFC3986
        bitbake: fetch2: remove duplicated code in url decode and encode
        bitbake: fetch2: remove unnecessary expand function calls
        bitbake: fetch2: local: use path variable
        bitbake: fetch2: remove unnecessary unquote
        bitbake: fetch2: ssh: use common localpath handling
        bitbake: fetch2: clearcase: remove double DL_DIR from localfile

  Tom Hochstein (1):
        uboot-config: Fix devtool modify

  Trevor Gamblin (1):
        python3-typogrify: upgrade 2.0.7 -&gt; 2.1.0

  Vyacheslav Yurkov (1):
        meson.bbclass: Add an option to specify install tags

  Wang Mingyu (1):
        ncurses: Fix install conflict when enable multilib.

  Weisser, Pascal.ext (3):
        documentation.conf: Add description for IMAGE_ROOTFS_MAXSIZE variable
        kernel-fitImage: Take possible multiconfig into account.
        kernel-fitImage: Remove dependeny on initramfs image when bundled.

  Yash Shinde (1):
        qemuriscv: Enable Sv39 memory address scheme by default

  Yi Zhao (1):
        liburcu: add missing header file in uatomic/generic.h

  Yoann Congal (2):
        selftest/reproducible: Move a comment to follow the line it concerns
        selftest/reproducible: Add a method to test a single recipe

  Zoltán Böszörményi (2):
        release-notes-5.2: add information about rpm and sequoia
        dev-manual/packages: add information about signing changes

  hongxu (1):
        perl: fix do_install failed for nativesdk-perl

Change-Id: I869c30dcdba1353b5ef41ae10b907a041b5ffb1b
Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
</content>
</entry>
</feed>
