summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
...
* systemd: upgrade from 255.6 to 256Chen Qi2024-07-1331-1027/+564
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The 'cgroupv2' PACKAGECONFIG is dropped as systemd now only supports cgroupv2. The 'kmod' PACKAGECONFIG is now added 'libkmod' as a runtime dependency. This is because systemd 256 uses dlopen to make use of libkmod, and there's no way for our library detection codes to know this and add such dependency automatically. So we add it explicitly. mime is now inherited because ${datadir}/mime/packages/io.systemd.xml is a mime type file. For musl specific patches, most are refreshed. One old patch is dropped, and four new ones are added. Newly added: build-path.c: avoid boot time segfault for musl adjust header inclusion order to avoid redeclaration undef stdin for references using stdin as a struct member include signal.h to avoid the 'undeclared' error Dropped: src/basic/missing.h: check for missing strndupa (drop reason: systemd does not use strndupa any more) (From OE-Core rev: 89b75b46371d5e9172cb496b461824d8551a2af5) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-fitimage: fix handling of empty default dtbAdrian Freihofer2024-07-131-1/+1
| | | | | | | | | | | Fix error in run.do_assemble_fitimage_initramfs.2779256: line 238: [: =: unary operator expected if FIT_CONF_DEFAULT_DTB is empty. (From OE-Core rev: 19a6eea0951404403dcb5d0deeda8558b1337f82) Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oe-selftest: fitimage fix test_initramfs_bundleAdrian Freihofer2024-07-131-25/+32
| | | | | | | | | | | | | | | | | | | | It looks like most of the assertions of this tests were by-passed because of combinations of invalid regexes and inverted assert statement. Try to fix. Use the variables from the kernel recipe instead of potentially invalid values from get_bb_vars with undefined recipe. Use one get_bb_vars statement instead of many seaparate calls mainly to improve the duration of this test case. Make the test working for an its file with an absolute path to the kernel binary. This will be needed with one of the following commits and does not harm in general. (From OE-Core rev: 741f0cfa4f0025a2823581cab09e0bf14382e54d) Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oe-selftest: fitimage cleanup assertsAdrian Freihofer2024-07-131-55/+21
| | | | | | | | | | | | Use more specific assert statements to make the code more readable and the error messages more verbose. Cleanup the asserts of the test case test_initramfs_bundle. (From OE-Core rev: c7901004138d215612816072f20d367d638d2669) Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oe-selftest: fitimage drop test-mkimage-wrapperAdrian Freihofer2024-07-131-41/+77
| | | | | | | | | | | | | | | | Rather than writing hints into log files and verify the hints can be found, the tests should verify that the artifacts in the deploy folder are correctly signed. This is a much better test. u-boot-tools provide a utility fit_check_sign which can verify the signatures in fit images. Lets use it. grepping in temp/run. or temp/log. files also does not work if the tasks runs from sstate and the corresponding run file is not even generated. (From OE-Core rev: 86e504b4f792eeadd67ea57dd71a62bcb4f16f02) Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oe-selftest: fitimage refactor u-boot-tools-nativeAdrian Freihofer2024-07-131-12/+11
| | | | | | | | | | Eliminate code duplication with a new function. Use get_bb_var instead of bitbake -e | grep. (From OE-Core rev: 0c7b7c5c98217b5f139058533159f61d1989d46e) Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vulkan-samples: fix do_compile error when -Og enabledChangqing Li2024-07-102-0/+53
| | | | | | | | | | | | | | | | | | | | | | When debug build is enabled(-Og is used), vulkan-samples do_compile failed with error: In function 'ZSTD_compressBlock_lazy_generic', inlined from 'ZSTD_compressBlock_greedy' at TOPDIR/tmp-glibc/work/core2-32-wrs-linux/vulkan-samples/git/git/third_party/ktx/lib/basisu/zstd/zstd.c:21914:12: TOPDIR/tmp-glibc/work/core2-32-wrs-linux/vulkan-samples/git/git/third_party/ktx/lib/basisu/zstd/zstd.c:21551:30: error: inlining failed in call to 'always_inline' 'ZSTD_HcFindBestMatch_selectMLS': function not considered for inlining | FORCE_INLINE_TEMPLATE size_t ZSTD_HcFindBestMatch_selectMLS ( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ TOPDIR/tmp-glibc/work/core2-32-wrs-linux/vulkan-samples/git/git/third_party/ktx/lib/basisu/zstd/zstd.c:21736:32: note: called from here | size_t const ml2 = searchMax(ms, ip, iend, &offsetFound); Refer [1], always_inline is not suggested to use with indirect function call, replace always_inline with inline to fix the issue [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107931 (From OE-Core rev: 246de52fe59de0612d1145357c5e904a51363c8c) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* icu: fix make-icudata package configStefan Mueller-Klieser2024-07-101-2/+2
| | | | | | | | | | The location of files changed during unpackdir transition. Adapt dirs to fix custom icu data generation. (From OE-Core rev: bb24c965a55d7e757c1e2a6e76bdb68d2bfb6ce3) Signed-off-by: Stefan Müller-Klieser <s.mueller-klieser@phytec.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pciutils: remove textrel INSANE_SKIPChen Qi2024-07-101-2/+0
| | | | | | | | | The current pciutils does not have this textrel problem any more. (From OE-Core rev: 48fd3134097ce81c94c1ce67f218d83f1a5c2f6f) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* testimage/postactions: Allow artifact collection to be skippedRichard Purdie2024-07-101-0/+5
| | | | | | | | | | | | | It does not always make sense to collect artifacts and data from the target on failure, e.g. if testing firmware or if the target is not running an SSH server. Allow this by setting TESTIMAGE_FAILED_QA_ARTIFACTS to an empty value. (From OE-Core rev: 7036f814baa6550e0b1ac2db37fcd51960ee9e48) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* hdparm: drop NO_GENERIC_LICENSE[hdparm]Martin Jansa2024-07-101-1/+0
| | | | | | | | | | | | | * the hdparm license text was added in: https://git.openembedded.org/openembedded-core/commit/?id=e9c1f48af10ccb58251ecc7e041babb99b94d6df and now the NO_GENERIC_LICENSE was causing: ERROR: hdparm-9.65-r0 do_populate_lic: QA Issue: hdparm: hdparm is a generic license, please don't use NO_GENERIC_LICENSE for it. [license-no-generic] (From OE-Core rev: 64759473f3e6f3a9f3424575591b83ce9cd14e6c) Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mc: fix source URLBenjamin Szőke2024-07-101-1/+1
| | | | | | | | | new URL for sources: http://ftp.midnight-commander.org/ (From OE-Core rev: 03c4052718a9b8392b25e1770630317b8cf29fbe) Signed-off-by: Benjamin Szőke <egyszeregy@freemail.hu> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dnf/mesa: Fix missing leading whitespace with ':append'Niko Mauno2024-07-092-2/+2
| | | | | | | | | | | Mitigate occurrences where ':append' operator is used and leading whitespace character is obviously missing, risking inadvertent string concatenation. (From OE-Core rev: 314041fd126a4800a5a5d9fcd84c525319479256) Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/utils/postactions: transfer whole archive over ssh instead of doing ↵Alexis Lothoré2024-07-081-10/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | individual copies Fixes [YOCTO 15536] The postactions retrieval actions currently rely on scp executed individually on any file or directory expanded from TESTIMAGE_FAILED_QA_ARTIFACTS. Unfortunately, symlinks are not preserved with this mechanism, which lead to big storage space consumption. Things may go even worse if those symlinks create some circular chains. This mechanism then needs to be updated to preserve symlinks instead of following them during copy. There are multiple ways to do it: - create a local archive on the target and execute scp on this file - use rsync instead of scp for all files - create an archive and pipe it to ssh instead of storing it onto the target The first solution may create pressure on targets storage space, while the second assumes that rsync is installed on the target, which may not be true. So the third one is a compromise: tar is very likely present, at least through busybox, and no disk space is used on the target. Replace the current per-file scp call by a single call to tar run on the target. Retrieve the generated compressed archive directly from SSH output, and feed it to another tar process but on host, to uncompress and extract it at the same place as before. (From OE-Core rev: 4aeb10aa38efc6768928fbb74985e36e972b8e46) Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/ssh: allow to retrieve raw, unformatted ouputAlexis Lothoré2024-07-081-8/+8
| | | | | | | | | | | | | | | | | | | | The ssh target is currently well tailored to easily retrieve textual output from a command run on a remote target. It could also be used to retrieve raw data from a command run onto a remote target (for example, to feed this data directly to another program), but it currently suffers two minor issues preventing such use case: - stderr is piped to stdout, so any error log will be mixed in the program output - the final output is decoded as utf-8 and stripped Allow to return the raw, unmodified output by adding an optional "raw" parameter. Keep it to False by default to preserve the current behavior. When enabled, do not return a string but the raw output as bytes. (From OE-Core rev: 8d05dc6e2284b7ed7c32a8215b9c8bf6f7dabf00) Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pixman: fix do_compile errorChangqing Li2024-07-082-0/+37
| | | | | | | | | | | | | | | | | | | When debug build is enabled(-Og is used), pixman-native do_compile failed with error: In function ‘combine_inner’, inlined from ‘combine_soft_light_ca_float’ at ../pixman-0.42.2/pixman/pixman-combine-float.c:655:1: ../pixman-0.42.2/pixman/pixman-combine-float.c:370:5: error: inlining failed in call to ‘always_inline’ ‘combine_soft_light_c’: function not considered for inlining 370 | combine_ ## name ## _c (float sa, float s, float da, float d) Refer [1], always_inline is not suggested to use with indirect function call, replace always_inline with __inline__ to fix the issue [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107931 (From OE-Core rev: 4ab0d5c24b32a80432d9cfa6c904027b8a6710b5) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* testexport: fallback for empty IMAGE_LINK_NAMEKonrad Weihmann2024-07-081-1/+1
| | | | | | | | | | | | if IMAGE_LINK_NAME is set empty to disable the symlinking for image artifacts in deploy, testexport fails, as the path assembly is incorrect. In that case fallback to IMAGE_NAME (From OE-Core rev: 0c1d098e6dd08fa3a5aafca656457ac6badcef89) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* go: upgrade 1.22.4 -> 1.22.5Jose Quaresma2024-07-0816-66/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - refresh patches with devtool Upgrade to latest 1.22.x release [1]: $ git --no-pager log --oneline go1.22.4..go1.22.5 8e1fdea831 (tag: go1.22.5, origin/release-branch.go1.22) [release-branch.go1.22] go1.22.5 c2d4f852ce [release-branch.go1.22] cmd/link: handle dynamic import variables on Darwin in plugin mode 3222951439 [release-branch.go1.22] net/http: send body or close connection on expect-100-continue requests ceaf26ecce [release-branch.go1.22] cmd/compile: mark pointer to noalg type as noalg dfe4dbf8c0 [release-branch.go1.22] os/exec: on Windows look for extensions in Run if not already done 3560cf0afb [release-branch.go1.22] runtime: always update stack bounds on cgocallback 5159a7193a [release-branch.go1.22] cmd/compile: put constants before variables in initialization order 11b861e459 [release-branch.go1.22] go/types, types2: report error for floating-point iteration variable 81fc616267 [release-branch.go1.22] crypto/tls: don't call tlsrsakex.IncNonDefault with FIPS 14f0251867 [release-branch.go1.22] cmd/cgo/internal/swig: force use of lld for LTO tests on the builders ab60a7bc18 [release-branch.go1.22] cmd/cgo/internal/testsanitizers: make the libfuzzer tests all short 4c97e883b5 [release-branch.go1.22] cmd/link: put runtime.end in the last section of data segment 179ccb7042 [release-branch.go1.22] cmd/go: fix go list -u -m all with too new retractions dependency fe9b3c3399 [release-branch.go1.22] net: add GODEBUG=netedns0=0 to disable sending EDNS0 header b515c5208b [release-branch.go1.22] go/internal/gccgoimporter: recognize "any" as a builtin type [1] https://github.com/golang/go/compare/go1.22.4...go1.22.5 (From OE-Core rev: 0a1d4a42282bd9f0bdc8dd53c7865aa81d4a5821) Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/runtime/ssh: check for all errors at the endJon Mason2024-07-081-3/+3
| | | | | | | | | | | | | | | With the retry for the -SIGTERM, it is possible to still see that error after the 5th attempt and mark the run a success. Check for any non-zero status in the final check and error out to close the gap. While there, make the error print match the one above and be a little more verbose. Also, I'm seeing it take roughly 6 attempts on my local (very slow) system to pass. So, increasing the number of attempts to 10. (From OE-Core rev: 3c3ebe591eef6e0479d623ec2237cfea16db5c80) Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* abi_version/package: Bump hashequiv version and package class versionRichard Purdie2024-07-052-2/+2
| | | | | | | | | | | | | | The recent pkgconfig change and subsqeuent fixes have left the hash equivalence server in a corrupted state with hashes linking the changes beofore and after the pkgconfig change, breaking reproducibile builds. Bump the appropriate version numbers to allow us to move on and avoid build failures and corrupt equivalence data now the underlying issue was fixed. (From OE-Core rev: 7b2cdd257132645534642a1461fe14b835eee6e8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libinput: update 1.25.0 -> 1.26.1Markus Volk2024-07-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release notes libinput 1.26.1 is now available. A few semi-exciting things, the rest the usual bugfixes you'd expect for a point release. Touchpads now special-case Shift for disable-while-typing, so typing keys with shift down will trigger DWT. Tablets can now be calibrated if libwacom says the tablet is a display tablet. The hid-uclogic kernel driver doesn't set INPUT_PROP_DIRECT so any device handled by that driver didn't have calibration available. Fixed now, provided your tablet is recognised by libwacom. The direction of the first tablet pad relative dial was fixed, it was upside-down. Our debugging tools now support --set-pressure-range for the new tablet tool pressure range configuration added in 1.26 and --set-calibration for the calibration matrix that's been around for a while. The libinput debug-tablet tool now also supports all commandline options that debug-events and debug-gui support. And of course a varied assortment of device specific quirks and fixes. Release notes libinput 1.26.0 is now available. It's been a while since the last release but we have a few notable changes in here: Touchpads can now configure a clickfinger button map, so you can change whether two- or three-finger click means a right or middle click. See libinput_device_config_click_set_clickfinger_button_map Tablet pads now have an API for relative dials. These are typically wheel-like (e.g. Huion Inspiroy 2) or ring-like (e.g. Huion Inspiroy Dial 2) physical devices that send REL_WHEEL and REL_HWHEEL. libinput now provides these via libinput_event_tablet_pad_get_dial_delta_v120() in much the same manner as the v120-based scroll wheel API. A new configuration option for tablet tools allow reducing the available logical range. This is useful for users that want the tool to register only when some physical pressure value is reached, or to reduce the maximum amount of pressure needed to reach the logical maximum pressure. See libinput_tablet_tool_config_pressure_range_set() and friends. Tablet tools can now use BTN_STYLUS3 too and tablet pad strip support should now work for non-Wacom devices, where the kernel driver implements it. Huion tablets (well, and all vendors that use the 256C vendor id) now have a fallback resolution set. This is going to be wrong on most devices but at least it will make those tablets work out of the box, instead of failing with the "missing tablet capabilities: resolution" log message. And of course a varied assortment of device specific quirks and fixes. (From OE-Core rev: 341578e76de1189a2373672e76034e1c99c6783e) Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/selftest/reproducibile: Explicitly list virtual targetsRichard Purdie2024-07-041-1/+2
| | | | | | | | | | | | | | | | We're seeing reproducibility failures where some packages don't appear in the "from sstate" builds. The common factor is these are all recipes with PROVIDES = "virtual/XXX". In a full build from scratch, these are build but in a build from sstate, there are situations where they aren't. For now, to try and keep builds working, work around the problem until we can better look into the problem. It is likely recent taskhash imrovements have caused this to occur more regularly. (From OE-Core rev: 68086a333acc54390e4e589ef928dc90da3edb48) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* openssh: fix CVE-2024-6387Jose Quaresma2024-07-042-0/+28
| | | | | | | | | | | | | | | | | | | | | sshd(8) in Portable OpenSSH versions 8.5p1 to 9.7p1 (inclusive). Race condition resulting in potential remote code execution. A race condition in sshd(8) could allow remote code execution as root on non-OpenBSD systems. This attack could be prevented by disabling the login grace timeout (LoginGraceTime=0 in sshd_config) though this makes denial-of service against sshd(8) considerably easier. For more information, please refer to the release notes [1] and the report from the Qualys Security Advisory Team [2] who discovered the bug. [1] https://www.openssh.com/txt/release-9.8 [2] https://www.qualys.com/2024/07/01/cve-2024-6387/regresshion.txt References: https://www.openssh.com/security.html (From OE-Core rev: 7ba7c96f31bd81c5d1352136e405e99c3df29ea7) Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/runtime/ssh: In case of failure, show exit code and handle -15 (SIGTERM)Richard Purdie2024-07-041-2/+5
| | | | | | | | | | | Ensure we show the failing exit code in case of failures. We're seeing autobuilder failures with -15 (SIGTERM) which is probably from slow boot/init. Retry in these cases for now. (From OE-Core rev: 127d3bd8d5509ae17e359c1365859fd362ffc74f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qemuboot: Trigger write_qemuboot_conf task on changes of kernel image realpathWeisser, Pascal.ext2024-07-041-1/+2
| | | | | | | | | | | | | | | | | | | The qemuboot.conf file contains the realpath of the kernel image referenced by QB_DEFAULT_KERNEL. So, it must be recreated in case the realpath of the referenced kernel image changes. The variables KERNEL_IMAGE_NAME and KERNEL_IMAGE_BIN_EXT determine the realpath of the kernel image relative to DEPLOY_DIR_IMAGE. Adding both of them to the vardeps of the write_qemuboot_conf task triggers the write_qemuboot_conf task in case the realpath of the kernel image referenced by QB_DEFAULT_KERNEL changes. Fixes: [YOCTO 15525] (From OE-Core rev: f8b3975a9ce36ea7af5fd76243a823da2842415b) Signed-off-by: "Weisser, Pascal" <pascal.weisser.ext@karlstorz.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* less: upgrade 643 -> 661Yi Zhao2024-07-041-3/+3
| | | | | | | | | | | | | | ChangeLog: https://www.greenwoodsoftware.com/less/news.661.html License-Update: Update copyright year to 2024 Add perl-module-file-basename to ptest runtime dependency. (From OE-Core rev: 16f4ebc02857567509610e4d350c451440d44930) Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* buildhistory: fix typosUlrich Ölmann2024-07-041-7/+7
| | | | | | | | | Fix some simple typos found while looking through the code. (From OE-Core rev: c23cb2d89fcd014d1f08944468c7e2d8a7f3e8b0) Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-libc-headers: remove redundant install_headers patchRoss Burton2024-07-042-42/+0
| | | | | | | | | | | | | | | | | This was added in the upgrade to 4.19[1] which included three patches that were taken from the series at [2]. What merged was the second iteration of this series[3] which dropped the install_headers patch, so we can drop this obsolete patch. [1] oe-core 11f02b7c6f9854eecd3a49ea47833c8cbffb1581 [2] https://lore.kernel.org/linux-arm-kernel/1544556407-19897-1-git-send-email-Dave.Martin@arm.com/ [3] https://lore.kernel.org/linux-arm-kernel/1546607391-3850-1-git-send-email-Dave.Martin@arm.com/ (From OE-Core rev: 13e1c0d3881d6c9e4057096d41d8b4f4db1b6b97) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsdl2: upgrade 2.30.3 -> 2.30.4Yi Zhao2024-07-041-1/+1
| | | | | | | | | | | | | | | | | | | | | ChangeLog: https://github.com/libsdl-org/SDL/releases/tag/release-2.30.4 This is a stable bugfix release, with the following changes: * Android rotation will respect user rotation lock preferences * Fixed spurious Left-Ctrl key input when the Right Alt key (AltGr) is pressed on Windows * Added support for the Saitek Cyborg V.3 Rumble Pad in PS3 mode * Added support for the Razer Kitsune in PS5 mode * Added Linux bindings for the Qanba Drone 2 Arcade Joystick * Leave Nintendo Online controllers in simple report mode so they work with DirectInput games * Enable using libusb for GameCube controllers when available (From OE-Core rev: bfc938ae8ebfebb0595aa0b810688a140a7ab452) Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qemu: Upgrade 9.0.0 -> 9.0.1Richard Purdie2024-07-044-1/+1
| | | | | | (From OE-Core rev: c2be994cbb746ce1b182c68ea7aadff049b6a0d5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* blktrace: ask for python3 specificallySakib Sajal2024-07-032-1/+38
| | | | | | | | | | python2 has been deprecated, use python3 instead. (From OE-Core rev: cb550f59a0fb6b41cec2d1bd8a18f788e9ea7de6) Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com> Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-docutils: fix interpreter linesKonrad Weihmann2024-07-031-0/+8
| | | | | | | | | | | | | | | | when compiling a non native variant, latest update introduced package-qa errors like ERROR: QA Issue: .../docutils/utils/smartquotes.py contained in package nativesdk-python3-docutils requires /usr/bin/python3, but no providers found in RDEPENDS:nativesdk-python3-docutils? [file-rdeps] Fix that by patching the interpreter lines after install (From OE-Core rev: f0037d2b2a4b72f279f3fe60c82d4b4044cbc6d5) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* populate_sdk_ext.bclass: make sure OECORE_NATIVE_SYSROOT is exported.Gauthier HADERER2024-07-021-1/+1
| | | | | | | | | | | | | | Fixes bug 15464. OECORE_NATIVE_SYSROOT is correctly set up and exported in the SDK's environment file. But it's then unset in buildtools/environment-setup-*. The value is restored in the SDK's environment file but is not exported again. (From OE-Core rev: 825c996b7995d3ad510933b1a88229831ca5ea29) Signed-off-by: Gauthier HADERER <ghaderer@wyplay.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* flac: fix buildpaths warningsPeter Marko2024-07-021-0/+7
| | | | | | | | | | | | | | | Generated documentation (html) contain absolute paths cources using buildpaths warnings. Replace them with relative links. The file with root path to sources is in my build /usr/share/doc/flac/api/dir_c122f5d6544f32779f55e8358fb78605.html which does not looks as stable name, so replace it in all files. (From OE-Core rev: c7d826c88933d53d550265f1cc382539c5c52994) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* openssh: allow configuration of hostkey typeMatthew Bullock2024-07-021-4/+25
| | | | | | | | | | | | | | | | | Allow selection of host key types used by openssh via PACKAGECONFIG. Any combination of hostkey-rsa, hostkey-ecdsa and hostkey-ed25519 can be specified. Default to just generating ecdsa keys. The current default generates all three keys. This can take a significant amount of time on first boot. Having all three keys does not significantly increase compatability. Also RSA keys are being deprecated as they are no longer considered secure. Using just an ecdsa key reduces key generation time by roughly 75%. (From OE-Core rev: 0827c29566f3ea63715a9f9e4ee2639f4eabe0bd) Signed-off-by: Matthew Bullock <mbullock@thegoodpenguin.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/runtime/ssh: add retry logic and sleeps to allow for slower systemsJon Mason2024-07-021-9/+19
| | | | | | | | | | | | | | | On exceptionally slow systems, the ssh test can intermittently fail due to a race between when ping works and the networking applications being brought up. To work around this issue, add some retry logic when ssh fails to connect. According to the man page of ssh, "ssh exits with the exit status of the remote command or with 255 if an error occurred." So, only retry if the return code is 255, and limit the number of retries to prevent it looping forever. (From OE-Core rev: f0fe0b490d309cdf1c97754f85a61b5b948b7f28) Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libgcrypt: Fix building error with '-O2' in sysroot pathsimit.ghane2024-07-021-16/+47
| | | | | | | | | | | | | | | | | | | | | | Characters like '-O2' or '-Ofast' will be replaced by '-O1' and '-O0' respectively when compiling cipher and random in the filesystem paths as well if they happen to contain '-O2' or '-Ofast If we are cross compiling libgcrypt and sysroot contains such characters, we would get compile errors because the sysroot path has been modified. Fix this by adding blank spaces and tabs before the original matching pattern in the sed command. It is difficult to control -O1 for cipher and -O0 for random at the same time in OE environment along with patch file. So, keeping same change as it is. (From OE-Core rev: ecd26bbba36ad715c2a0f20475ebc977ea94746c) Signed-off-by: simit.ghane <simit.ghane@lge.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* testimage: fallback for empty IMAGE_LINK_NAMEKonrad Weihmann2024-07-021-2/+2
| | | | | | | | | | | | if IMAGE_LINK_NAME is set empty to disable the symlinking for image artifacts in deploy, testimage fails, as the path assembly is incorrect. In that case fallback to IMAGE_NAME (From OE-Core rev: c7a4e7e294992acc589c62adcaf6cd32659f2f9b) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pulseaudio: Remove from time64.inc exception listPrimoz Fiser2024-07-021-5/+0
| | | | | | | | | | | | | Pulseaudio OSS (Open Sound System) support was causing build issues when used with GLIBC_64BIT_TIME_FLAGS. However, optional OSS support was disabled by default with addition of PACKAGECONFIG[oss-output]. Thus remove pulseaudio from the exception list in time64.inc and allow it to be Y2038 compatible. (From OE-Core rev: 67cbec2aa1e7dca1abacf39a22efe85fa47a468d) Signed-off-by: Primoz Fiser <primoz.fiser@norik.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pulseaudio: Add PACKAGECONFIG for optional OSS supportPrimoz Fiser2024-07-021-0/+1
| | | | | | | | | | | | | Add pulseaudio PACKAGECONFIG for optional OSS (Open Sound System) output support. OSS was a sound system available before ALSA and has since been deprecated. Lately, this part has started causing build issues when used with GLIBC_64BIT_TIME_FLAGS. Thus, by default drop OSS output support in favor of Y2038 compliance. (From OE-Core rev: c74a7382f4e3c6516c97b1473731a27c57b4e0aa) Signed-off-by: Primoz Fiser <primoz.fiser@norik.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mesa: Including missing LLVM headerKhem Raj2024-07-022-0/+42
| | | | | | | | | This issue happens with LLVM trunk (From OE-Core rev: 21b7dae19832b803b2ed918fca602793fb8b63d7) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* u-boot: upgrade 2024.04 -> 2024.07Fabio Estevam2024-07-023-1/+1
| | | | | | | | | Upgrade to U-Boot 2024.07. (From OE-Core rev: 377e8d7fc019b0b2a0fd020e51741a4543f5f209) Signed-off-by: Fabio Estevam <festevam@denx.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* opensbi: bump to 1.5Thomas Perrot2024-07-021-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This release has: - SBI debug triggers (DBTR) extension (Experimental) - Support to specify coldboot harts in DT - Relocatable FW_JUMP_ADDR and FW_JUMP_FDT_ADDR - Smcsrind and Smcdeleg extensions support - SBIUnit testing framework - Initial domain context management support - Platform specific load/store emulation callbacks - New trap context - Improved sbi_trap_error() to dump state in a nested trap - SBI supervisor software events (SSE) extension (Experimental) - Simplified wait_for_coldboot() implementation - Early wakeup of non-coldboot HART in the coldboot path - Sophgo CV18XX/SG200X series support - APLIC delegation DT property fix - Svade and Svadu extensions support - SBI firmware features (FWFT) extension (Experimental) Overall, this release mainly adds more ISA extensions, SBI extensions and other improvements. (From OE-Core rev: 9922ebd8dcd145af8c7a6b8a5a16dce1ee8e92cb) Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* llvm: Fix CVE-2024-0151Deepthi Hemraj2024-07-022-0/+1087
| | | | | | | (From OE-Core rev: fe1b86ff78090a0214130112abc2d6ea4736bf80) Signed-off-by: Deepthi Hemraj <Deepthi.Hemraj@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* u-boot: Fix potential index error issues in do_deploy with multiple u-boot ↵Florian Amstutz2024-07-021-0/+1
| | | | | | | | | | | | configurations If i or j have not been unset in do_deploy:prepend functions, images are not correctly copied to DEPLOYDIR. (From OE-Core rev: 5a0764eaac90bd62dac4a387eed5eb68f556412f) Signed-off-by: Florian Amstutz <florian.amstutz@scs.ch> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* classes/create-spdx-2.2: Handle SemVer License List VersionsJoshua Watt2024-07-021-4/+9
| | | | | | | | | | | | SPDX transitioned the license list to use SemVer visioning, (e.g. "MAJOR.MINOR.MICRO"), but SPDX 2 only allows "MAJOR.MINOR". For maximum compatibility, only keep the first two version numbers and discard the rest which allows it to work with either scheme (From OE-Core rev: 8757a5eaeaf2b9d7345212d003e5622289b123e6) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* licenses: Update to SPDX license version 3.24.0Joshua Watt2024-07-02185-3935/+12107
| | | | | | | | | | | | Updates to the latest version of the SPDX license list and pulls in all the missing license files [YOCTO #15502] (From OE-Core rev: e9c1f48af10ccb58251ecc7e041babb99b94d6df) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* native/nativesdk: Stop overriding unprefixed *FLAGS variablesRichard Purdie2024-07-0120-32/+22
| | | | | | | | | | | | | | | | | | | | We're currently encouraging an "arms race" with the FLAGS variables since a recipe might want to set a specific flag for all variants but to do so, += won't work due to the assignment in the native/nativesdk class files. This means recipes are using append. Since the default variables are constructed out of TARGET_XXX variables and we redefine these, there is no need to re-define the un-prefixed variables. If we drop that, the += appends and similar work and recipes don't have to resort to append. Change the classes and cleanup a number of recipes to adapt to the change. This change will result in some flags appearing to some native/nativesdk variants but that is probably what was originally expected anyway. (From OE-Core rev: a157b2f9d93428ca21265cc860a3b58b3698b3aa) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.6: fix AMD boot traceBruce Ashfield2024-07-013-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Integrating the following commit(s) to linux-yocto/6.6: 1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@gmail.com Subject: cpu/amd: inhibit SMP check for qemux86 Date: Fri, 28 Jun 2024 12:55:18 -0400 When booting with kvm enabled on a AMD host, the following trace is thrown: [ 0.084519] ------------[ cut here ]------------ [ 0.084519] WARNING: This combination of AMD processors is not suitable for SMP. [ 0.084519] WARNING: CPU: 1 PID: 0 at /arch/x86/kernel/cpu/amd.c:341 init_amd+0xaee/0xbcc [ 0.084519] Modules linked in: [ 0.084519] CPU: 1 PID: 0 Comm: swapper/1 Not tainted 6.6.32-yocto-standard #1 [ 0.084519] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org 04/01/2014 This warning is not valid in our configuration and is unnecesarily causing issue with debug. This has been know for some time (10+ years), but no acceptable solutioon has been found upstream: https://lists.gnu.org/archive/html/qemu-devel/2010-03/msg01428.html https://lkml.org/lkml/2010/3/30/397 We have a configuration CONFIG_QEMUX86 that has been added for situations like this. When that value is defined, we inhibit the warning, but leave it as-is for other BSPs. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> ] (From OE-Core rev: f0c03000abb7665352cf107a600da15a112af5fa) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.6: update to v6.6.35Bruce Ashfield2024-07-013-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/6.6 to the latest korg -stable release that comprises the following commits: 5f2d0708acd0 Linux 6.6.35 3466abafa9f4 zap_pid_ns_processes: clear TIF_NOTIFY_SIGNAL along with TIF_SIGPENDING 2fd6cfb2a4e6 i2c: designware: Fix the functionality flags of the slave-only interface 572afd43c959 i2c: at91: Fix the functionality flags of the slave-only interface a4cd6074aed6 misc: microchip: pci1xxxx: Fix a memory leak in the error handling of gp_aux_bus_probe() 2cc32639ec34 usb-storage: alauda: Check whether the media is initialized 3a03ef31c1e9 serial: 8250_dw: Don't use struct dw8250_data outside of 8250_dw 836e1a9fd8eb serial: 8250_dw: Replace ACPI device check by a quirk 1d98b6a0b90c serial: 8250_dw: Switch to use uart_read_port_properties() f59e2391d3a9 serial: port: Introduce a common helper to read properties 68a53d1212ed serial: core: Add UPIO_UNKNOWN constant for unknown port type 1006d1b5eb01 device property: Implement device_is_big_endian() dd431c3ac1fc ima: Fix use-after-free on a dentry's dname.name 0b8fba38bdfb greybus: Fix use-after-free bug in gb_interface_release due to race condition. aefd8f343d90 selftests: net: lib: avoid error removing empty netns name 44bdef23572c selftests: net: lib: support errexit with busywait 1d650d2c9bcc selftests/net/lib: no need to record ns name if it already exist d722ed2530e1 selftests/net/lib: update busywait timeout value 8a73c08e00fe cachefiles, erofs: Fix NULL deref in when cachefiles is not doing ondemand-mode 3beccb6a326d remoteproc: k3-r5: Jump to error handling labels in start/stop errors bb2f3187e310 selftests: forwarding: Avoid failures to source net/lib.sh 2a969959b94f selftests/net: add variable NS_LIST for lib.sh 04f7b9b4d7f8 selftests/net: add lib.sh dd782da47076 Revert "fork: defer linking file vma until vma is fully initialized" 72b5c7f3b358 serial: 8250_pxa: Configure tx_loadsz to match FIFO IRQ level 0d73477af964 mm/huge_memory: don't unpoison huge_zero_folio 93d61e1bac0a tick/nohz_full: Don't abuse smp_call_function_single() in tick_setup_device() 614d397be0cf nilfs2: fix potential kernel bug due to lack of writeback flag waiting f8474caf39bd swiotlb: extend buffer pre-padding to alloc_align_mask if necessary 6c385c1fa0a7 swiotlb: Reinstate page-alignment for mappings >= PAGE_SIZE 6033fc9522d2 swiotlb: Enforce page alignment in swiotlb_alloc() 9f2050106f37 xfs: allow cross-linking special files without project quota 8bb0402836d0 xfs: don't use current->journal_info 79ba47df4e98 xfs: allow sunit mount option to repair bad primary sb stripe values ae609281ecae xfs: ensure submit buffers on LSN boundaries in error handlers 04fa4269089b xfs: shrink failure needs to hold AGI buffer ea365e606231 xfs: fix SEEK_HOLE/DATA for regions with active COW extents 7f0e5af2690a xfs: fix scrub stats file permissions 20bccdb03a7b xfs: fix imprecise logic in xchk_btree_check_block_owner 092571ef9a81 btrfs: zoned: fix use-after-free due to race with dev replace 069e0cc343da btrfs: zoned: factor out DUP bg handling from btrfs_load_block_group_zone_info 68713bc70dab btrfs: zoned: factor out single bg handling from btrfs_load_block_group_zone_info a139ad664240 btrfs: zoned: factor out per-zone logic from btrfs_load_block_group_zone_info f9526760879a btrfs: zoned: introduce a zone_info struct in btrfs_load_block_group_zone_info a3be677629e4 pmdomain: ti-sci: Fix duplicate PD referrals 6fd062713d99 intel_th: pci: Add Lunar Lake support ebcef9116484 intel_th: pci: Add Meteor Lake-S support c8727ddde12c intel_th: pci: Add Sapphire Rapids SOC support 37eb9f7cc719 intel_th: pci: Add Granite Rapids SOC support 3b08df88b00d intel_th: pci: Add Granite Rapids support f287b1e34f1d drm/i915: Fix audio component initialization 7a9883be3b98 drm/i915/dpt: Make DPT object unshrinkable 1b4a8b89bf67 drm/shmem-helper: Fix BUG_ON() on mmap(PROT_WRITE, MAP_PRIVATE) 1d2f1123a05e drm/i915/gt: Disarm breadcrumbs if engines are already idle 42524cc5feef rtla/auto-analysis: Replace \t with spaces d32f12e15732 rtla/timerlat: Simplify "no value" printing on top 8661a7af0499 riscv: rewrite __kernel_map_pages() to fix sleeping in invalid context 6ee0c842d4ad iio: invensense: fix interrupt timestamp alignment 955c824d543c iio: adc: axi-adc: make sure AXI clock is enabled 33187fa1a8bb remoteproc: k3-r5: Do not allow core1 to power up before core0 via sysfs 2494bc856e7c remoteproc: k3-r5: Wait for core0 power-up before powering up core1 aa81c7b078e0 dmaengine: axi-dmac: fix possible race in remove() 4145835ec209 PCI: rockchip-ep: Remove wrong mask on subsys_vendor_id 3c361f313d69 ocfs2: fix races between hole punching and AIO+DIO 7ec0e3b86f5a ocfs2: use coarse time for new created files 518fbd644dab fs/proc: fix softlockup in __read_vmcore ba04b459efd1 knfsd: LOOKUP can return an illegal error value 591d5b12f814 spmi: hisi-spmi-controller: Do not override device identifier e293c6b38ac9 vmci: prevent speculation leaks by sanitizing event in event_deliver() 2d11505e79c7 dma-buf: handle testing kthreads creation failure e946428439a0 sock_map: avoid race between sock_map_close and sk_psock_put 2c581ca0d68f null_blk: Print correct max open zones limit in null_init_zoned_dev() 5fc6b708ef20 kheaders: explicitly define file modes for archived headers fcb88dc66b72 tracing/selftests: Fix kprobe event name test for .isra. functions d63e501ac6da riscv: fix overlap of allocated page and PTR_ERR 7063f15d2ae2 perf auxtrace: Fix multiple use of --itrace option 809a2ed17179 perf/core: Fix missing wakeup when waiting for context reference 348008f0043c x86/amd_nb: Check for invalid SMN reads d91ddd050826 x86/kexec: Fix bug with call depth tracking 5c0fb9cb404a irqchip/gic-v3-its: Fix potential race condition in its_vlpi_prop_update() 6d0881a00d4c clkdev: Update clkdev id usage to allow for longer names dbf0787c2f45 mptcp: pm: update add_addr counters after connect 09469a081715 mptcp: pm: inc RmAddr MIB counter once per RM_ADDR ID f1f0a46f8bb8 mptcp: ensure snd_una is properly initialized on connect 35bcf16b4a28 drm/exynos: hdmi: report safe 640x480 mode as a fallback when no EDID found a269c5701244 drm/exynos/vidi: fix memory leak in .get_modes() fd880577c6d4 ACPI: x86: Force StorageD3Enable on more products 5bf196f1936b parisc: Try to fix random segmentation faults in package builds a42b0060d6ff drivers: core: synchronize really_probe() and dev_uevent() e57c84e156e7 iio: imu: inv_icm42600: delete unneeded update watermark call aaf6b327a386 iio: invensense: fix odr switching to same value 8e472061a32c iio: dac: ad5592r: fix temperature channel scaling value 24ff87bb9f0b iio: adc: ad9467: fix scan type sign d4f3861893f9 x86/boot: Don't add the EFI stub to targets, again db20d4e4872b ksmbd: fix missing use of get_write in in smb2_set_ea() 13b38f9262f5 ksmbd: move leading slash check to smb2_get_name() 86c9713602f7 misc: microchip: pci1xxxx: fix double free in the error handling of gp_aux_bus_probe() ca6660c95624 bnxt_en: Adjust logging of firmware messages in case of released token in __hwrm_send() 185c72f6b9eb af_unix: Read with MSG_PEEK loops if the first unread byte is OOB 183ebc167a8a ionic: fix use after netif_napi_del() 7caefa277172 net: bridge: mst: fix suspicious rcu usage in br_mst_set_state a6cc9e9a651b net: bridge: mst: pass vlan group directly to br_mst_vlan_set_state 96d3265fc4f1 net/ipv6: Fix the RT cache flush via sysctl using a previous delay 9a3eb4816ab9 nvmet-passthru: propagate status from id override functions fe1e395563cc block: fix request.queuelist usage in flush 6b7155458ed2 block: sed-opal: avoid possible wrong address reference in read_sed_opal_key() 35119b1139e7 net: stmmac: replace priv->speed with the portTransmitRate from the tc-cbs parameters d01f39f73bed gve: ignore nonrelevant GSO type bits when processing TSO headers b0c95cefd9b6 net: pse-pd: Use EOPNOTSUPP error code instead of ENOTSUPP 2ad10c2aadb7 scsi: ufs: core: Quiesce request queues before checking pending cmds 567cfc59e468 x86/uaccess: Fix missed zeroing of ia32 u64 get_user() range checking 5396ce9a5e68 x86/asm: Use %c/%n instead of %P operand modifier in asm templates 2ba35b37f780 netfilter: ipset: Fix race between namespace cleanup and gc in the list:set type b30669fdea0c netfilter: nft_inner: validate mandatory meta and payload 7ccca396e989 Bluetooth: fix connection setup in l2cap_connect 599a28fa9ecd Bluetooth: L2CAP: Fix rejecting L2CAP_CONN_PARAM_UPDATE_REQ 110764a0713e net/mlx5e: Fix features validation check for tunneled UDP (non-VXLAN) packets bb5c1b0fbd98 geneve: Fix incorrect inner network header offset when innerprotoinherit is set c72660999c17 net dsa: qca8k: fix usages of device_get_named_child_node() d61808ac9947 tcp: fix race in tcp_v6_syn_recv_sock() b5c8ffc8cfde drm/bridge/panel: Fix runtime warning on panel bridge release 9460961d8213 drm/komeda: check for error-valued pointer f100031fd6a5 net: stmmac: dwmac-qcom-ethqos: Configure host DMA width fd2b613bc4c5 liquidio: Adjust a NULL pointer handling path in lio_vf_rep_copy_packet 47016dcb50e9 net: hns3: add cond_resched() to hns3 ring buffer init process 689de7c3bfc7 net: hns3: fix kernel crash problem in concurrent scenario ef01c26d6f7a net: sfp: Always call `sfp_sm_mod_remove()` on remove 6797259d9b92 modpost: do not warn about missing MODULE_DESCRIPTION() for vmlinux.o 6fdc1152afae af_unix: Annotate data-race of sk->sk_state in unix_accept(). b82c97a79b8e drm/vmwgfx: Don't memcmp equivalent pointers ce48b688a8d2 drm/vmwgfx: Remove STDU logic from generic mode_valid function 15a875ecfc2f drm/vmwgfx: 3D disabled should not effect STDU memory limits 3ca8e582e03e drm/vmwgfx: Filter modes which exceed graphics memory b0b05171de1f drm/vmwgfx: Refactor drm connector probing for display modes f677ca8cfefe HID: logitech-dj: Fix memory leak in logi_dj_recv_switch_to_dj_mode() 1bbadf953fad io_uring/io-wq: avoid garbage value of 'match' in io_wq_enqueue() ab702c3483db io_uring/io-wq: Use set_bit() and test_bit() at worker->flags 7388ae6f26c0 iommu: Return right value in iommu_sva_bind_device() c344d7030717 iommu/amd: Fix sysfs leak in iommu init 30f76bc468b9 HID: core: remove unnecessary WARN_ON() in implement() 17a6806f606f gpio: tqmx86: fix broken IRQ_TYPE_EDGE_BOTH interrupt type 12043e85bd71 gpio: tqmx86: store IRQ trigger type and unmask status separately 01aa7b7a3dd7 gpio: tqmx86: introduce shadow register for GPIO output value d69079010813 gpio: tqmx86: fix typo in Kconfig label b07a62f8c843 platform/x86: dell-smbios: Fix wrong token data in sysfs 2c82e21bbc05 drm/panel: sitronix-st7789v: Add check for of_drm_get_panel_orientation ca060e255794 nvme: fix nvme_pr_* status code parsing beb2dde5e1b9 selftests/tracing: Fix event filter test to retry up to 10 times b21cae468849 NFS: add barriers when testing for NFS_FSDATA_BLOCKED b1a6e884de15 SUNRPC: return proper error from gss_wrap_req_priv c30988e06b15 NFSv4.1 enforce rootpath check in fs_location query a9aa5a49c8ed clk: sifive: Do not register clkdevs for PRCI clocks dff9b2238969 selftests/ftrace: Fix to check required event file 3bf0b8030296 cachefiles: flush all requests after setting CACHEFILES_DEAD d2d3eb377a5d cachefiles: defer exposing anon_fd until after copy_to_user() succeeds 527db1cb4cd6 cachefiles: never get a new anonymous fd if ondemand_id is valid 1d95e5010ce8 cachefiles: remove err_put_fd label in cachefiles_ondemand_daemon_read() 3958679c4915 cachefiles: fix slab-use-after-free in cachefiles_ondemand_daemon_read() a6de82765e12 cachefiles: fix slab-use-after-free in cachefiles_ondemand_get_fd() 9f5fa40f0924 cachefiles: add restore command to recover inflight ondemand read requests e564e48ca299 cachefiles: add spin_lock for cachefiles_ondemand_info f740fd943bb1 cachefiles: resend an open request if the read request's object is closed 33d21f0658cf cachefiles: extract ondemand info field from cachefiles_object 955190e1851a cachefiles: introduce object ondemand state 50d0e55356ba cachefiles: remove requests from xarray during flushing requests 19133f53f199 cachefiles: add output string to cachefiles_obj_[get|put]_ondemand_fd d8316838aa06 cxl/region: Fix memregion leaks in devm_cxl_add_region() 09b4aa2815bf cxl/test: Add missing vmalloc.h for tools/testing/cxl/test/mem.c b3f206985a33 HID: nvidia-shield: Add missing check for input_ff_create_memless af4cff0dd640 powerpc/uaccess: Fix build errors seen with GCC 13/14 2ce5341c3699 gve: Clear napi->skb before dev_kfree_skb_any() 323d2563bde0 scsi: sd: Use READ(16) when reading block zero on large capacity disks 9079338c5a0d scsi: mpt3sas: Avoid test/set_bit() operating in non-allocated memory da097dccaece scsi: mpi3mr: Fix ATA NCQ priority support 3e9785d3e92b scsi: core: Disable CDL by default d5ceeb0b6a71 thunderbolt: debugfs: Fix margin debugfs node creation condition d4121290b427 xhci: Apply broken streams quirk to Etron EJ188 xHCI host 949be4ec5835 xhci: Handle TD clearing for multiple streams case 0a834fb6dbd8 xhci: Apply reset resume quirk to Etron EJ188 xHCI host 834c57876cc2 xhci: Set correct transferred length for cancelled bulk transfers 4598233d9748 jfs: xattr: fix buffer overflow for invalid xattr cc30d05b34f9 landlock: Fix d_parent walk 3380fa014a89 serial: port: Don't block system suspend even if bytes are left to xmit b895a1b981cf tty: n_tty: Fix buffer offsets when lookahead is used ce356d8d7e91 mei: me: release irq in mei_me_pci_resume error path ad47b23e4704 usb: typec: tcpm: Ignore received Hard Reset in TOGGLING state 04c05d50fa79 usb: typec: tcpm: fix use-after-free case in tcpm_register_source_caps b641889cc1cf USB: xen-hcd: Traverse host/ when CONFIG_USB_XEN_HCD is selected 72a3fe36cf9f USB: class: cdc-wdm: Fix CPU lockup caused by excessive log messages 43cfac7b88ad io_uring: check for non-NULL file pointer in io_file_can_poll() 0c9df3df0c88 io_uring/rsrc: don't lock while !TASK_RUNNING d18b05eda7fa nilfs2: fix nilfs_empty_dir() misjudgment and long loop on I/O errors 8394dce13573 nilfs2: return the mapped address from nilfs_get_page() 39a143a2b072 bpf: fix multi-uprobe PID filtering logic 7ec535ed8724 eventfs: Update all the eventfs_inodes from the events descriptor 1c88d94a7a33 irqchip/riscv-intc: Prevent memory leak when riscv_intc_init_common() fails 85ca483e729d irqchip/riscv-intc: Introduce Andes hart-level interrupt controller 482095341313 irqchip/riscv-intc: Allow large non-standard interrupt number 01c987b8282c selftests/mm: compaction_test: fix bogus test success on Aarch64 3f6ccd40afc4 selftests/mm: log a consistent test name for check_compaction d39532e9186a selftests/mm: conform test to TAP format output bb9bb13ce64c mm/memory-failure: fix handling of dissolved but not taken off from buddy pages fe01748ca6d6 memory-failure: use a folio in me_huge_page() 130b4b9478c3 firmware: qcom_scm: disable clocks if qcom_scm_bw_enable() fails 16ece7c5645a ksmbd: use rwsem instead of rwlock for lease break 6548d543a274 net: ethtool: fix the error condition in ethtool_get_phy_stats_ethtool() 7e796c3fefa8 ipv6: fix possible race in __fib6_drop_pcpu_from() d8011254e9b1 af_unix: Annotate data-race of sk->sk_shutdown in sk_diag_fill(). 60db0759c4f5 af_unix: Use skb_queue_len_lockless() in sk_diag_show_rqlen(). 471ec7b77a8d af_unix: Use skb_queue_empty_lockless() in unix_release_sock(). f1683d07ebd1 af_unix: Use unix_recvq_full_lockless() in unix_stream_connect(). 29fce603b14b af_unix: Annotate data-race of net->unx.sysctl_max_dgram_qlen. 996ec22ff576 af_unix: Annotate data-races around sk->sk_sndbuf. 4398f59518ce af_unix: Annotate data-races around sk->sk_state in UNIX_DIAG. 0ede400c32ae af_unix: Annotate data-race of sk->sk_state in unix_stream_read_skb(). 776fcc45e3f4 af_unix: Annotate data-races around sk->sk_state in sendmsg() and recvmsg(). 3d25de6486f4 af_unix: Annotate data-race of sk->sk_state in unix_stream_connect(). 484e036e1a2c af_unix: Annotate data-races around sk->sk_state in unix_write_space() and poll(). 4e38d6c04943 af_unix: Annotate data-race of sk->sk_state in unix_inq_len(). 45733e981e8c af_unix: Annodate data-races around sk->sk_state for writers. 8003545ca10d af_unix: Set sk->sk_state under unix_state_lock() for truly disconencted peer. 040d93848703 net: wwan: iosm: Fix tainted pointer delete is case of region creation fail 649b63f5daf6 ice: add flag to distinguish reset from .ndo_bpf in XDP rings config eab834acb474 ice: remove af_xdp_zc_qps bitmap 3201ba7d1c8c ice: fix iteration of TLVs in Preserved Fields Area b21bb09f8be6 ptp: Fix error message on failed pin verification 724050ae4b76 net/sched: taprio: always validate TCA_TAPRIO_ATTR_PRIOMAP d857df86837a net/mlx5: Fix tainted pointer delete is case of flow rules creation fail 6ccada6ffb42 net/mlx5: Always stop health timer during driver removal e3001df36cd6 net/mlx5: Stop waiting for PCI if pci channel is offline 3dd41669b300 mptcp: count CLOSE-WAIT sockets for MPTCP_MIB_CURRESTAB acdf17546ef8 tcp: count CLOSE-WAIT sockets for TCP_MIB_CURRESTAB 924f7bbfc5cf vxlan: Fix regression when dropping packets due to invalid src addresses 54c2c171c11a net: sched: sch_multiq: fix possible OOB write in multiq_tune() cba5467442b2 net: phy: Micrel KSZ8061: fix errata solution not taking effect problem b03255294e88 net/smc: avoid overwriting when adjusting sock bufsizes 2d7912f3ac65 octeontx2-af: Always allocate PF entries from low prioriy zone d387805d4b4a bpf: Set run context for rawtp test_run callback 50569d12945f net: tls: fix marking packets as decrypted f8dd092e8b47 ipv6: sr: block BH in seg6_output_core() and seg6_input_core() db21c1ee6b6d ipv6: ioam: block BH from ioam6_output() 9ee14af24e67 vmxnet3: disable rx data ring on dma allocation failure 834aa2c34b8f KVM: SEV-ES: Delegate LBR virtualization to the processor b6e4076ca94b KVM: SEV: Do not intercept accesses to MSR_IA32_XSS for SEV-ES guests 2128bae4ecab KVM: SEV-ES: Disallow SEV-ES guests when X86_FEATURE_LBRV is absent 91cff53136da bpf: Fix a potential use-after-free in bpf_link_free() 2ad2f2edb944 bpf: Optimize the free of inner map 5aa03dd388d1 bpf: Store ref_ctr_offsets values in bpf_uprobe array 02a255723e6b net: phy: micrel: fix KSZ9477 PHY issues after suspend/resume 645e643eeb9a net/ncsi: Fix the multi thread manner of NCSI driver d7dd9d1f02b2 net/ncsi: Simplify Kconfig/dts control flow 87cc2514162f ax25: Replace kfree() in ax25_dev_free() with ax25_dev_put() 52100fd74ad0 ax25: Fix refcount imbalance on inbound connections 909dc098a754 RISC-V: KVM: Fix incorrect reg_subtype labels in kvm_riscv_vcpu_set_reg_isa_ext function 5d8622f61ef1 RISC-V: KVM: No need to use mask when hart-index-bit is 0 b2b1043ac1f5 scsi: ufs: mcq: Fix error output and clean up ufshcd_mcq_abort() 2f467fefdfae wifi: mac80211: correctly parse Spatial Reuse Parameter Set element a05018739a5e wifi: iwlwifi: mvm: don't read past the mfuart notifcation 29a18d56bd64 wifi: iwlwifi: mvm: check n_ssids before accessing the ssids f7773fff6dda wifi: iwlwifi: dbg_ini: move iwl_dbg_tlv_free outside of debugfs ifdef bdfa7cf3281b wifi: iwlwifi: mvm: set properly mac header 1ef2671de723 wifi: iwlwifi: mvm: revert gen2 TX A-MPDU size to 64 1fd3f32695af wifi: iwlwifi: mvm: don't initialize csa_work twice ff2b4dc81e67 wifi: cfg80211: pmsr: use correct nla_get_uX functions 0ccc63958d83 wifi: cfg80211: Lock wiphy in cfg80211_get_station 46b7eff59a32 wifi: cfg80211: fully move wiphy work to unbound workqueue 456bbb8a31e4 wifi: mac80211: Fix deadlock in ieee80211_sta_ps_deliver_wakeup() 63d5f89bb566 wifi: mac80211: mesh: Fix leak of mesh_preq_queue objects c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault (From OE-Core rev: c404775afcb500aa931ace1289df7a194f0778ba) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>