]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/log
thirdparty/openembedded/openembedded-core-contrib.git
7 days agopigz: use https: to fetch ross/wip/https
Ross Burton [Mon, 27 Oct 2025 18:14:43 +0000 (18:14 +0000)] 
pigz: use https: to fetch

7 days agooeqa/selftest/devtool: cover update-recipe --initial-rev ross/master
Babanpreet Singh [Tue, 14 Jul 2026 05:01:06 +0000 (05:01 +0000)] 
oeqa/selftest/devtool: cover update-recipe --initial-rev

The --initial-rev option had no selftest coverage, which let the
regression fixed by the previous commit go unnoticed since 2023.
Extend test_devtool_update_recipe to run update-recipe twice more with
--initial-rev: once with the recorded initial revision, which must
produce the same result as not passing the option, and once with a
revision in the middle of the local commits, which must export only
the commits after it.

Without the fix in the previous commit, the first --initial-rev
invocation fails with "Unable to find initial revision - please
specify it with --initial-rev".

AI-Generated: Uses Claude (claude-fable-5)
Signed-off-by: Babanpreet Singh <bbnpreetsingh@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agodevtool: standard: fix update-recipe/finish --initial-rev override
Babanpreet Singh [Tue, 14 Jul 2026 05:01:05 +0000 (05:01 +0000)] 
devtool: standard: fix update-recipe/finish --initial-rev override

Since 900129cbdf ("devtool: add support for git submodules") the
--initial-rev option of update-recipe and finish has been broken: the
parse loop in _get_patchset_revs() deliberately skips the recorded
"# initial_rev ." entry from the workspace bbappend when an override
is passed, but the override value itself is never inserted into the
initial_revs dict. For a recipe without submodules the dict therefore
ends up empty and update-recipe/finish fails in patch mode with:

  ERROR: Unable to find initial revision - please specify it with
  --initial-rev

i.e. passing --initial-rev produces the very error message that
instructs the user to pass --initial-rev. Before 900129cbdf the passed
value simply took precedence over the one recorded in the bbappend.

Seed initial_revs with the override before parsing so the option
behaves as documented again; recorded values are still used for
submodules and for the main repo when no override is given.

AI-Generated: Uses Claude (claude-fable-5)
Signed-off-by: Babanpreet Singh <bbnpreetsingh@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agopackage.bbclass: hardcode emit_pkgdata to run last
AshishKumar Mishra [Tue, 14 Jul 2026 05:00:03 +0000 (10:30 +0530)] 
package.bbclass: hardcode emit_pkgdata to run last

Ensure emit_pkgdata runs after all PACKAGEFUNCS to allow layers to
extend packaging behavior.
Layers can now append custom functions via PACKAGEFUNCS += "func_name"
and they will run before emit_pkgdata generates package metadata.

Signed-off-by: AshishKumar Mishra <emailaddress.ashish@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agooeqa/selftest/devtool: exercise devtool finish on an AUTOREV recipe
Babanpreet Singh [Tue, 14 Jul 2026 03:20:29 +0000 (03:20 +0000)] 
oeqa/selftest/devtool: exercise devtool finish on an AUTOREV recipe

