<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git, branch master</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=master</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2026-06-12T14:29:03+00:00</updated>
<entry>
<title>mariadb: Upgrade 11.4.10 -&gt; 11.4.12</title>
<updated>2026-06-12T14:29:03+00:00</updated>
<author>
<name>Mingli Yu</name>
<email>mingli.yu@windriver.com</email>
</author>
<published>2026-06-11T08:24:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=5d90e6543de4d1c39424956c67ff1925a39bf3c8'/>
<id>urn:sha1:5d90e6543de4d1c39424956c67ff1925a39bf3c8</id>
<content type='text'>
This release includes below security fixes:
  CVE-2026-49261
  CVE-2026-48165
  CVE-2026-48163

Signed-off-by: Mingli Yu &lt;mingli.yu@windriver.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>nspr: align 0005-Makefile.in-remove-_BUILD_STRING-and-_BUILD_TIME.patch</title>
<updated>2026-06-12T14:29:02+00:00</updated>
<author>
<name>Markus Volk</name>
<email>f_l_k@t-online.de</email>
</author>
<published>2026-06-11T08:16:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=6a9438707b29a6fc43d529ae49d722ea0050282c'/>
<id>urn:sha1:6a9438707b29a6fc43d529ae49d722ea0050282c</id>
<content type='text'>
After current update this patch fails:
'0005-Makefile.in-remove-_BUILD_STRING-and-_BUILD_TIME.patch'

and needs adjustment

Signed-off-by: Markus Volk &lt;f_l_k@t-online.de&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>gpsd: Add ncurses-terminfo to RRECOMMENDS</title>
<updated>2026-06-12T14:29:02+00:00</updated>
<author>
<name>Jörg Sommer</name>
<email>joerg.sommer@navimatix.de</email>
</author>
<published>2026-06-10T16:39:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=b62f4643f1f2c63b22b6ed2fbcafb796ec3be8ba'/>
<id>urn:sha1:b62f4643f1f2c63b22b6ed2fbcafb796ec3be8ba</id>
<content type='text'>
At least cgps needs the terminfo files to start. But other tools like
gpspipe work without it. Hence, only recommend it, but do not depend on it.

Signed-off-by: Jörg Sommer &lt;joerg.sommer@navimatix.de&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>nftables: Conditionally add ${PN}-python as RDEPENDS for ptest</title>
<updated>2026-06-12T14:29:02+00:00</updated>
<author>
<name>Naman Jain</name>
<email>namanj1@kpit.com</email>
</author>
<published>2026-06-10T07:09:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=2c3c725a3bd3f3d211011d2c57b8b28978f7ddb6'/>
<id>urn:sha1:2c3c725a3bd3f3d211011d2c57b8b28978f7ddb6</id>
<content type='text'>
This commit updates the RDEPENDS for the ptest package to include
${PN}-python only when the 'python' PACKAGECONFIG option is enabled.

This change will ensure that we dont get below failure when ptest is enabled in the distro features,
and packageconfig is not set.
It causes this error-
ERROR: Nothing RPROVIDES 'nftables-python' (meta-openembedded/meta-networking/recipes-filter/nftables/nftables_1.1.6.bb RDEPENDS on or otherwise requires it)
NOTE: Runtime target 'nftables-python' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['nftables-python']
ERROR: Required build target 'nftables' has no buildable providers.
Missing or unbuildable dependency chain was: ['nftables', 'nftables-python']

Signed-off-by: Naman Jain &lt;namanj1@kpit.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>xdotool: avoid running host ldconfig during do_install</title>
<updated>2026-06-12T14:19:26+00:00</updated>
<author>
<name>Yogesh Tyagi</name>
<email>yogesh.tyagi@intel.com</email>
</author>
<published>2026-06-10T02:32:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=6feb91601c3fa69d88cf5822df97a37905a601ea'/>
<id>urn:sha1:6feb91601c3fa69d88cf5822df97a37905a601ea</id>
<content type='text'>
The upstream Makefile invokes ldconfig at install time, which runs the
host ldconfig against the target sysroot (${D}) and is both unnecessary
and non-deterministic for cross builds. Pass LDCONFIG=true to make the
install step a no-op for ldconfig, matching the WITHOUT_RPATH_FIX
handling already used here.

Signed-off-by: Yogesh Tyagi &lt;yogesh.tyagi@intel.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>python3-aiohttp: upgrade 3.13.5 -&gt; 3.14.1</title>
<updated>2026-06-12T14:19:26+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2026-06-10T01:44:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=702acd16d70665be31049324a523012e9696e777'/>
<id>urn:sha1:702acd16d70665be31049324a523012e9696e777</id>
<content type='text'>
License-Update: add full apache license

Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>gd: disable maybe-uninitialized error</title>
<updated>2026-06-12T14:19:25+00:00</updated>
<author>
<name>Markus Volk</name>
<email>f_l_k@t-online.de</email>
</author>
<published>2026-06-09T15:07:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=9e45d712f2b9a9df0402889af501e5a3a1851220'/>
<id>urn:sha1:9e45d712f2b9a9df0402889af501e5a3a1851220</id>
<content type='text'>
This fixes build with gcc16 until a suitable solution is found:
https://github.com/libgd/libgd/issues/990

Signed-off-by: Markus Volk &lt;f_l_k@t-online.de&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>python3-scapy: Replace oe.utils.all_distro_featuresc with bb.utils.filter</title>
<updated>2026-06-12T14:17:28+00:00</updated>
<author>
<name>Khem Raj</name>
<email>khem.raj@oss.qualcomm.com</email>
</author>
<published>2026-06-09T14:45:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=47ab5b9a8d28f1b6ee236d451273ab93a4f128a0'/>
<id>urn:sha1:47ab5b9a8d28f1b6ee236d451273ab93a4f128a0</id>
<content type='text'>
oe.utils.all_distro_features is being removed.

Suggested-by: Peter Kjellerstedt &lt;peter.kjellerstedt@axis.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>spectre-meltdown-checker: upgrade 26.33.0420460 -&gt; 26.36.0602723</title>
<updated>2026-06-10T01:55:03+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2026-06-09T10:29:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=3806168af1fb1baba7908b57306d8240c8f19801'/>
<id>urn:sha1:3806168af1fb1baba7908b57306d8240c8f19801</id>
<content type='text'>
Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>python3-uvicorn: upgrade 0.44.0 -&gt; 0.49.0</title>
<updated>2026-06-10T01:55:03+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2026-06-09T10:29:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=6b9932a9c29fba62e8a43239dce2c8ad3a85ce33'/>
<id>urn:sha1:6b9932a9c29fba62e8a43239dce2c8ad3a85ce33</id>
<content type='text'>
Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;khem.raj@oss.qualcomm.com&gt;
</content>
</entry>
</feed>
