| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
|
|
|
|
| |
TestProjectConfigTab::test_image_recipe_show_rows
Check some rows are visible in table instead of compare table row to
row_to_show, because recipe image table sometime doesn't display full avaiblable
images
(Bitbake rev: 1e2e5927ef7a8adfd3d0a3be1c75b4aa410d9908)
Signed-off-by: Alassane Yattara <alassane.yattara@savoirfairelinux.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
newer gawk 5.3.0+ added a new testcase test/cmdlinefsbacknl2.sh which
use od utility with -An option which is not available in busybox
provided od applet. Replacing -An is not possible because default output
for od is octal and the test wants to use none for radix thats why it
uses -An.
Fixes test/cmdlinefsbacknl2.sh failures in ptests
which fails like below
Usage: od [-aBbcDdeFfHhIiLlOovXx] [FILE]
od: unrecognized option: A
BusyBox v1.36.1 () multi-call binary.
Sadly, this prolongs depchain if ptest distro feature is used but there
is no other option if this test has to execute. Perhaps its best to
report this to upstream gawk and request to fix the testcase to not
hard depend on coreutils/od utility
(From OE-Core rev: ddcf27939625d96ee44e9c2297d5b17fa6cf46a0)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
systemd boot has completed when system is in "running" or "degraded"
(some services failed) state. Check for that in the systemd settle()
function instead of listing all services and checking their activation
state since some services are in activation state even when whole
system is already in "running" state. Examples of services which can be
in activation state are rootfs auto mounting related generated services.
Without this patch systemd test_systemd_list (systemd.SystemdBasicTests) times
out on an image with dm-verity /usr partition and systemd generated
rootfs:
NOTE: ... FAIL
Traceback (most recent call last):
File "/home/builder/src/base/build/../poky/meta/lib/oeqa/core/decorator/__init__.py", line 35, in wrapped_f
return func(*args, **kwargs)
File "/home/builder/src/base/poky/meta/lib/oeqa/runtime/cases/systemd.py", line 97, in test_systemd_failed
self.assertTrue(settled, msg=msg)
AssertionError: False is not true : Timed out waiting for systemd to settle:
UNIT LOAD ACTIVE SUB
DESCRIPTION
dev-disk-by\x2did-dm\x2dname\x2droot.device loaded activating tentativ
e /dev/disk/by-id/dm-name-root
dev-disk-by\x2did-dm\x2dname\x2dusr.device loaded activating tentativ
e /dev/disk/by-id/dm-name-usr
dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS2\x2df2b944f394174eb5918cb6af2c6b4cb2\x2droot.device loaded activating tentativ
e /dev/disk/by-id/dm-uuid-CRYPT-LUKS2-f2b944f394174eb5918cb6af2c6b4cb2-root
dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dVERITY\x2d3dd703c88f1946658697a6d57617473b\x2dusr.device loaded activating tentativ
e /dev/disk/by-id/dm-uuid-CRYPT-VERITY-3dd703c88f1946658697a6d57617473b-usr
dev-disk-by\x2duuid-bfbf856e\x2d3c65\x2d4eb2\x2d9ffb\x2d8e0b11641d85.device loaded activating tentativ
e /dev/disk/by-uuid/bfbf856e-3c65-4eb2-9ffb-8e0b11641d85
dev-dm\x2d0.device loaded activating tentativ
e /dev/dm-0
dev-dm\x2d1.device loaded activating tentativ
e /dev/dm-1
...
Fix is to check for the systemd global "running" or "degraded" state.
Note that it would be possible to use a blocking call
"systemctl is-system-running --wait" to exit after system enters "running"
or "degraded" state but using the existing loop for a 2 minute timeout.
(From OE-Core rev: 3b013ae441d117adeda0d9950e02e9f7d0deba2f)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Root Cause:
initial_revs is an empty dictionary and do not have "." key.
Traceback (most recent call last):
File "scripts/devtool", line 349, in <module>
ret = main()
File "scripts/devtool", line 336, in main
ret = args.func(args, config, basepath, workspace)
File "scripts/lib/devtool/standard.py", line 922, in modify
if not initial_revs["."]:
KeyError: '.'
Solution:
check key exists, then get its value.
(From OE-Core rev: fb0db5c48abb4d56233a175fdd349d18b972e452)
Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
==========
-LP#1976304: The "Element.addnext()" method previously inserted the new element
before existing tail text. The tail text of both sibling elements now stays on
the respective elements.
-LP#1980767, GH#379: "TreeBuilder.close()" could fail with a "TypeError" after
parsing incorrect input.
-"Element.itertext(with_tail=False)" returned the tail text of comments and
processing instructions, despite the explicit option.
-GH#370: A crash with recent libxml2 2.11.x versions was resolved.
-A compile problem with recent libxml2 2.12.x versions was resolved.
-The internal exception handling in C callbacks was improved for Cython 3.0.
-The exception declarations of "xmlInputReadCallback", "xmlInputCloseCallback",
-"xmlOutputWriteCallback" and "xmlOutputCloseCallback" in "tree.pxd" were
corrected to prevent running Python code or calling into the C-API with a live
exception set.
-GH#385: The long deprecated "unittest.makeSuite()" function is no longer used.
-LP#1522052: A file-system specific test is now optional and should no longer fail
on systems that don't support it.
-GH#392: Some tests were adapted for libxml2 2.13.
-Contains all fixes from lxml 4.9.4.
(From OE-Core rev: 5d9cd0ef5f7235eb5c8495a803bea6940c2994fe)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
===========
- The type annotation for 'attrs.resolve_types()' is now correct.
- Type stubs now use 'typing.dataclass_transform' to decorate dataclass-like
decorators, instead of the non-standard '__dataclass_transform__' special
form, which is only supported by Pyright.
- Fixed serialization of namedtuple fields using 'attrs.asdict/astuple()'
with 'retain_collection_types=True'.
- 'attrs.AttrsInstance' is now a 'typing.Protocol' in both type hints and code.
This allows you to subclass it along with another 'Protocol'.
- If *attrs* detects that '__attrs_pre_init__' accepts more than just 'self',
it will call it with the same arguments as '__init__' was called.
This allows you to, for example, pass arguments to 'super().__init__()'.
- Slotted classes now transform 'functools.cached_property' decorated methods
to support equivalent semantics.
- Added *class_body* argument to 'attrs.make_class()' to provide additional
attributes for newly created classes.
It is, for example, now possible to attach methods.
(From OE-Core rev: 9070758f0bb806f763a0d07b2b58b8b84b255880)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 4b2eccc0ee3f2906f9b04de194b9df6e24c2cdf4)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
This upgrade only includes one new commit:
64bc7c8 SECURITY.md: Add file
(From OE-Core rev: ea1705501c2e8933a94b5a1d19f6e36d46a5b481)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
ChangeLog:
- In capng_change_id, clear PR_SET_KEEPCAPS if returning an error
- pscap: add -p option for reporting a specified process
- Annotate function prototypes to warn if results are unused
- Drop python2 support
* Remove "--with-python" option as python2 support was dropped.
(From OE-Core rev: ee0eab240976f3bd0c9050694524336368c96201)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
ChangeLog:
- In capng_change_id, clear PR_SET_KEEPCAPS if returning an error
- pscap: add -p option for reporting a specified process
- Annotate function prototypes to warn if results are unused
- Drop python2 support
* Remove "--with-python" option as python2 support was dropped.
(From OE-Core rev: 8d2fbe1de759d36a8aeb184aaf89bb7c14fb3760)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: cd610101dc8fcb0cabe351085d36823c5bd7eb19)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: d0139bcbe0499e570f02f8f7b7e364763f7359ec)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
============
-Fix non-string constants at the top of file being detected as docstring
s on Python>=3.8.
-Handle an edge case where sys.stderr and sys.__stderr__ might already be
closed when Fault Handler is tearing down.
-Fixed tracebacks from collection errors not getting pruned.
-Removed unhelpful error message from assertion rewrite mechanism when exceptions
are raised in __iter__ methods. Now they are treated un-iterable instead.
-Updated documentation to refer to hyphenated options: replaced --junitxml with
--junit-xml and --collectonly with --collect-only.
(From OE-Core rev: 14c73455c4b0ac369ba50a57b69e9c780022a485)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
Fixed a side-channel leakage with OAEP decryption that could be exploited to carry out a Manger attack.
(From OE-Core rev: a6800df99159ab51b059bc2307049a72f7fcd663)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
Fixed a side-channel leakage with OAEP decryption that could be exploited to carry out a Manger attack.
(From OE-Core rev: d3b9b9f8d868602010b1de549f92758c78c701e0)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
============
updates vendored list of top-level domains, which is used by the provisional domains() strategy.
(From OE-Core rev: 7e6e484f4c36c098dc7dc17b6e7e6b4361572608)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
===========
-Added a default to an internal API that is used by scikit-build-core.
-$HFPR_VERSION is now replaced by the package version in the PyPI readme.
The version is not available in CLI mode, therefore it's replaced by the dummy
value of 42.0.
(From OE-Core rev: 9e59d673b773289a2d73cc5502c814860f31f6bf)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
bluez5: Fix invalid arguments to PairDevice
(From OE-Core rev: 6faf9db7604a55fa738f87e46cea5056acec47be)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
============
- Client-side bugfixes:
* Fix svn:mergeinfo diff parser bug when parsing forward merges (r1906502)
* Fix redirected URL handling with file externals (r1908926, issue #4911)
- Developer-visible changes:
* swig-rb: Fix uses of 'File.exist?', deprecated since Ruby 2.1 (r1904472)
* Build: Fix uses of deprecated Python APIs (r1900882, issue #4899)
* Build: Retain ability to build SWIG Python 2 bindings (r1900890)
* Fix reading WC lock status with svn_wc_status2_t (r1904193, issue #4908)
* JavaHL: Add @Deprecated to silence compiler warnings (r1904936)
* JavaHL: Fix crash in case of null message in getMessage (r1904938)
* Fix build breakage of release tarballs by installed swig (r1878379 et al)
* Add regression test for issue #4711 "invalid xml file" (r1877310)
* swig-py: Fix building with SWIG 4.1.0 (r1904167)
* Makefile.in: Fix cleaning of __pycache__ dirs and *.pyc (r1903267)
* swig-py: Avoid deprecated options to SWIG >= 4.1.0 (r1904198, r1904287)
* swig-py: Use sysconfig to allow building with Python 3.12 (r1910098)
* INSTALL: Document not to use SVN with APR 1.7.3 on Windows (r1911278)
* Fix test suite broken by syntax error when --enable-sasl (r1907124)
* swig-py: Fix issues #4916, #4917, #4918 (r1912500 et al)
* swig-py: Improve error when no external diff (r1912724, -743, issue #1778)
* autogen.sh: Fix building when Python is not named "python" (r1903245)
(From OE-Core rev: 31c0f3697a5d469a11f7cf0bf04e6368fbbbfa50)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
0001-meson.build-check-for-all-linux-host_os-combinations.patch
refreshed for 23.3.2
(From OE-Core rev: dd1f7452642d819dd4bc15500d9e4eb5e5cd64c6)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
License-Update:
===============
Upgrade to fmt 10.1.1
Upgrade to cpp-httplib 0.14.3
Upgrade to BLAKE3 1.5.0
Changelog:
https://ccache.dev/releasenotes.html#_ccache_4_9
0001-xxhash.h-Fix-build-with-gcc-12.patch
refreshed for 4.9
(From OE-Core rev: a237c43adc717ea92e1353ee93c29b47a52ad81a)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
0001-Make-CPU-family-warnings-fatal.patch
0001-python-module-do-not-manipulate-the-environment-when.patch
0002-Support-building-allarch-recipes-again.patch
refreshed for 1.3.1
(From OE-Core rev: 51b5e79cd37de982492991e56362cf1f0ef2ab8e)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
==========
- avcodec/mpegvideo_enc: Dont copy beyond the image
- avfilter/vf_minterpolate: Check pts before division
- avfilter/avf_showwaves: Check history_nb_samples
- avformat/flacdec: Avoid double AVERRORS
- avfilter/vf_vidstabdetect: Avoid double AVERRORS
- avcodec/vaapi_encode: Avoid double AVERRORS
- avfilter/vf_swaprect: round coordinates down
- avfilter/vf_swaprect: Use height for vertical variables
- avfilter/vf_swaprect: assert that rectangles are within memory
- avfilter/af_alimiter: Check nextpos before use
- avfilter/f_reverse: Apply PTS compensation only when pts is available
- avfilter/af_stereowiden: Check length
- avformat/mov: Fix MSAN issue with stsd_id
- avcodec/jpegxl_parser: Check get_vlc2()
- avfilter/vf_weave: Fix odd height handling
- avfilter/edge_template: Fix small inputs with gaussian_blur()
- avfilter/vf_gradfun: Do not overread last line
- avfilter/avf_showspectrum: fix off by 1 error
- avcodec/jpegxl_parser: Add padding to cs_buffer
- avformat/mov: do not set sign bit for chunk_offsets
- avcodec/jpeglsdec: Check Jpeg-LS LSE
- avcodec/osq: Implement flush()
- configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
- avcodec/cbs_h266: more restrictive check on pps_tile_idx_delta_val
- avcodec/jpeg2000htdec: check if block decoding will exceed internal precision
- tools/target_dec_fuzzer: Adjust threshold for VMIX
- avcodec/av1dec: Fix resolving zero divisor
- avformat/mov: Ignore duplicate ftyp
- avformat/mov: Fix integer overflow in mov_read_packet().
- lavc/qsvdec: return 0 if more data is required
- avcodec/jpegxl_parser: check ANS cluster alphabet size vs bundle size
- libavformat/vvc: Make probe more conservative
- hwcontext_vulkan: guard unistd.h include
- lavc/Makefile: build vulkan decode code if vulkan_av1 has been enabled
- lavc/dvdsubenc: only check canvas size when it is actually set
- avcodec/decode: validate hw_frames_ctx when AVHWAccel.free_frame_priv is used
- avcoded/fft: Fix memory leak if ctx2 is used
- avcodec/fft: Use av_mallocz to avoid invalid free/uninit
(From OE-Core rev: e9ca6bdd43069c0b25115ae70dc09f0dda93ab1f)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
0001-architecture-Recognise-RISCV-32-RISCV-64.patch is dropped because
it has some problem. It's a patch from systemd repo, yet it's marked
as 'Backport' for systemd-bootchart. systemd and systemd-bootchart are
two different projects. Now in 235, RISCV64 has been officially supported,
but RISCV32 is not. So drop this patch. People who want RISCV32 support
need to work with systemd-bootchart upstream first.
(From OE-Core rev: 1f6dfaedcc01071b7ec17a411264f39c327e4dc0)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 2076e830de2846dd0dfeba86637e575ced85aa54)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add systemd-sshd-socket-mode PACKAGECONFIG option to choose installing
sshd.socket and systemd-sshd-service-mode PACKAGECONFIG option to choose
installing sshd.service.
The systemd-sshd-socket-mode PACKAGECONFIG option is enabled by default
and user can choose the above two PACKAGECONFIG option to customize the
sshd mode.
(From OE-Core rev: bc830ad3c6a11af1a350dca7f33f0682aeee0d21)
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Latest wireshark (4.2.0) is needed for python 3.12 support;
it also requires speexdsp unconditionally, and wireshark-native
for its own build helper tools in native versions.
So speexdsp needs a native version so that wireshark-native
builds without error.
(From OE-Core rev: 44f2525e76ad5832faad1968037c8da8b6a285d2)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
obtaining mtime
Suppressing the error and returning None can result in a delayed failure:
https://autobuilder.yoctoproject.org/typhoon/#/builders/86/builds/6254/steps/14/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/87/builds/6262/steps/14/logs/stdio
It is not clear why the os.stat() error occurs to begin with (it shouldn't), so rather than
adding further workarounds, let's get diagnostics at the source first, so we understand
what is going on.
(From OE-Core rev: 35483d4756ab53805507f72a9a0edb3f83759694)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
We need bitbake 2.7.1 due to the find_siginfo changes.
(From OE-Core rev: b8b6c3ebf6821b28dd1a350ccd74e47dc4bbd593)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
Since we're changing the return values of the function, add a version so
bitbake can ensure it is using a compatible function.
(From OE-Core rev: 738bf3717002d124958a21a6925b0eca14fef131)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
find_siginfo() returns two different data structures depending
on whether its third argument (list of hashes to find) is empty or
not:
- a dict of timestamps keyed by path
- a dict of paths keyed by hash
This is not a good API design; it's much better to return
a dict of dicts that include both timestamp and path, keyed by
hash. Then the API consumer can decide how they want to use these
fields, particularly for additional diagnostics or informational
output.
I also took the opportunity to add a binary field that
tells if the match came from sstate or local stamps dir, which
will help prioritize local stamps when looking up most
recent task signatures.
(From OE-Core rev: 8721c52041e910bd4d8a9235b52f274f4f02c8a3)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
Bump the version to 2.7.1 for the find_siginfo changes.
(Bitbake rev: 03995e16bf7186f5368f772f617d563f4d280641)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
printdiff
Even with the reworked printdiff code, sstate which is heavily used in parallel
can throw races at the tests: if a new matching, but otherwise unrelated
sstate signature appears between writing out local stamps and listing
matching sstate files, then that signature will be deemed 'the latest'
and the actual local stamp will be discarded. This change ensures
the scenario does not happen.
It also makes use of the reworked find_siginfo(), particularly the 'sstate'
entry in returned results.
(Bitbake rev: c8574b796dabb69699c70540dd95a44d8f7388ab)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Since we need to change the form of the siggen function, we need to add versioning
and some verison checks. This means if a newer bitbake is used with older metadata
we can detect it.
(Bitbake rev: 721556568413508213d22c29985e305a45a8d68a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
In particular having 'time' explicitly used as a sorting key should make it
more clear how the entries are being sorted.
(Bitbake rev: 5439aca056c84ab4410aaf24bdb68e896191d8e1)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
Bump to a development version post release.
(Bitbake rev: 28364c08f36c778a5cb2e3f20ceb052370ef153c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(Bitbake rev: 52f5503e8cf048331134233fb681db6dc736ae38)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
import/add local layer
(Bitbake rev: 94e88efa9dbefd37f1d48459ade19797b6034b84)
Signed-off-by: Alassane Yattara <alassane.yattara@savoirfairelinux.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Bumping the reference distros to the latest -stable/lts
kernel.
(From meta-yocto rev: f148b0ddea099062b07abe6d8a8f6c67b8bc087f)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Also change path.exists() and !path.isdir() to a single
path.isfile() which should be equal.
Enables running tests against image recipes which are not called
"bla-image" but plain "bla". Currently they fail with do_testimage/runqemu
error:
runqemu - ERROR - Unknown path arg /home/builder/src/base/build/tmp_qemuarm64/deploy/images/qemuarm64/img-qemuarm64.rootfs.wic
Suggested-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(From OE-Core rev: 107d0db3dc3678e6f0ae4035f4c0b86c6b421168)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(From OE-Core rev: 720f48c0692a4cbb00535151b049704645748216)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(From OE-Core rev: 789549ed28c043a6d9b304f99f528546f4ade957)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
Add a comment explaining why we need the jitterentropy ignore.
(From OE-Core rev: ed4b202b11fd18e18502fe4e90f421dce4db8b44)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/6.6:
1/1 [
Author: Stephan Müller
Email: smueller@chronox.de
Subject: crypto: jitter - add RCT/APT support for different OSRs
Date: Thu, 21 Sep 2023 13:48:11 +0200
The oversampling rate (OSR) value specifies the heuristically implied
entropy in the recorded data - H_submitter = 1/osr. A different entropy
estimate implies a different APT/RCT cutoff value. This change adds
support for OSRs 1 through 15. This OSR can be selected by the caller
of the Jitter RNG.
For this patch, the caller still uses one hard-coded OSR. A subsequent
patch allows this value to be configured.
In addition, the power-up self test is adjusted as follows:
* It allows the caller to provide an oversampling rate that should be
tested with - commonly it should be the same as used for the actual
runtime operation. This makes the power-up testing therefore consistent
with the runtime operation.
* It calls now jent_measure_jitter (i.e. collects the full entropy
that can possibly be harvested by the Jitter RNG) instead of only
jent_condition_data (which only returns the entropy harvested from
the conditioning component). This should now alleviate reports where
the Jitter RNG initialization thinks there is too little entropy.
* The power-up test now solely relies on the (enhanced) APT and RCT
test that is used as a health test at runtime.
The code allowing the different OSRs as well as the power-up test
changes are present in the user space version of the Jitter RNG 3.4.1
and thus was already in production use for some time.
Reported-by "Ospan, Abylay" <aospan@amazon.com>
Signed-off-by: Stephan Mueller <smueller@chronox.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
]
(From OE-Core rev: 1349b759e9b8f363ab9a9feec531f3a877f97dec)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/6.6:
1/1 [
Author: Ross Burton
Email: ross.burton@arm.com
Subject: arm64: defconfig: remove CONFIG_IPQ_APSS_5018
Date: Thu, 4 Jan 2024 13:32:41 +0000
This was added in 7f0c873 ("Enable IPQ5018 SoC base configs"), but there
is no IPQ_APSS_5018 config defined in the kconfig at present.
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: f660af767aacb39d7a9b97d7f0de8e5244012608)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Data pulled from: https://github.com/nluedtke/linux_kernel_cves
1/1 [
Author: Nicholas Luedtke
Email: nicholas.luedtke@uwalumni.com
Subject: Update 27Dec23
Date: Wed, 27 Dec 2023 19:47:13 -0500
]
(From OE-Core rev: b303a7dd260ad3f6a9e6f1b8099b86efcc8373a9)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating linux-yocto/6.1 to the latest korg -stable release that comprises
the following commits:
a507f147e6f0 Linux 6.1.70
a413b88cdb69 loop: deprecate autoloading callback loop_probe()
75c27bdb2144 wifi: nl80211: fix deadlock in nl80211_set_cqm_rssi (6.6.x)
15577a98ef29 wifi: cfg80211: fix CQM for non-range use
706448f716c1 fuse: share lookup state between submount and its parent
ec7b81b0abcd mm/damon/core: make damon_start() waits until kdamond_fn() starts
41f4ff9fe22c x86/alternatives: Sync core before enabling interrupts
425379154b7f KVM: arm64: vgic: Force vcpu vgic teardown on vcpu destroy
5dfacfd0fcd6 KVM: arm64: vgic: Add a non-locking primitive for kvm_vgic_vcpu_destroy()
3a0fd93cd9f7 KVM: arm64: vgic: Simplify kvm_vgic_destroy()
3339028dd082 thunderbolt: Fix memory leak in margining_port_remove()
69b6596c6e4a lib/vsprintf: Fix %pfwf when current node refcount == 0
2dd6f2286047 gpio: dwapb: mask/unmask IRQ when disable/enale it
ab1c3f91d174 bus: ti-sysc: Flush posted write only after srst_udelay
cd9f9ef59d85 pinctrl: starfive: jh7100: ignore disabled device tree nodes
7f7efa30fa87 dm-integrity: don't modify bio's immutable bio_vec in integrity_metadata()
33b976a0f2ae tracing / synthetic: Disable events after testing in synth_event_gen_test_init()
d2b549d3107b scsi: core: Always send batch on reset or error handling command
72e472a91c0d Revert "scsi: aacraid: Reply queue mapping to CPUs based on IRQ affinity"
4258274bacfb selftests: mptcp: join: fix subflow_send_ack lookup
a8555c86f508 ublk: move ublk_cancel_dev() out of ub->mutex
1c250f2c5fa5 ubifs: fix possible dereference after free
3c42cc437d7e btrfs: zoned: no longer count fresh BG region as zone unusable
b09a67617621 Revert "drm/amd/display: Do not set DRR on pipe commit"
93da3d8af9ee dm thin metadata: Fix ABBA deadlock by resetting dm_bufio_client
e9779fac685e loop: do not enforce max_loop hard limit by (new) default
600043e1856c RISC-V: Fix do_notify_resume / do_work_pending prototype
764c6790dd71 9p: prevent read overrun in protocol dump tracepoint
7d09c84df5ab drm/i915: Reject async flips with bigjoiner
c60e10d1549f smb: client: fix OOB in smbCalcSize()
bef4315f19ba smb: client: fix OOB in SMB2_query_info_init()
71fe685b6a47 smb: client: fix potential OOB in cifs_dump_detail()
277832a306f9 smb: client: fix OOB in cifsd when receiving compounded resps
3f6da210470c dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp
1092525155ea net: ks8851: Fix TX stall caused by TX buffer overrun
e9df9f089128 net: rfkill: gpio: set GPIO direction
805611157d68 net: 9p: avoid freeing uninit memory in p9pdu_vreadf
4c775b4cd8dd Input: soc_button_array - add mapping for airplane mode button
5df2b49e7e78 net: usb: ax88179_178a: avoid failed operations when device is disconnected
0f7bffd40a51 Bluetooth: Add more enc key size check
39347d645081 Bluetooth: MGMT/SMP: Fix address type when using SMP over BREDR/LE
e14a7ebafe4e Bluetooth: L2CAP: Send reject on command corrupted request
37f71e2c9f51 Bluetooth: af_bluetooth: Fix Use-After-Free in bt_sock_recvmsg
470896ecbc92 Bluetooth: hci_event: Fix not checking if HCI_OP_INQUIRY has been sent
d36d945f94c3 ALSA: hda/realtek: Add quirk for ASUS ROG GV302XA
9599a5e34ca9 USB: serial: option: add Quectel RM500Q R13 firmware support
a91fb450df5d USB: serial: option: add Foxconn T99W265 with new baseline
73b6b6ab03ae USB: serial: option: add Quectel EG912Y module support
9b968a708678 USB: serial: ftdi_sio: update Actisense PIDs constant names
db57ef0dd4c2 wifi: cfg80211: fix certs build to not depend on file order
ec350809cd98 wifi: cfg80211: Add my certificate
228d9960ae81 usb-storage: Add quirk for incorrect WP on Kingston DT Ultimate 3.0 G3
82f913724bc9 ALSA: usb-audio: Increase delay in MOTU M quirk
01bc94b58192 iio: triggered-buffer: prevent possible freeing of wrong buffer
c508a99fbc21 iio: adc: ti_am335x_adc: Fix return value check of tiadc_request_dma()
1b670b0eeefa iio: common: ms_sensors: ms_sensors_i2c: fix humidity conversion time table
1fe4c93fc77b scsi: bnx2fc: Fix skb double free in bnx2fc_rcv()
66ccf5f7437a Input: ipaq-micro-keys - add error handling for devm_kmemdup
3637f6bdfe2c interconnect: qcom: sm8250: Enable sync_state
90aa62722d3e iio: imu: inv_mpu6050: fix an error code problem in inv_mpu6050_read_raw
50d60bfc9681 interconnect: Treat xlate() returning NULL node as an error
900c1b3c62f9 drm/i915: Fix ADL+ tiled plane stride when the POT stride is smaller than the original
de4349bdf9f3 drm/i915/mtl: Add MTL for remapping CCS FBs
52c1a67dd303 drm/i915/dpt: Only do the POT stride remap when using DPT
7afe8109456d drm/i915: Fix intel_atomic_setup_scalers() plane_state handling
b097184f8026 drm/i915: Relocate intel_atomic_setup_scalers()
99767368b7fa drm/i915/mtl: limit second scaler vertical scaling in ver >= 14
387e8077593e nvme-pci: fix sleeping function called from interrupt context
b506833ee887 gpiolib: cdev: add gpio_device locking wrapper around gpio_ioctl()
6eb51df9e739 pinctrl: at91-pio4: use dedicated lock class for IRQ
903bb0c7b81f x86/xen: add CPU dependencies for 32-bit build
2550d96aa248 i2c: aspeed: Handle the coalesced stop conditions with the start conditions.
5c11f637999c ASoC: fsl_sai: Fix channel swap issue on i.MX8MP
264d8c9b7f7f ASoC: hdmi-codec: fix missing report for jack initial status
9b4c95a63e2d afs: Fix use-after-free due to get/remove race in volume tree
17605162e26b afs: Fix overwriting of result of DNS query
791d5409cdb9 keys, dns: Allow key types (eg. DNS) to be reclaimed immediately on expiry
3e617c7e39eb net: check dev->gso_max_size in gso_features_check()
087b96adc694 afs: Fix dynamic root lookup DNS check
9c6ea7abe3ed afs: Fix the dynamic root's d_delete to always delete unused dentries
a70c2dd74198 net: check vlan filter feature in vlan_vids_add_by_dev() and vlan_vids_del_by_dev()
ea03196ebc47 net: mana: select PAGE_POOL
a1986c429c68 Bluetooth: hci_event: shut up a false-positive warning
fc6471510582 Bluetooth: Fix deadlock in vhci_send_frame
3e0d1585799d net/rose: fix races in rose_kill_by_device()
51e28c37d960 ethernet: atheros: fix a memleak in atl1e_setup_ring_resources
6707baabe432 net: sched: ife: fix potential use-after-free
31edab12229c net: Return error from sk_stream_wait_connect() if sk_wait_event() fails
9d00421e1430 octeontx2-pf: Fix graceful exit during PFC configuration failure
b0cee294022f net: mscc: ocelot: fix eMAC TX RMON stats for bucket 256-511 and above
72b8de75b394 net/mlx5e: Correct snprintf truncation handling for fw_version buffer used by representors
18b4a5e0c3f5 net/mlx5e: Correct snprintf truncation handling for fw_version buffer
94c8485b449e net/mlx5: Fix fw tracer first block check
1750f55d855a net/mlx5e: fix a potential double-free in fs_udp_create_groups
01877daaeff0 net/mlx5e: Fix a race in command alloc flow
f3739647a737 net/mlx5: Re-organize mlx5_cmd struct
148ec770c63e net/mlx5: Prevent high-rate FW commands from populating all slots
bd6e09162910 net/mlx5: Introduce and use opcode getter in command interface
0f5de95fa266 net/mlx5e: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list()
31037cfceff8 Revert "net/mlx5e: fix double free of encap_header"
8a84413505a6 Revert "net/mlx5e: fix double free of encap_header in update funcs"
2f635af7d6b4 wifi: mac80211: mesh_plink: fix matches_local logic
7a07af00aa88 wifi: mac80211: mesh: check element parsing succeeded
40ba7f9ab82a wifi: mac80211: check if the existing link config remains unchanged
e90da1c7c6e7 wifi: iwlwifi: pcie: add another missing bh-disable for rxq->lock
912652366f9e s390/vx: fix save/restore of fpu kernel context
0a6e700c3d7b reset: Fix crash when freeing non-existent optional resets
930a61fd795d ARM: OMAP2+: Fix null pointer dereference and memory leak in omap_soc_device_init
228a00a77d50 ARM: dts: dra7: Fix DRA7 L3 NoC node register size
913463f8e6cd drm/amd/display: fix hw rotated modes when PSR-SU is enabled
a4f48f77bbe7 HID: i2c-hid: Add IDEA5002 to i2c_hid_acpi_blacklist[]
413bef367ba6 HID: i2c-hid: acpi: Unify ACPI ID tables format
57a6b0a464eb bpf: Fix prog_array_map_poke_run map poke update
4768f82272a7 kasan: disable kasan_non_canonical_hook() for HW tags
(From OE-Core rev: a0bfc167a283372297881baa696bc91bcea7787a)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Data pulled from: https://github.com/nluedtke/linux_kernel_cves
1/1 [
Author: Nicholas Luedtke
Email: nicholas.luedtke@uwalumni.com
Subject: Update 27Dec23
Date: Wed, 27 Dec 2023 19:47:13 -0500
]
(From OE-Core rev: 2624d3b982a0e063f2c1d4c413534723c713d8d6)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating to the latest korg -stable release that comprises
the following commits:
5e9df83a7052 Linux 6.6.9
883b9f52b705 spi: cadence: revert "Add SPI transfer delays"
ddc4ad52c022 x86/smpboot/64: Handle X2APIC BIOS inconsistency gracefully
6778977590da x86/alternatives: Disable interrupts and sync when optimizing NOPs in place
5518f168ae6d x86/alternatives: Sync core before enabling interrupts
e13ce009ecab KVM: arm64: vgic: Force vcpu vgic teardown on vcpu destroy
05d47e26c251 KVM: arm64: vgic: Add a non-locking primitive for kvm_vgic_vcpu_destroy()
71c631a9fb21 KVM: arm64: vgic: Simplify kvm_vgic_destroy()
6fbaeffc3a92 thunderbolt: Fix memory leak in margining_port_remove()
50ae1c470491 lib/vsprintf: Fix %pfwf when current node refcount == 0
9a6ed4ea985a gpio: dwapb: mask/unmask IRQ when disable/enale it
add8973e3de6 bus: ti-sysc: Flush posted write only after srst_udelay
6e827b18219e pinctrl: starfive: jh7100: ignore disabled device tree nodes
dc958dd32ce8 pinctrl: starfive: jh7110: ignore disabled device tree nodes
c18cf955d11c selftests: mptcp: join: fix subflow_send_ack lookup
3b664557b12f dm-integrity: don't modify bio's immutable bio_vec in integrity_metadata()
7e39c55ee095 tracing / synthetic: Disable events after testing in synth_event_gen_test_init()
d7ef2eeec259 scsi: core: Always send batch on reset or error handling command
71758d4d87ef Revert "scsi: aacraid: Reply queue mapping to CPUs based on IRQ affinity"
09283d60bc33 nvmem: brcm_nvram: store a copy of NVRAM content
dbf0c97f52d6 spi: atmel: Fix clock issue when using devices with different polarities
4b74558ab3ca spi: atmel: Prevent spi transfers from being killed
662ae991759a spi: atmel: Do not cancel a transfer upon any signal
bddd8b50bfe2 ring-buffer: Fix slowpath of interrupted event
307f56f2606a ring-buffer: Remove useless update to write_stamp in rb_try_to_discard()
82aaf7fc9865 ring-buffer: Fix 32-bit rb_time_read() race with rb_time_cmpxchg()
0590874226f3 9p: prevent read overrun in protocol dump tracepoint
e0730d7edbc3 drm/i915/dmc: Don't enable any pipe DMC events
706b554adfe9 drm/i915: Reject async flips with bigjoiner
ac48fcef5ec2 smb: client: fix OOB in smbCalcSize()
3b5f0d0a2bf0 smb: client: fix OOB in SMB2_query_info_init()
6630441cc2e8 smb: client: fix potential OOB in cifs_dump_detail()
c0e98de95072 smb: client: fix OOB in cifsd when receiving compounded resps
c21acd673168 nfsd: call nfsd_last_thread() before final nfsd_put()
7b5ef500d8b3 dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp
93f763c28a8b net: stmmac: fix incorrect flag check in timestamp interrupt
92b8881bf776 net: avoid build bug in skb extension length calculation
30302b41ffdc net: ks8851: Fix TX stall caused by TX buffer overrun
d2821864c744 net: rfkill: gpio: set GPIO direction
506ef81c993c net: 9p: avoid freeing uninit memory in p9pdu_vreadf
cac200353b71 Input: soc_button_array - add mapping for airplane mode button
d4ab5cfa098e net: usb: ax88179_178a: avoid failed operations when device is disconnected
ebd7bc419aeb usb: fotg210-hcd: delete an incorrect bounds test
847f8f529a13 usb: typec: ucsi: fix gpio-based orientation detection
34c032a72f97 Bluetooth: Add more enc key size check
865f1f43262c Bluetooth: MGMT/SMP: Fix address type when using SMP over BREDR/LE
0974347ac10d Bluetooth: L2CAP: Send reject on command corrupted request
1d576c3a5af8 Bluetooth: af_bluetooth: Fix Use-After-Free in bt_sock_recvmsg
90d6a3974771 Bluetooth: hci_event: Fix not checking if HCI_OP_INQUIRY has been sent
9c7560192619 ASoC: tas2781: check the validity of prm_no/cfg_no
23c2e6c09327 ALSA: hda/realtek: Add quirk for ASUS ROG GV302XA
ff02d91704fa ALSA: hda/tas2781: select program 0, conf 0 by default
27149e82d7cb USB: serial: option: add Quectel RM500Q R13 firmware support
3cb3868ec7bd USB: serial: option: add Foxconn T99W265 with new baseline
7dbe89b73f7f USB: serial: option: add Quectel EG912Y module support
66c131518213 USB: serial: ftdi_sio: update Actisense PIDs constant names
4ccca0017c4e wifi: cfg80211: fix certs build to not depend on file order
018f336f79fd wifi: cfg80211: Add my certificate
e4006c5a5c0d wifi: mt76: fix crash with WED rx support enabled
af60d63b86a4 usb-storage: Add quirk for incorrect WP on Kingston DT Ultimate 3.0 G3
1937e40875c8 ARM: dts: Fix occasional boot hang for am3 usb
e8e214d0bf70 ALSA: usb-audio: Increase delay in MOTU M quirk
ae0faa924d07 iio: triggered-buffer: prevent possible freeing of wrong buffer
55efc549392e iio: tmag5273: fix temperature offset
7116fa37b2f2 iio: adc: ti_am335x_adc: Fix return value check of tiadc_request_dma()
7a9c97174358 iio: imu: adis16475: add spi_device_id table
706b7aca24f4 iio: common: ms_sensors: ms_sensors_i2c: fix humidity conversion time table
d79cb9bcc63c iio: adc: imx93: add four channels for imx93 adc
60d6d2704056 iio: kx022a: Fix acceleration value scaling
1f7213358d84 scsi: ufs: core: Let the sq_lock protect sq_tail_slot access
a8409bcc3243 scsi: ufs: qcom: Return ufs_qcom_clk_scale_*() errors in ufs_qcom_clk_scale_notify()
92ba459b8d63 scsi: bnx2fc: Fix skb double free in bnx2fc_rcv()
e40e75a2e554 iio: adc: meson: add separate config for axg SoC family
2a83824c6cf9 Input: ipaq-micro-keys - add error handling for devm_kmemdup
5832822a4acb interconnect: qcom: sm8250: Enable sync_state
040c16b5d934 iio: imu: inv_mpu6050: fix an error code problem in inv_mpu6050_read_raw
1d42af06c6d2 interconnect: Treat xlate() returning NULL node as an error
fedbc8732fd0 nvme-pci: fix sleeping function called from interrupt context
249cbac4454f gpiolib: cdev: add gpio_device locking wrapper around gpio_ioctl()
3ccefdae5817 pinctrl: at91-pio4: use dedicated lock class for IRQ
6214f5c966f0 x86/xen: add CPU dependencies for 32-bit build
8f21b05995b3 i2c: aspeed: Handle the coalesced stop conditions with the start conditions.
63835e3f4e0b drm/amdgpu: re-create idle bo's PTE during VM state machine reset
5fcd03fa028b i2c: qcom-geni: fix missing clk_disable_unprepare() and geni_se_resources_off()
fb0f25c8fe6d ASoC: fsl_sai: Fix channel swap issue on i.MX8MP
b965c22e1a0b ASoC: hdmi-codec: fix missing report for jack initial status
6472e3217fe5 drm/i915/mtl: Fix HDMI/DP PLL clock selection
80419c96f8e6 drm/i915/hwmon: Fix static analysis tool reported issues
c3215484ca1f afs: Fix use-after-free due to get/remove race in volume tree
81fc8dceb78b afs: Fix overwriting of result of DNS query
afc360e8a125 keys, dns: Allow key types (eg. DNS) to be reclaimed immediately on expiry
449f9d843ece net: check dev->gso_max_size in gso_features_check()
b577b9aa1340 net/ipv6: Revert remove expired routes with a separated list of routes
5c7a24ab04e2 net: ethernet: mtk_wed: fix possible NULL pointer dereference in mtk_wed_wo_queue_tx_clean()
3c305aa9962d afs: Fix dynamic root lookup DNS check
9ff7ae01a0c0 afs: Fix the dynamic root's d_delete to always delete unused dentries
337ca88fde4d net: check vlan filter feature in vlan_vids_add_by_dev() and vlan_vids_del_by_dev()
330fe5d51bce net: mana: select PAGE_POOL
79733dfcc913 ice: Fix PF with enabled XDP going no-carrier after reset
fc4d6d136d42 ice: alter feature support check for SRIOV and LAG
194e51acb3c4 ice: stop trashing VF VSI aggregator node ID information
d98ce1f083cc net: phy: skip LED triggers on PHYs on SFP modules
f0534c0fa81b bnxt_en: do not map packet buffers twice
a07a95bcb966 Bluetooth: hci_core: Fix hci_conn_hash_lookup_cis
7ee2ba3dd66b Bluetooth: hci_event: shut up a false-positive warning
7fe3556f98b1 Bluetooth: Fix deadlock in vhci_send_frame
399dea9d5ac8 Bluetooth: Fix not notifying when connection encryption changes
ffced26692f8 net/rose: fix races in rose_kill_by_device()
73e159a240d7 ethernet: atheros: fix a memleak in atl1e_setup_ring_resources
2839a639db5e net: sched: ife: fix potential use-after-free
2ef87ac54cf8 net: Return error from sk_stream_wait_connect() if sk_wait_event() fails
1e5283b96019 octeontx2-pf: Fix graceful exit during PFC configuration failure
fd0f5c1a314c net: mscc: ocelot: fix pMAC TX RMON stats for bucket 256-511 and above
30108546942e net: mscc: ocelot: fix eMAC TX RMON stats for bucket 256-511 and above
38de00323785 net/mlx5e: Correct snprintf truncation handling for fw_version buffer used by representors
952446adc201 net/mlx5e: Correct snprintf truncation handling for fw_version buffer
46538a6f57f9 net/mlx5e: Fix error codes in alloc_branch_attr()
186854bdbac6 net/mlx5e: Fix error code in mlx5e_tc_action_miss_mapping_get()
96c8c465f77f net/mlx5: Refactor mlx5_flow_destination->rep pointer to vport num
d4d25b7b3269 net/mlx5: Fix fw tracer first block check
8bcb51d06a47 net/mlx5e: XDP, Drop fragmented packets larger than MTU size
2da82046dfd9 net/mlx5e: Decrease num_block_tc when unblock tc offload
595d51b29511 net/mlx5e: Fix overrun reported by coverity
2f4d63283645 net/mlx5e: fix a potential double-free in fs_udp_create_groups
5f760d1eb75d net/mlx5e: Fix a race in command alloc flow
c428f4934c98 net/mlx5e: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list()
9c8d46bc0549 Revert "net/mlx5e: fix double free of encap_header"
c47e9c569176 Revert "net/mlx5e: fix double free of encap_header in update funcs"
bcc5b2d8a339 bpf: syzkaller found null ptr deref in unix_bpf proto add
7c1e6f8f4626 ice: fix theoretical out-of-bounds access in ethtool link modes
264796091cc6 wifi: mac80211: mesh_plink: fix matches_local logic
1c8d80125142 wifi: mac80211: mesh: check element parsing succeeded
1ac3318338c4 wifi: mac80211: check defragmentation succeeded
35de90d7fab8 wifi: mac80211: don't re-add debugfs during reconfig
b31a33ad4f55 wifi: mac80211: check if the existing link config remains unchanged
1caf92e77c00 wifi: iwlwifi: pcie: add another missing bh-disable for rxq->lock
968ed600024c wifi: ieee80211: don't require protected vendor action frames
f685ef2c9ae8 SUNRPC: Revert 5f7fc5d69f6e92ec0b38774c387f5cf7812c5806
dd691e300d52 platform/x86/intel/pmc: Fix hang in pmc_core_send_ltr_ignore()
602490b469e3 s390/vx: fix save/restore of fpu kernel context
11dfea080f65 reset: Fix crash when freeing non-existent optional resets
1e4f9b7abf54 ARM: OMAP2+: Fix null pointer dereference and memory leak in omap_soc_device_init
bc9ca01ef814 ARM: dts: dra7: Fix DRA7 L3 NoC node register size
b352ebe373dd arm64: dts: allwinner: h616: update emac for Orange Pi Zero 3
a8b655ac35be spi: spi-imx: correctly configure burst length when using dma
c9b26d9e438e drm: Fix FD ownership check in drm_master_check_perm()
031ddd280089 drm: Update file owner during use
a2abe532ecd0 drm/i915/edp: don't write to DP_LINK_BW_SET when using rate select
e4c16db9daf1 drm/i915: Introduce crtc_state->enhanced_framing
1f17934815bc drm/i915: Fix FEC state dump
cd8b639700ab drm/amd/display: fix hw rotated modes when PSR-SU is enabled
624bc6f62c85 btrfs: free qgroup pertrans reserve on transaction abort
1a80999ba376 btrfs: qgroup: use qgroup_iterator in qgroup_convert_meta()
1c9a5c49504c btrfs: qgroup: iterate qgroups without memory allocation for qgroup_reserve()
e93bcaebda90 mm/damon/core: make damon_start() waits until kdamond_fn() starts
c708a5e51b43 mm/damon/core: use number of passed access sampling as a timer
f64b2dc8a446 bpf: Fix prog_array_map_poke_run map poke update
(From OE-Core rev: 109e95a117ac9eb611386bf8bbfbb5180f555716)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The copied 6.5 -> 6.6 linux-yocto-rt recipe missed one branch
update to 6.6.
The scripts setting the SRCREVs of course are using the 6.6
branches, which leaves us with a fetch failure.
(From OE-Core rev: a4e7603afb1f5a306dfcd4e04a979979b80312b5)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|