Adjust test_devtool_add_fetch_git() so that the recipe it creates with
SRCREV = "${AUTOREV}" is finished into a temporary layer instead of
just being reset: check that devtool finish succeeds (before the
previous commit srcrev mode failed with "fatal: bad revision
'AUTOINC'"), that the finished recipe still uses SRCREV = "${AUTOREV}",
and that no spurious patch files are generated. The reset it replaces
is covered by many other devtool tests.

srcrev mode is forced with --mode srcrev: update-mode guessing only
considers git:// URLs, so for this gitsm:// recipe auto mode would
select patch mode and never reach the code path being tested.

[YOCTO #16354]

Cc: Alexander Kanavin <alex.kanavin@gmail.com>
AI-Generated: Uses Claude (claude-sonnet-5)
Signed-off-by: Babanpreet Singh <bbnpreetsingh@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agodevtool: standard: fix finish/update-recipe for recipes using AUTOREV
Babanpreet Singh [Tue, 14 Jul 2026 03:20:28 +0000 (03:20 +0000)] 
devtool: standard: fix finish/update-recipe for recipes using AUTOREV

For a recipe with SRCREV = "${AUTOREV}" (e.g. created by devtool add
--autorev), devtool finish and devtool update-recipe in srcrev mode
crash:

    INFO: Updating SRCREV in recipe minit_git.bb
    ...
    oe.patch.CmdError: Command Error: 'git format-patch --no-signature
    --no-numbered AUTOINC -o /tmp/oepatchxu0ig0v0 -- .' exited with 128
    Output: stderr: fatal: bad revision 'AUTOINC'

_update_recipe_srcrev() uses the recipe's SRCREV as the base revision
for exporting patches from the source tree, but for AUTOREV recipes
getVar('SRCREV') expands to the literal placeholder "AUTOINC", which is
not a valid git revision. Use the initial revision(s) recorded in the
workspace bbappend instead, as patch mode already does via
_get_patchset_revs().

Do not replace SRCREV with the current source tree HEAD for such
recipes either: pinning the revision on finish would silently drop the
floating revision the user explicitly asked for.

This is not a recent regression: the same crash reproduces at least as
far back as kirkstone, so it most likely dates back to the introduction
of devtool add --autorev.

[YOCTO #16354]

Reported-by: Gyorgy Sarvari <skandigraun@gmail.com>
AI-Generated: Uses Claude (claude-sonnet-5)
Signed-off-by: Babanpreet Singh <bbnpreetsingh@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agopython3-pyasn1: set CVE_PRODUCT
mark.yang [Mon, 13 Jul 2026 23:44:16 +0000 (08:44 +0900)] 
python3-pyasn1: set CVE_PRODUCT

The default python:pyasn1 does not match the NVD/CNA entries which use
pyasn1 as vendor, so CVEs like CVE-2026-30922 are never reported. Use
the exact pyasn1:pyasn1 pair.

Suggested-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: mark.yang <mark.yang@lge.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agopython3-ply: set CVE_PRODUCT
mark.yang [Mon, 13 Jul 2026 23:44:15 +0000 (08:44 +0900)] 
python3-ply: set CVE_PRODUCT

NVD registers ply as dabeaz:ply, so the default python:ply vendor
prefix never matches and no CVEs are reported. Use the exact
vendor:product pair.

CVE-2025-56005 will then show as unpatched; no fixed release exists.

Suggested-by: Paul Barker <paul@pbarker.dev>
Signed-off-by: mark.yang <mark.yang@lge.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agopython3-cryptography: set CVE_PRODUCT
mark.yang [Mon, 13 Jul 2026 23:44:14 +0000 (08:44 +0900)] 
python3-cryptography: set CVE_PRODUCT

NVD lists it as cryptography.io:cryptography and CNA lists it as
pyca:cryptography, so set both vendor:product pairs to match correctly
and precisely.

Suggested-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: mark.yang <mark.yang@lge.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agoos-release: set BUILD_ID vardepsexclude with weak assignment
Jose Quaresma [Fri, 10 Jul 2026 15:57:21 +0000 (16:57 +0100)] 
os-release: set BUILD_ID vardepsexclude with weak assignment

BUILD_ID is defined using a weak assignment so that we can modify it
externally. However, if we do it, we also need to do the same thing
for BUILD_ID[vardepsexclude] with the new value we assigned to
BUILD_ID.

Signed-off-by: Jose Quaresma <jose.quaresma@oss.qualcomm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agoscreen: upgrade 5.0.1 -> 5.0.2
Siddharth Doshi [Mon, 13 Jul 2026 06:53:26 +0000 (12:23 +0530)] 
screen: upgrade 5.0.1 -> 5.0.2

For detailed information, see the link below:
https://cgit.git.savannah.gnu.org/cgit/screen.git/commit/?h=v.5.0.2&id=e9206eff9c9c97bdae4809c97c801e221fcf641c

Signed-off-by: Siddharth Doshi <sdoshi@mvista.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agobindgen-cli: set CLANG_PATH in native and nativesdk wrappers to matching clang
Yogesh Tyagi [Sun, 12 Jul 2026 05:43:13 +0000 (13:43 +0800)] 
bindgen-cli: set CLANG_PATH in native and nativesdk wrappers to matching clang

bindgen uses the clang-sys crate to locate a 'clang' executable for
querying default include paths. clang-sys's search order is CLANG_PATH,
then libclang's directory, then 'llvm-config --bindir', then PATH.

When clang is used as the toolchain, the crossscripts llvm-config wrapper
honours YOCTO_ALTERNATE_EXE_PATH and reports the target sysroot bindir.
clang-sys's 'llvm-config --bindir' step then resolves to a target clang
that cannot execute on the build host, so bindgen fails with:

  could not run executable .../recipe-sysroot/usr/bin/clang-NN:
  No such file or directory (os error 2)

This is hit, for example, when building mesa with the rusticl/opencl
PACKAGECONFIG, whose do_compile runs the native bindgen against
rusticl_mesa_bindings.h, and when building rust-in-kernel via
kernel-yocto-rust.bbclass, which pulls in clang-native and
bindgen-cli-native.

Set CLANG_PATH to the clang that matches the wrapped libclang so
clang-sys uses the runnable binary first, short-circuiting the
llvm-config lookup. The wrapper already exports LIBCLANG_PATH the same
way.

The recipe is BBCLASSEXTEND = "native nativesdk", but only the native
variant had a wrapper. Add the equivalent nativesdk wrapper so an SDK
that runs bindgen (e.g. rust kernel-module development in the SDK) does
not hit the identical target-clang failure. The native wrapper uses
STAGING_*_NATIVE; the nativesdk wrapper uses the on-target ${libdir}/
${bindir} so create_wrapper's relocation rewrites the full path and the
shipped wrapper carries no build-time (TMPDIR) reference.

Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agooe-selftest: fitimage: Add tests for KERNEL_DTBVENDORED
Ryan Eatmon [Mon, 6 Jul 2026 22:19:33 +0000 (17:19 -0500)] 
oe-selftest: fitimage: Add tests for KERNEL_DTBVENDORED

The recent changes to fixing KERNEL_DTBVENDORED support and then adding
the same mapping for FIT_CONF_DEFAULT_DTB exposed that we were missing
tests for these two cases.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agokernel-fit-image: Add KERNEL_DTBVENDORED support for FIT_CONF_DEFAULT_DTB
Ryan Eatmon [Mon, 6 Jul 2026 22:19:32 +0000 (17:19 -0500)] 
kernel-fit-image: Add KERNEL_DTBVENDORED support for FIT_CONF_DEFAULT_DTB

When specifying a FIT_CONF_DEFAULT_DTB for a machine, you have to
exactly align the name with what will be in the fitImage file or you
will get a build error.  If you also turn on KERNEL_DTBVENDORED then you
must also specify the vendor directory as part of the dtb name that you
want for the default, but you must manually do the same mapping that the
kernel-fit-image class is doing when it generates the fit-image.its file.

This patch just adds the same logic to figure out the value for the
requested default dtb and eliminate the need to understand the internal
mapping of the class.  It should make specifying the value more
intuitive.  The same value that you put in the KERNEL_DEVICETREE can be
used in the FIT_CONF_DEFAULT_DTB and the new code will correctly honor
the KERNEL_DTBVENDORED setting.

Before:

  KERNEL_DEVICETREE = "
    ti/k3-am62p5-sk.dtb \
    ... \
  "
  FIT_CONF_DEFAULT_DTB = "ti_k3-am62p5-sk.dtb"

After:

  KERNEL_DEVICETREE = "
    ti/k3-am62p5-sk.dtb \
    ... \
  "
  FIT_CONF_DEFAULT_DTB = "ti/k3-am62p5-sk.dtb"

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agoglibc: disable nscd by default
Ross Burton [Wed, 8 Jul 2026 17:36:51 +0000 (18:36 +0100)] 
glibc: disable nscd by default

nscd is the Name Service Caching Daemon, which is useful when fetching
data from the configured Name Service Switch services is slow, for
example if NIS or LDAP is used.

This is unusual for typical OpenEmbedded deployments, and if caching is
needed there are a number of solutions (including nscd) that should be
considered.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agoglibc: only inherit init script classes if nscd is enabled
Ross Burton [Wed, 8 Jul 2026 17:36:50 +0000 (18:36 +0100)] 
glibc: only inherit init script classes if nscd is enabled

As nscd is the only part of glibc that uses init scripts, we can use
inherit_defer to only pull systemd or update-rc.d into the build if nscd
has actually been enabled.

As systemd-systemctl-native has non-trivial dependencies (such as
python3-native), this can help reduce rebuilds of glibc.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agoglibc: only install nscd if it's been enabled
Ross Burton [Wed, 8 Jul 2026 17:36:49 +0000 (18:36 +0100)] 
glibc: only install nscd if it's been enabled

Whilst the actual nscd binary won't be installed if the PACKAGECONFIG is
disabled, we were still installing the init scripts and configuration
files.  These should be wrapped with PACKAGECONFIG checks.

${localstatedir}/db and makedbs.sh are part of libnss-db not nscd, so
ensure they're still always installed.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agoglibc: inherit update-rc.d
Ross Burton [Wed, 8 Jul 2026 17:36:48 +0000 (18:36 +0100)] 
glibc: inherit update-rc.d

The nscd package has an init script, so we should be inheriting the
update-rc.d class like we inherit the the systemd class.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 days agogtk-doc: upgrade 1.35.1 -> 1.36.1
Alexander Kanavin [Mon, 6 Jul 2026 17:16:29 +0000 (19:16 +0200)] 
gtk-doc: upgrade 1.35.1 -> 1.36.1

Convert to meson, remove autotools-specific tweaks and patches:
- conditionaltests.patch adds an option already available in meson
- 0001-Do-not-error-out-if-xsltproc-is-not-found.patch
(see below).

Add a patch and a meson option to avoid unneeded check for runtime python
module dependencies.

Move dependencies needed to run gtk-doc to gtk-doc bbclass
(so they aren't built and pulled in until actually needed).

This allows dropping the 'working-scripts' logic in the recipe,
except for xsltproc-native whose location is used during gtk-doc build.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agoopenssh: set status for CVE-2026-3497
Sudhir Dumbhare [Thu, 9 Jul 2026 05:27:31 +0000 (22:27 -0700)] 
openssh: set status for CVE-2026-3497

Analysis:
 - CVE-2026-3497 affects downstream OpenSSH GSSAPI Key Exchange patches.
 - The vulnerable code uses sshpkt_disconnect() in the GSSAPI KEX server path.
 - Upstream OpenSSH/OE-Core does not carry the vulnerable GSSAPI key-exchange delta.
 - Hence ignoring the CVE for this version.

Reference:
https://nvd.nist.gov/vuln/detail/CVE-2026-3497
https://github.com/advisories/ghsa-wcpp-3x59-h8vp
https://ubuntu.com/security/CVE-2026-3497
https://security-tracker.debian.org/tracker/CVE-2026-3497
https://www.openwall.com/lists/oss-security/2026/03/12/3

Signed-off-by: Sudhir Dumbhare <sudumbha@cisco.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agogzip: fix CVE-2026-41992
Jaipaul Cheernam [Wed, 8 Jul 2026 18:53:32 +0000 (20:53 +0200)] 
gzip: fix CVE-2026-41992

Backport upstream fix for a global buffer overflow in the LZH
decompression logic (unlzh.c). The left[] and right[] global arrays
shared across LZW and LZH decompression routines are not reinitialized
between files processed in the same invocation, allowing an
out-of-bounds read in the LZH decoder.

Adapted for gzip 1.14:
- Refreshed NEWS and THANKS hunks to match 1.14 release context.

Reference: https://nvd.nist.gov/vuln/detail/CVE-2026-41992
Signed-off-by: Jaipaul Cheernam <jaipaul.cheernam@est.tech>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agokernel-yocto: Set CLANG_FLAGS for kernel config checks when using clang
Harish Sadineni [Wed, 8 Jul 2026 18:57:24 +0000 (11:57 -0700)] 
kernel-yocto: Set CLANG_FLAGS for kernel config checks when using clang

When building with `TOOLCHAIN = "clang"`, the kernel's configuration
check (do_kernel_configcheck) fails with:

  kconfiglib.KconfigError: scripts/Kconfig.include:51: Sorry, this
  assembler is not supported.

Fix by setting `CLANG_FLAGS = "-fintegrated-as"` in the environment
when `TOOLCHAIN` contains "clang". This variable is used by the kernel
build system (via scripts/Kconfig.include) to pass additional flags to
clang during config checks, ensuring the assembler test passes.

Acked-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agokernel-arch: Add clang toolchain support
Harish Sadineni [Wed, 8 Jul 2026 18:57:21 +0000 (11:57 -0700)] 
kernel-arch: Add clang toolchain support

Convert the existing GCC tool definitions to use the `:toolchain-gcc`
override so they only apply when `TOOLCHAIN = "gcc"` (the default).

Introduce new definitions for `:toolchain-clang` that use clang,
ld.lld, llvm-ar, llvm-objcopy, and llvm-strip, allowing the kernel
to be built with the LLVM/Clang toolchain.

Acked-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agolib/oe/utils: move INHIBIT_DEFAULT_DEPS from make_arch_independent() to allarch.bbclass
Ross Burton [Wed, 8 Jul 2026 16:10:09 +0000 (17:10 +0100)] 
lib/oe/utils: move INHIBIT_DEFAULT_DEPS from make_arch_independent() to allarch.bbclass

The bulk of the work in allarch recipes happens in handlers because the
finer details of how the recipe is configured varies. Specifically,
multilib recipes cannot be allarch and if multilib is enabled, the
packages are still tune-specific.

However, this means that recipes that are marked as allarch don't have
INHIBIT_DEFAULT_DEPS set in multilib environments, which is a problem
if it was being used to avoid dependency cycles.

Instead of assigning it at runtime if the recipe really does become
arch-independent, move the assignment from make_arch_independent() to
allarch.bbclass (the other caller in dummy-sdk-package.inc already sets
this). This means that recipes inheriting allarch always have
INHIBIT_DEFAULT_DEPS set.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agou-boot: re-enable RISC-V compressed (c) ISA extension
Gustavo Henrique Nihei [Tue, 7 Jul 2026 18:15:42 +0000 (15:15 -0300)] 
u-boot: re-enable RISC-V compressed (c) ISA extension

SRC_URI_RISCV clears every RISC-V ISA extension via
u-boot-riscv-isa_clear.cfg, then conditionally re-adds a fragment per
TUNE_FEATURES bit: a, f, d, b/zbb, zicbom. There is no line for c, even
though u-boot-riscv-isa_c.cfg (CONFIG_RISCV_ISA_C=y) already ships in
the recipe. So for any tune with c in TUNE_FEATURES (e.g. the default
rv64gc/rv32gc tunes), compressed instructions stay disabled after the
clear fragment runs, and .config ends up with:

  # CONFIG_RISCV_ISA_C is not set

Building without RVC noticeably inflates .text: on qemuriscv64
(tune-riscv64, rv64gc), the resulting u-boot binary is 1312625 bytes of
.text without the fix vs 1082853 bytes with CONFIG_RISCV_ISA_C=y
correctly set, 229772 bytes (17.5%) smaller. On size-constrained
RISC-V SPL targets this .text growth can make the SPL .bss VMA overlap
the .text VMA and fail the link.

Add the missing "c" mapping line, mirroring the existing per-extension
entries (a, f, d, b/zbb, zicbom) already present in SRC_URI_RISCV.

Tested on oe-core master, MACHINE=qemuriscv64, via the
oe-nodistro-master bitbake-setup config:

  bitbake -c cleansstate u-boot && bitbake u-boot
  grep CONFIG_RISCV_ISA_C .../u-boot/2026.04/build/.config
  # before: "# CONFIG_RISCV_ISA_C is not set"
  # after:  "CONFIG_RISCV_ISA_C=y"

do_package_qa passes both before and after; only the ISA config and
resulting .text size change.

Fixes: cd9e7304481b ("u-boot: Overhaul UBOOT_CONFIG flow")
AI-Generated: Uses Cursor

Signed-off-by: Gustavo Henrique Nihei <gustavo.nihei@espressif.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agobase-files: Replace /srv, /var by $servicedir, $localstatedir
Jörg Sommer [Tue, 7 Jul 2026 13:53:09 +0000 (15:53 +0200)] 
base-files: Replace /srv, /var by $servicedir, $localstatedir

Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agosystemd: Ship /srv with the package
Jörg Sommer [Tue, 7 Jul 2026 13:21:42 +0000 (15:21 +0200)] 
systemd: Ship /srv with the package

If *volatile-binds* gets removed from RDEPENDS, the /srv directory is not
part of the image, and tmpfiles tries to create it on boot, but fails on a
read-only rootfs:

systemd-tmpfiles: /srv does not exist and cannot be created as the file system is read-only.

Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agocml1: use KCONFIG_CONFIG_ROOTDIR in savedefconfig
Andreas Mützel [Tue, 7 Jul 2026 06:56:31 +0000 (08:56 +0200)] 
cml1: use KCONFIG_CONFIG_ROOTDIR in savedefconfig

When running do_savedefconfig with a KCONFIG_CONFIG_ROOTDIR other than
B, this task runs oe_runmake in a directory different from the other
config-related tasks.

For example, in U-Boot with the new configuration flow from wrynose and
configs defined using the UBOOT_CONFIG_* variables, the project sources
and configs will be located in a subdirectory of ${B}. This will result
in the following error when running do_savedefconfig:
make: *** No rule to make target 'savedefconfig'.  Stop.

Fix the do_savedefconfig task so it runs in KCONFIG_CONFIG_ROOTDIR.

Signed-off-by: Andreas Mützel <andreas.muetzel@emlix.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agosystemd: Simplify code to handle resolv.conf with resolved
Jörg Sommer [Mon, 6 Jul 2026 16:59:48 +0000 (18:59 +0200)] 
systemd: Simplify code to handle resolv.conf with resolved

Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agofiles/fs-perms.txt: Replace /srv by $servicedir
Jörg Sommer [Mon, 6 Jul 2026 16:59:45 +0000 (18:59 +0200)] 
files/fs-perms.txt: Replace /srv by $servicedir

Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agoflac: make documentation build deterministic
Peter Marko [Mon, 6 Jul 2026 08:30:10 +0000 (10:30 +0200)] 
flac: make documentation build deterministic

doxygen is autodetected (e.g. from HOSTTOOLS or a transient dependency).
Add a knob to make it deterministic when the documentation is being built.
Keep it disabled by default to preserve current default behavior.

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agoflac: fix buildpaths with doxygen enabled
Peter Marko [Mon, 6 Jul 2026 08:30:09 +0000 (10:30 +0200)] 
flac: fix buildpaths with doxygen enabled

When documentation is built, buildpaths errors occur.
There is one path to S and one to UNPACKDIR.
We can have a single sed rule to fix both.

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agolzlib: respect CFLAGS from the recipe
Oleksiy Obitotskyy [Mon, 6 Jul 2026 07:46:54 +0000 (00:46 -0700)] 
lzlib: respect CFLAGS from the recipe

lzlib's configure script replaces CFLAGS from the environment with
its own defaults. As a result, the flags supplied by OpenEmbedded do
not make it into the generated Makefile.

Pass CFLAGS on the configure command line so the generated Makefile
uses the flags provided by the recipe.

Signed-off-by: Oleksiy Obitotskyy <oobitots@cisco.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agopython3-build: upgrade 1.5.0 -> 1.5.1
Ross Burton [Fri, 10 Jul 2026 13:42:39 +0000 (14:42 +0100)] 
python3-build: upgrade 1.5.0 -> 1.5.1

Highlights of the upstream changelog:

- feat(cli): accept sdist tarball as srcdir argument
- feat(deps): show wanted vs found in missing-deps error
- feat(cli): warn on valueless config settings
- feat(cli): add --sdist-extract-dir to reuse compiler caches
- feat(util): deprecate project_wheel_metadata
- feat: report resolved build dependency versions
- feat(env): control the isolated build environment location
- feat(cli): machine-readable build report, and metadata from a wheel
- fix(cli): drain verbose subprocess output without a worker thread
- fix(env): reject a file as --env-dir and drop a mutable default
- feat(cli): surface debug paths when a backend build fails
- fix(cli): fix CLI warnings being written to stdout instead of stderr
- fix: build correct dest path in Windows symlink support probe
- fix: derive dist-info directory from wheel contents, not filename
- fix: use LF instead of os.linesep when writing pip/uv requirements files
- fix: decide color support per output stream, not solely from stdout
- fix: minor robustness fixes from code review

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agofontconfig: upgrade 2.18.1 -> 2.18.2
Ross Burton [Fri, 10 Jul 2026 13:42:38 +0000 (14:42 +0100)] 
fontconfig: upgrade 2.18.1 -> 2.18.2

Upstream release notes:

- Fix FcNameUnparse regression
- Use Special FC_CACHE_VERSION for snapshot
- Add more conditional code for FcLocaleSetCurrent()
- fc-cache: do not generate cache when target directory is in deny list
- Add Nerd Fonts to the table
- Add a hash table for fonts to generate expected genericfamily
- Use genericfamily for the search of monospace against :spacing=100
- test: Fix a test case failure when BUILDDIR is under /tmp
- test: Fix a regression for sysroot in test framework
- conf.d: Add OpenMoji Color and OpenMoji Black
- meson: Add tests-external-fonts option to disable network-dependent tests

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agolibffi: upgrade 3.6.0 -> 3.7.1
Richard Purdie [Sat, 11 Jul 2026 05:53:04 +0000 (05:53 +0000)] 
libffi: upgrade 3.6.0 -> 3.7.1

License-update: Copyright years change

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agopython3-websockets: upgrade 16.0 -> 16.1
Richard Purdie [Sat, 11 Jul 2026 05:34:58 +0000 (05:34 +0000)] 
python3-websockets: upgrade 16.0 -> 16.1

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agop11-kit: upgrade 0.26.2 -> 0.26.4
Richard Purdie [Sat, 11 Jul 2026 06:06:15 +0000 (06:06 +0000)] 
p11-kit: upgrade 0.26.2 -> 0.26.4

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agodiffoscope: upgrade 323 -> 324
Richard Purdie [Sat, 11 Jul 2026 05:42:20 +0000 (05:42 +0000)] 
diffoscope: upgrade 323 -> 324

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agoxset: upgrade 1.2.5 -> 1.2.6
Richard Purdie [Fri, 10 Jul 2026 05:43:59 +0000 (05:43 +0000)] 
xset: upgrade 1.2.5 -> 1.2.6

License-update: Upstream added a license identifier, clarify the MIT variant of
the license to match.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agocmake: upgrade 4.3.4 -> 4.4.0
Richard Purdie [Fri, 10 Jul 2026 05:30:14 +0000 (05:30 +0000)] 
cmake: upgrade 4.3.4 -> 4.4.0

License-update: libuv split a LICENSE file into a LICENSE-extra file but it
is all still MIT. https://github.com/libuv/libuv/commit/61e0bbda6bf2416210b54ad80bb3f19e4876a896

Also copyright year changes.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agowebkitgtk: upgrade 2.52.4 -> 2.52.5
Richard Purdie [Fri, 10 Jul 2026 07:38:06 +0000 (07:38 +0000)] 
webkitgtk: upgrade 2.52.4 -> 2.52.5

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agomesa-demos: upgrade to latest revision
Richard Purdie [Fri, 10 Jul 2026 06:27:48 +0000 (06:27 +0000)] 
mesa-demos: upgrade to latest revision

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agolibmicrohttpd: upgrade 1.0.5 -> 1.0.6
Richard Purdie [Fri, 10 Jul 2026 07:49:22 +0000 (07:49 +0000)] 
libmicrohttpd: upgrade 1.0.5 -> 1.0.6

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agogawk: upgrade 5.4.0 -> 5.4.1
Richard Purdie [Fri, 10 Jul 2026 06:15:10 +0000 (06:15 +0000)] 
gawk: upgrade 5.4.0 -> 5.4.1

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agotzdata/tzcode-native: upgrade 2026b -> 2026c
Vijay Anusuri [Fri, 10 Jul 2026 06:57:15 +0000 (12:27 +0530)] 
tzdata/tzcode-native: upgrade 2026b -> 2026c

This release contains the following changes:

   Briefly:
     Alberta moved to permanent -06 on 2026-06-18.
     Morocco moves to permanent +00 on 2026-09-20.
     More integer overflow bugs have been fixed in zic.

   Changes to future timestamps

     Alberta’s 2026-03-08 spring forward was its last foreseeable clock
     change, as it moved to permanent -06 thereafter.  (Thanks to Roozbeh
     Pournader and others.)  Model this with its traditional abbreviation
     CST.  Although the change to permanent -06 legally took place on
     2026-06-18, temporarily model the change to occur on 2026-11-01 at
     02:00 instead, for the same reason we introduced a similarly
     temporary hack for British Columbia in 2026b.

       Although another TZDB release will likely be needed soon because
       Northwest Territories will likely follow Alberta, the legal
       formalities have not yet taken place.

     Morocco plans to move back to permanent UTC, without daylight
     saving time transitions, on 2026-09-20 at 02:00.  This also
     affects Western Sahara.

   Changes to code

     zic no longer overflows integers when processing outlandish input
     like â€˜Zone Ouch 0 - LMT 9223372036854775807’, â€˜Zone Ouch 0
     2562047788015215 LMT’, â€˜Zone Ouch -2562047788015215:30:08 - LMT’,
     and â€˜Zone Ouch -2562047788015215:30:08 - %%z’.  This avoids
     undefined behavior in C.  (Problems reported by Naveed Khan.)

     On platforms that have EFTYPE, tzalloc now fails with errno set to
     EFTYPE, not EINVAL, if it detects that the TZif file has an
     invalid format or is not a regular file.  Formerly it did this
     only on NetBSD, and only when the file was not a regular file.

     Unprivileged programs no longer require TZif files to be regular
     files or reject relative names containing ".." components.  This
     reverts to the more-permissive 2025b behavior, as the stricter
     behavior did not catch on in FreeBSD.

     zic now reports any failure to remove a temporary file when
     cleaning up after a previous failure.  (Problem reported by Tom
     Lane.)

   Changes to commentary

     Northwest Territories is expected to move to permanent -06 prior to
     2026-11-01 02:00, when clocks would otherwise fall back.  (Thanks to
     Tim Parenti and James Bellaire.)  Model this with its traditional
     abbreviation CST.  Unfortunately the change is not yet official, so
     it is currently present only as comments that can be uncommented as
     needed.

   Changes to build procedure

     The undocumented â€˜typecheck’ Makefile check rule has been removed.
     It stopped working in 2025a and evidently nobody noticed.
     The rule was superseded by â€˜check_time_t_alternatives’ in 2013d.

Ref: https://lists.iana.org/hyperkitty/list/tz-announce@iana.org/thread/NVHSX2PAQIT44U5FCCEVNJJYXQMMTJSA/

Signed-off-by: Vijay Anusuri <vanusuri@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agogo: upgrade 1.26.4 -> 1.26.5
Peter Marko [Thu, 9 Jul 2026 20:35:36 +0000 (22:35 +0200)] 
go: upgrade 1.26.4 -> 1.26.5

Upgrade to latest 1.26.x release [1]:

$ git --no-pager log --oneline go1.26.4..go1.26.5
c19862e5f8 (tag: go1.26.5) [release-branch.go1.26] go1.26.5
f9ef7f5598 [release-branch.go1.26] os: properly handle trailing slashes in paths in Root
ca8ca590cc [release-branch.go1.26] crypto/tls: omit PSK in ECH outer client hello
7397dd7495 [release-branch.go1.26] net: fix TestLookupCNAME
044c995af7 [release-branch.go1.26] runtime: tolerate vendor suffixes in Linux kernel release strings
814591410b [release-branch.go1.26] cmd/compile,sync/atomic: make Add And & Or SQCST on PPC64
2055b1a15d [release-branch.go1.26] syscall: add //go:norace to rawSyscall on darwin
d7c9c818f9 [release-branch.go1.26] runtime: in moveSliceNoCap, round size down to a whole multiple of element size
dc80258a97 [release-branch.go1.26] internal/runtime/gc: require AVX512DQ for greentea
6efcff6602 [release-branch.go1.26] os/signal: make NotifyContext Cause match context.Canceled
fe91cea4f2 [release-branch.go1.26] cmd/go: use fsys.ReadDir for IsStandardPackage
ec988a9af1 [release-branch.go1.26] os: notify testlog from (*File).Chdir

Fixes CVE-2026-39822 and CVE-2026-42505.

Release information: [2]

[1] https://github.com/golang/go/compare/go1.26.4...go1.26.5
[2] https://groups.google.com/g/golang-announce/c/OrmQE_Yp5Sc

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agolibx11-compose-data: set CVE_PRODUCT to empty value
mark.yang [Fri, 10 Jul 2026 07:43:04 +0000 (16:43 +0900)] 
libx11-compose-data: set CVE_PRODUCT to empty value

This recipe only builds and installs the compose data files (nls/) from
the libX11 sources and contains no compiled libX11 code, so libx11 CVEs
do not apply to it. When the x11 DISTRO_FEATURE is enabled this recipe
is skipped and libx11 itself is built and scanned instead.

Referred glibc-locale case:
https://github.com/openembedded/openembedded-core/commit/1f9a963b9ff7ebe052ba54b9fcbdf7d09478dd17

Signed-off-by: mark.yang <mark.yang@lge.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 days agobzip2: Fix CVE-2026-42250
Jaipaul Cheernam [Fri, 10 Jul 2026 08:31:29 +0000 (10:31 +0200)] 
bzip2: Fix CVE-2026-42250

This patch applies the upstream fix as referenced in [1], using the commit shown in [2].

[1] https://nvd.nist.gov/vuln/detail/CVE-2026-42250
[2] https://sourceware.org/cgit/bzip2/commit/?id=35d122a3df8b0cc4082a4d89fdc6ee99f375fe67

Signed-off-by: Jaipaul Cheernam <jaipaul.cheernam@est.tech>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoglib-2.0: add back Signed-off-by in CVE-2026-58016 patch
Benjamin Robin [Fri, 10 Jul 2026 07:31:35 +0000 (09:31 +0200)] 
glib-2.0: add back Signed-off-by in CVE-2026-58016 patch

It had been deleted by mistake due to a lack of knowledge regarding how
to handle it.

Signed-off-by: Benjamin Robin (Schneider Electric) <benjamin.robin@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopython3: add back Co-authored-by in CVE-2026-11972 patch
Benjamin Robin [Fri, 10 Jul 2026 07:48:13 +0000 (09:48 +0200)] 
python3: add back Co-authored-by in CVE-2026-11972 patch

It had been deleted by mistake due to a lack of knowledge regarding how
to handle it.

Signed-off-by: Benjamin Robin (Schneider Electric) <benjamin.robin@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoparted: skip flaky test on riscv64
Trevor Gamblin [Wed, 8 Jul 2026 15:19:03 +0000 (11:19 -0400)] 
parted: skip flaky test on riscv64

t9042-dos-partition-limit.sh has failed 24 times over the past year on
qemuriscv64, which is using TCG emulation (slower) and thus can struggle
with higher system loads. Skip it for riscv64 builds by applying a patch
in that case.

Now, on qemuriscv64:

|PASS: t9041-undetected-in-use-16th-partition.sh
|t9042-dos-partition-limit.sh: skipped test: this test frequently reports a timeout under heavy system load
|SKIP: t9042-dos-partition-limit.sh
|PASS: t9050-partition-table-types.sh
|PASS: t9060-gpt-grow-script-fix.sh
|============================================================================
|Testsuite summary for GNU parted 3.7
|============================================================================
|# TOTAL: 100
|# PASS:  85
|# SKIP:  15
|# XFAIL: 0
|# FAIL:  0
|# XPASS: 0
|# ERROR: 0
|============================================================================
|make: Leaving directory '/usr/lib/parted/ptest/tests'
|DURATION: 255
|END: /usr/lib/parted/ptest
|2026-07-08T14:27
|STOP: ptest-runner
|TOTAL: 1 FAIL: 0
|root@qemuriscv64:~#

versus other architectures (e.g. qemux86-64):

|PASS: t9042-dos-partition-limit.sh
|PASS: t9050-partition-table-types.sh
|PASS: t9060-gpt-grow-script-fix.sh
|============================================================================
|Testsuite summary for GNU parted 3.7
|============================================================================
|# TOTAL: 100
|# PASS:  86
|# SKIP:  14
|# XFAIL: 0
|# FAIL:  0
|# XPASS: 0
|# ERROR: 0
|============================================================================
|make: Leaving directory '/usr/lib/parted/ptest/tests'
|DURATION: 99
|END: /usr/lib/parted/ptest
|2026-07-08T14:56
|STOP: ptest-runner
|TOTAL: 1 FAIL: 0
|root@qemux86-64:~#

Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoreport-error.bbclass: add site.conf/toolcfg.conf into error report
Changqing Li [Fri, 15 May 2026 08:37:50 +0000 (16:37 +0800)] 
report-error.bbclass: add site.conf/toolcfg.conf into error report

We had add local.conf/auto.conf into error report to help more easy to
reproduce a failure through error report, recently oe add a new default
configuration file toolcfg.conf, this commit also add site.conf and
toolcfg.conf in error report.

With this commit, the error report file will have the below snip:
[snip]
    "site_conf": "DL_DIR ?= \"/bitbake-setup/bitbake-builds/.bitbake-setup-downloads\"\nSSTATE_DIR ?= \"/bitbake-setup/bitbake-builds/.sstate-cache\"\nBB_HASHSERVE_DB_DIR ?= \"${SSTATE_DIR}\"\n",
    "target_sys": "x86_64-poky-linux",
    "toolcfg_conf": "OE_FRAGMENTS += \"distro/poky machine/qemux86-64\"\n"
[snip]

[YOCTO #13252]

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoovmf: fix tpm PACKAGECONFIG to use TPM2_ENABLE
Eilís 'pidge' Ní Fhlannagáin [Wed, 8 Jul 2026 14:22:49 +0000 (15:22 +0100)] 
ovmf: fix tpm PACKAGECONFIG to use TPM2_ENABLE

The tpm PACKAGECONFIG passed "-D TPM_ENABLE=TRUE/FALSE", but ovmf
renamed that macro to TPM2_ENABLE in edk2 commit 4de8d61bcec0
("OvmfPkg: rework TPM configuration", first released in
edk2-stable202202). Since then TPM_ENABLE has been an unknown macro
that edk2 ignores, so TPM2 support was never compiled in, even for
MACHINEs with 'tpm'/'tpm2' in MACHINE_FEATURES.

Use TPM2_ENABLE (as defined in
OvmfPkg/Include/Dsc/OvmfTpmDefines.dsc.inc and consumed by
OvmfPkgX64.dsc) so the tpm PACKAGECONFIG actually enables TPM2 support.

The same commit also added a separate TPM1_ENABLE macro (TPM 1.2
support, default TRUE), but its dsc.inc snippets are only included
inside OvmfPkgX64.dsc's "!if $(TPM2_ENABLE) == TRUE" block, so it has
no effect unless TPM2_ENABLE is TRUE. No separate PACKAGECONFIG knob is
needed.

I'm sending a backport to wrynose of this in another email.

Signed-off-by: Eilís 'pidge' Ní Fhlannagáin <pidge@baylibre.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopybootchartgui/README: fix broken bootchart.org URL
Sandeep J [Mon, 6 Jul 2026 04:08:33 +0000 (04:08 +0000)] 
pybootchartgui/README: fix broken bootchart.org URL

The bootchart.org domain is no longer available. Replace with
the current project page at bootchart.sourceforge.net.

The upstream GitHub repo (code.google.com/p/pybootchartgui) uses Python 2
with tabs indentation while oe-core uses Python 3 with spaces. The two
codebases have diverged.

Signed-off-by: Sandeep J <Sandeep.J@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agooeqa/selftest/kernelmodulesplit: test cross-recipe kernel module dependencies
Siva Balasubramanian [Fri, 19 Jun 2026 13:03:23 +0000 (18:33 +0530)] 
oeqa/selftest/kernelmodulesplit: test cross-recipe kernel module dependencies

Add a selftest that exercises kernel module dependency generation across
recipes. Two external module recipes are added to meta-selftest:
kernel-module-testfoo exports a symbol and kernel-module-testbar consumes
it (DEPENDS on testfoo). The test builds both and asserts that the
consumer's real, KERNEL_VERSION-suffixed package RDEPENDS the exporter's
suffixed package - and not the empty unsuffixed kernel-module-testfoo
package - and that the suffixed package RPROVIDES the unsuffixed virtual.

This is the failure mode originally reported in [YOCTO #12290], where the
generated dependency resolved to the empty package after the KERNEL_VERSION
suffix was introduced. It works on current master; this test guards against
regressing it again.

The kernel version is derived from the produced package list rather than
KERNEL_VERSION, which is unset at parse time when the modules are restored
from sstate.

Signed-off-by: Siva Balasubramanian <sivakumar.bs@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agobuildtools-extended-tarball: drop wic helper tools
Trevor Woerner [Tue, 7 Jul 2026 14:40:08 +0000 (10:40 -0400)] 
buildtools-extended-tarball: drop wic helper tools

The extended buildtools tarball exists to make a host with inadequate
or ancient software able to run bitbake builds: it provides a compiler,
autotools, python3, git, tar and the rest of the build essentials. The
things it ships are the build prerequisites a build host is otherwise
expected to provide.

nativesdk-parted, -dosfstools and -gptfdisk do not fit that purpose.
They are not build prerequisites; they are disk-image helper tools that
only make sense for someone assembling or inspecting a .wic image, and
they do not belong in the set of essentials this tarball guarantees.

Drop the three entries so the tarball's contents stay limited to what
its description promises.

AI-Generated: codex/claude-opus 4.8 (xhigh)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agobluez5: tool changes following 5.87 upgrade
Guðni Már Gilbert [Tue, 7 Jul 2026 17:25:03 +0000 (17:25 +0000)] 
bluez5: tool changes following 5.87 upgrade

hcidump utility was dropped in BlueZ 5.87 [1], this was previously
picked up by bluez5-bin, but is no longer provided.

btpclient binaries were moved from tools to client/btpclient [2]

[1] - https://github.com/bluez/bluez/commit/a035be775703bba1fa92b25769191ffb37ae4c76
[2] - https://github.com/bluez/bluez/commit/a98f3d5abf14eb6e3ddcbf73c22362020f26e105

Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopython3: fix CVE-2026-11972
Benjamin Robin (Schneider Electric) [Mon, 6 Jul 2026 10:45:07 +0000 (12:45 +0200)] 
python3: fix CVE-2026-11972

When using the "tarfile" module with a file opened in "streaming mode"
(mode="r|") the tarfile module did not properly handle EOF, making archive
parsing take exponentially longer.

Signed-off-by: Benjamin Robin (Schneider Electric) <benjamin.robin@bootlin.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopython3: fix CVE-2026-11940
Benjamin Robin (Schneider Electric) [Mon, 6 Jul 2026 10:45:06 +0000 (12:45 +0200)] 
python3: fix CVE-2026-11940

tarfile.extractall() with the 'data' or 'tar' filter could be bypassed
by a crafted archive where a hardlink references a symlink stored at a
deeper name than the hardlink itself.

Signed-off-by: Benjamin Robin (Schneider Electric) <benjamin.robin@bootlin.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoglib-2.0: fix CVE-2026-58016
Benjamin Robin (Schneider Electric) [Sun, 5 Jul 2026 09:34:30 +0000 (11:34 +0200)] 
glib-2.0: fix CVE-2026-58016

A flaw was found in GLib. A state confusion issue exists in
g_dbus_node_info_new_for_xml() in the gio/gdbusintrospection.c file when
processing malformed D-Bus introspection XML, specifically with a <node>
element nested within other elements like <method>, <signal>, <property>
or <arg>. This issue can cause an unsigned integer overflow and lead to an
out-of-bounds read, resulting in a denial of service.

The CVE NVD entry is wrong, it indicates that the CVE is fixed in 2.88.1
but the fix was realized in 2.89.0, see [1]. The fix is not present in 2.88.2.

[1] https://gitlab.gnome.org/GNOME/glib/-/commit/c9da977c178fbfc0e4caf99f9fdf5dc433d6fcc2

Signed-off-by: Benjamin Robin (Schneider Electric) <benjamin.robin@bootlin.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agomesa-demos: move to latest commit
Ross Burton [Wed, 8 Jul 2026 11:11:06 +0000 (12:11 +0100)] 
mesa-demos: move to latest commit

Upgrade mesa-demos to the latest commit.  Too many changes to list as
there have been ~230 commits since the 9.0.0 release in 2023.

Drop a backported patch, and update the GLUT option.

License-Update: license strings rewritten

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agomesa-demos: switch to fetching from git instead of tarballs
Ross Burton [Wed, 8 Jul 2026 11:11:05 +0000 (12:11 +0100)] 
mesa-demos: switch to fetching from git instead of tarballs

Upstream don't plan on making new releases of mesa-demos as it's mostly
demos and test applications.  As a first step to moving to git, this
changes the fetching of a tarball to the fetching of the git tag that
the tarball was generated from.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agofmt: upgrade 12.1.0 -> 12.2.0
Alexander Kanavin [Mon, 6 Jul 2026 17:16:24 +0000 (19:16 +0200)] 
fmt: upgrade 12.1.0 -> 12.2.0

License-Update: clarify presence of fmt exception:
https://github.com/fmtlib/fmt/commit/91d1aced0a846161135310249664506b4a56e196

Backport a patch to address 32 bit x86 fails (which do not have a native int128 type).

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agofiles/common-licenses/MIT-with-fmt-exception: add a custom license
Alexander Kanavin [Mon, 6 Jul 2026 17:16:16 +0000 (19:16 +0200)] 
files/common-licenses/MIT-with-fmt-exception: add a custom license

This is needed to correctly specify fmt's LICENSE, as support
for license exceptions and WITH statement isn't yet implemented:
https://lists.openembedded.org/g/openembedded-core/message/239820

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agojson-c: upgrade 0.18 -> 0.19
Moritz Haase [Mon, 6 Jul 2026 10:45:39 +0000 (12:45 +0200)] 
json-c: upgrade 0.18 -> 0.19

Release notes are available at [0].

Newly added tests (see [1]) require the 'json_parse' app at (test) runtime.
Thus, apps are now being built and the 'json_parse' app is deployed in the
'ptest' package. We do not package the apps separately as upstream doesn't
consider them to be ready for that (see [2]). This approach is based on the
discussion in [3].

[0]: https://github.com/json-c/json-c/blob/json-c-0.19/ChangeLog
[1]: https://github.com/json-c/json-c/blob/d9d8cab82291637671f6c90cf06e578750a08718/tests/test_json_parse_cli.test#L18
[2]: https://github.com/json-c/json-c/blob/d9d8cab82291637671f6c90cf06e578750a08718/apps/CMakeLists.txt#L122-L124
[3]: https://lists.openembedded.org/g/openembedded-core/topic/120026557#

Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de>
CC: alex.kanavin@gmail.com
CC: mathieu.dubois-briand@bootlin.com
CC: Ross.Burton@arm.com
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agobusybox: enable xxd
Ross Burton [Mon, 6 Jul 2026 10:21:38 +0000 (11:21 +0100)] 
busybox: enable xxd

The xxd binary is very small and a non-zero number of test suites use
xxd to generate test data.

Enable xxd in busybox to avoid having to pull vim's xxd into builds. It
does not have feature parity with vim's xxd, but it's close enough for
many tests and vim's xxd still exists for the others.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopiglit: upgrade to latest revision
Alexander Kanavin [Mon, 6 Jul 2026 17:16:39 +0000 (19:16 +0200)] 
piglit: upgrade to latest revision

Drop patches merged upstream.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agogn: upgrade to latest revision
Alexander Kanavin [Mon, 6 Jul 2026 17:16:28 +0000 (19:16 +0200)] 
gn: upgrade to latest revision

Build only gn, as otherwise ninja will attempt to run the integration
tests (which are cross-compiled). Only gn executable is installed,
so this doesn't reduce the output in ${D}.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agognu-config: upgrade to latest revision
Alexander Kanavin [Mon, 6 Jul 2026 17:16:27 +0000 (19:16 +0200)] 
gnu-config: upgrade to latest revision

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agolibical: upgrade 3.0.20 -> 4.0.3
Alexander Kanavin [Wed, 8 Jul 2026 12:04:13 +0000 (14:04 +0200)] 
libical: upgrade 3.0.20 -> 4.0.3

Drop -DSHARED_ONLY=True (replaced upstream with LIBICAL_STATIC, false by default).

Drop 0001-cmake-Do-not-export-CC-into-gir-compiler.patch (merged upstream).

Rebase flags.patch (couldn't find evidence of ical-glib-static and so
that chunk was dropped).

Rework various upstream cmake options.

License-Update: file renamed, additional information added at the bottom:
https://github.com/libical/libical/blob/v4.0.3/LICENSE.txt
LGPL/MPL texts aren't necessary to track, as LICENSE.txt specifies
what the actual terms are.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agolog4cplus: upgrade 2.1.2 -> 2.2.0.1
Siddharth Doshi [Wed, 8 Jul 2026 09:12:44 +0000 (14:42 +0530)] 
log4cplus: upgrade 2.1.2 -> 2.2.0.1

Updated SRC_URI, Homepage, BugTracker, UPSTREAM_CHECK_URI to point to
github page of log4cplus instead of sourceforge as per:
[1] https://github.com/log4cplus/log4cplus/wiki#download

For detailed information, see the link below:
[1] https://github.com/log4cplus/log4cplus/compare/REL_2_1_2...REL_2_2_0_1
[2] https://github.com/log4cplus/log4cplus/blob/REL_2_2_0_1/ChangeLog

Signed-off-by: Siddharth Doshi <sdoshi@mvista.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agovulkan: upgrade 1.4.350.0 -> 1.4.350.1
Alexander Kanavin [Mon, 6 Jul 2026 17:16:56 +0000 (19:16 +0200)] 
vulkan: upgrade 1.4.350.0 -> 1.4.350.1

The release notes claim a fix for .pc file in vulkan loader:
https://vulkan.lunarg.com/doc/sdk/1.4.350.1/linux/release_notes.html

but the .1 tag points to the same commit as .0 tag:
https://github.com/KhronosGroup/Vulkan-Loader/tags
(and the same commit is tagged as .1 in all other components).

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agostrace: upgrade 7.0 -> 7.1
Alexander Kanavin [Mon, 6 Jul 2026 17:16:52 +0000 (19:16 +0200)] 
strace: upgrade 7.0 -> 7.1

Tweak ptest Makefile to avoid make error due to an irrelevant missing file on target.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoshared-mime-info: upgrade 2.4 -> 2.5.1
Alexander Kanavin [Mon, 6 Jul 2026 17:16:49 +0000 (19:16 +0200)] 
shared-mime-info: upgrade 2.4 -> 2.5.1

Explicitly disable tests, as they now have xdgmime dependency.

Drop backports.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopython3-setuptools-rust: upgrade 1.12.1 -> 1.13.0
Alexander Kanavin [Mon, 6 Jul 2026 17:16:44 +0000 (19:16 +0200)] 
python3-setuptools-rust: upgrade 1.12.1 -> 1.13.0

Add a patch to avoid build failures due to use of custom rust targets.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopython3-click: upgrade 8.4.1 -> 8.4.2
Alexander Kanavin [Mon, 6 Jul 2026 17:16:40 +0000 (19:16 +0200)] 
python3-click: upgrade 8.4.1 -> 8.4.2

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agogit: upgrade 2.54.0 -> 2.55.0
Alexander Kanavin [Mon, 6 Jul 2026 17:16:25 +0000 (19:16 +0200)] 
git: upgrade 2.54.0 -> 2.55.0

License-Update: drop BSL-1.0 as sub-component that used it is no longer in source tree.

Disable building items written in rust (until now, git would quetly fall
back to C by default, as of this version it no longer does). At some point rust
code will have to be enabled; for now it's optional.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoattr: upgrade 2.5.2 -> 2.6.0
Alexander Kanavin [Mon, 6 Jul 2026 17:16:20 +0000 (19:16 +0200)] 
attr: upgrade 2.5.2 -> 2.6.0

Drop patch (issue fixed upstream).

Adjust file names in ptest packaging.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoappstream: upgrade 1.1.2 -> 1.1.3
Alexander Kanavin [Mon, 6 Jul 2026 17:16:18 +0000 (19:16 +0200)] 
appstream: upgrade 1.1.2 -> 1.1.3

Disable manpages (and remove related dependencies), as upstream
has converted them to docbook 5, which oe-core does not provide.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoacl: upgrade 2.3.2 -> 2.4.0
Alexander Kanavin [Mon, 6 Jul 2026 17:16:17 +0000 (19:16 +0200)] 
acl: upgrade 2.3.2 -> 2.4.0

Backport a patch to tar to avoid name clashes.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agotiff: upgrade 4.7.1 -> 4.7.2
Siddharth Doshi [Sat, 4 Jul 2026 18:01:37 +0000 (23:31 +0530)] 
tiff: upgrade 4.7.1 -> 4.7.2

Note:
Removed CVE-2026-4775 as it is already fixed in 4.7.2

Detailed Information:
https://libtiff.gitlab.io/libtiff/releases/v4.7.2.html

Signed-off-by: Siddharth Doshi <sdoshi@mvista.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopython3-cffi: upgrade 2.0.0 -> 2.1.0
Richard Purdie [Tue, 7 Jul 2026 05:38:48 +0000 (05:38 +0000)] 
python3-cffi: upgrade 2.0.0 -> 2.1.0

Drop backported patch.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoopkg: upgrade 0.9.0 -> 0.10.0
Alexander Kanavin [Mon, 6 Jul 2026 17:16:38 +0000 (19:16 +0200)] 
opkg: upgrade 0.9.0 -> 0.10.0

Drop backports.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agolttng-modules: upgrade 2.15.1 -> 2.15.2
Alexander Kanavin [Mon, 6 Jul 2026 17:16:37 +0000 (19:16 +0200)] 
lttng-modules: upgrade 2.15.1 -> 2.15.2

Drop backports.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoqemu: upgrade 11.0.1 -> 11.0.2
Alexander Kanavin [Mon, 6 Jul 2026 17:16:48 +0000 (19:16 +0200)] 
qemu: upgrade 11.0.1 -> 11.0.2

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoxmlto: update SRC_URI
Ross Burton [Wed, 8 Jul 2026 11:11:04 +0000 (12:11 +0100)] 
xmlto: update SRC_URI

xmlto was previously hosted on Fedora's pagure.io server, but this is
being decomissioned. As xmlto isn't Fedora-specific the repository has
migrated to codeberg.org.

>From discussion with Michal Schorm <mschorm@redhat.com>:

  I became the new maintainer of the project upstream and after a
  discussion with Kevin Fenzi, migrated it to a new home on the
  codeberg.org: https://codeberg.org/xmlto/xmlto

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agokernel.bbclass: fix typo in comment, "INTIRAMFS_TASK"
Robert P. J. Day [Tue, 7 Jul 2026 12:24:09 +0000 (08:24 -0400)] 
kernel.bbclass: fix typo in comment, "INTIRAMFS_TASK"

Correct "INTIRAMFS_TASK" to "INITRAMFS_TASK" in comment.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agovulkan-samples: upgrade to latest revision
Alexander Kanavin [Mon, 6 Jul 2026 17:16:55 +0000 (19:16 +0200)] 
vulkan-samples: upgrade to latest revision

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoscdoc: Upgrade 1.11.4 -> 1.11.5
Alex Kiernan [Wed, 8 Jul 2026 07:54:43 +0000 (08:54 +0100)] 
scdoc: Upgrade 1.11.4 -> 1.11.5

Changes from 1.11.4:

  Runxi Yu (1):
      Substitute "-" with "\-"

  Sotiris Papatheodorou (1):
      Fix bold text followed by underlined text

Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agovim: upgrade 9.2.0569 -> 9.2.0782
Siddharth Doshi [Sun, 5 Jul 2026 16:31:40 +0000 (22:01 +0530)] 
vim: upgrade 9.2.0569 -> 9.2.0782

CVE's Fixed:
CVE-2026-57456
CVE-2026-57455
CVE-2026-57454
CVE-2026-57453
CVE-2026-57452
CVE-2026-57451
CVE-2026-55895
CVE-2026-55892
CVE-2026-55693
CVE-2026-52860

For full comparison of changes, see the link below:
https://github.com/vim/vim/compare/v9.2.0569...v9.2.0782

Signed-off-by: Siddharth Doshi <sdoshi@mvista.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agorust: Upgrade 1.96.0 -> 1.96.1
Sundeep KOKKONDA [Sun, 5 Jul 2026 15:20:12 +0000 (08:20 -0700)] 
rust: Upgrade 1.96.0 -> 1.96.1

https://blog.rust-lang.org/2026/06/30/Rust-1.96.1/

Rust 1.96.1 fixes:
- Missing retries / timeouts in Cargo's HTTP client
- Miscompilation in a MIR optimization
- Cargo CVEs:: CVE-2025-15661, CVE-2026-55199, CVE-2026-55200

Test results:
No changes

Assisted-by: Kiro
Signed-off-by: Sundeep KOKKONDA <sundeep.kokkonda@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agorepo: upgrade 2.64 -> 2.65
Richard Purdie [Tue, 7 Jul 2026 05:49:49 +0000 (05:49 +0000)] 
repo: upgrade 2.64 -> 2.65

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopatchelf: upgrade 0.19.0 -> 0.19.1
Richard Purdie [Tue, 7 Jul 2026 05:30:30 +0000 (05:30 +0000)] 
patchelf: upgrade 0.19.0 -> 0.19.1

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agodropbear: upgrade 2026.91 -> 2026.92
Richard Purdie [Tue, 7 Jul 2026 05:27:39 +0000 (05:27 +0000)] 
dropbear: upgrade 2026.91 -> 2026.92

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoxwayland: upgrade 24.1.12 -> 24.1.13
Richard Purdie [Wed, 8 Jul 2026 05:37:08 +0000 (05:37 +0000)] 
xwayland: upgrade 24.1.12 -> 24.1.13

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agoxserver-xorg: upgrade 21.1.23 -> 21.1.24
Richard Purdie [Wed, 8 Jul 2026 05:31:55 +0000 (05:31 +0000)] 
xserver-xorg: upgrade 21.1.23 -> 21.1.24

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopython3-uv-build: upgrade 0.11.26 -> 0.11.28
Richard Purdie [Wed, 8 Jul 2026 05:21:57 +0000 (05:21 +0000)] 
python3-uv-build: upgrade 0.11.26 -> 0.11.28

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agopython3-hatchling: upgrade 1.30.1 -> 1.31.0
Richard Purdie [Wed, 8 Jul 2026 05:15:42 +0000 (05:15 +0000)] 
python3-hatchling: upgrade 1.30.1 -> 1.31.0

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 weeks agolibxfont2: upgrade 2.0.7 -> 2.0.8
Richard Purdie [Wed, 8 Jul 2026 05:08:29 +0000 (05:08 +0000)] 
libxfont2: upgrade 2.0.7 -> 2.0.8

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>