summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
...
* default-providers.conf: add virtual-x-terminal-emulatorRoss Burton2024-11-141-0/+2
| | | | | | | | | | | | | We have multiple recipes in core that RPROVIDE virtual-x-terminal-emulator, so we should pick one to be the default for deterministic builds. Pick rxvt, as it's the lightest. Sato can depend on matchbox-terminal explicitly and rxvt will not be added. (From OE-Core rev: 0c362390127fa30f6932558ebcd9cbe1e21e8467) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* matchbox-terminal: add x-terminal-emulator RPROVIDES and alternativeRoss Burton2024-11-141-1/+6
| | | | | | | | | | | | | | | Add a RPROVIDES for virtual-x-terminal-emulator, so that: - Packages can RDEPEND on virtual-x-terminal-emulator and know that they have installed a terminal - The x-terminal-emulator binary will (via alternatives) run a terminal We don't bother with PROVIDES because nobody needs to DEPEND on a terminal, the entire point of this is that the actual binary is interchangable. (From OE-Core rev: e1261ed6c3af803371f7a53eff18015828947d30) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rxvt-unicode: add x11 DISTRO_FEATURE checkRoss Burton2024-11-141-1/+3
| | | | | | | | | | rxvt is a classic X11 application, so add the feature check so it doesn't get pulled into world builds without x11. (From OE-Core rev: 3530b250e32fb0f164899d60019633d2ecf8ef67) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rxvt-unicode: change virtual/x-terminal-emulator PROVIDES to RPROVIDESRoss Burton2024-11-141-1/+1
| | | | | | | | | | | | | | The point of the virtual-x-terminal-emulator alternative was to provide a single binary that executes whatever terminal has been installed. This is a runtime choice, so should be RPROVIDES. This doesn't need built-time PROVIDES, which actively get in the way when multiple recipes are being built with the same PROVIDES. (From OE-Core rev: 841df9b9eba52b65456650bfd9f667d77072d6f8) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* automake: Remove patch that changes path to test-driverOla x Nilsson2024-11-142-51/+0
| | | | | | | | | | | | | | | | | | | | | | | The patch "Set relative to top_builddir path in Makefile to access" sets the default path of `test-driver` to `$(top_builddir)/$(config_aux_dir)` instead of the normal `$(top_srcdir)/$(config_aux_dir)`. This breaks `check test` for Automake projects in generated images, and probably other places like SDKs. A typical error would be /bin/sh: ./build-aux/test-driver: No such file or directory Removing the patch makes such checks complete successfully. Fixes [YOCTO #15635] (From OE-Core rev: d21dbafda92263d3e30a5b7d84dd9bb02f855610) Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* strace: Fix the ptest path to test-driverOla x Nilsson2024-11-141-1/+3
| | | | | | | | | | | | | | | | | | | Add a sed substitution for ${PTEST_PATH}/tests/Makefile that transforms TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver to TEST_LOG_DRIVER = $(SHELL) $(top_builddir)/build-aux/test-driver which is where the test-driver script can be found when installed. There used to be an oe-core automake patch to do this, but it broke non-ptest use of automake. Relates to [YOCTO #15635] (From OE-Core rev: cfa585b93192222904ca99b7533d21726089b11c) Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* parted: Fix the ptest path to test-driverOla x Nilsson2024-11-141-7/+9
| | | | | | | | | | | | | | | | | | Add a sed substitution for ${PTEST_PATH}/tests/Makefile that transforms SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver to SH_LOG_DRIVER = $(SHELL) $(top_builddir)/build-aux/test-driver which is where the test-driver script can be found when installed. There used to be an oe-core automake patch to do this, but it broke non-ptest use of automake. Relates to [YOCTO #15635] (From OE-Core rev: e1274fd52c7d7a41af60f5f19ba2163dba3d973f) Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sed: Fix the ptest path to test-driverOla x Nilsson2024-11-141-0/+1
| | | | | | | | | | | | | | | | | | | | Add a sed substitution for ${PTEST_PATH}/Makefile that transforms SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver PL_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver to SH_LOG_DRIVER = $(SHELL) $(top_builddir)/build-aux/test-driver PL_LOG_DRIVER = $(SHELL) $(top_builddir)/build-aux/test-driver which is where the test-driver script can be found when installed. There used to be an oe-core automake patch to do this, but it broke non-ptest use of automake. Relates to [YOCTO #15635] (From OE-Core rev: 2f7c365e97aa2205187e0ea426e17228cf91ad83) Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* attr: Fix the ptest path to test-driverOla x Nilsson2024-11-141-4/+7
| | | | | | | | | | | | | | | | | | Add a sed substitution for ${PTEST_PATH}/Makefile that transforms TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver to TEST_LOG_DRIVER = $(SHELL) $(top_builddir)/build-aux/test-driver which is where the test-driver script can be found when installed. There used to be an oe-core automake patch to do this, but it broke non-ptest use of automake. Relates to [YOCTO #15635] (From OE-Core rev: 289db96b441e01c4ba1bbcd76fcf52b3258f2613) Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* acl: Fix the ptest path to test-driverOla x Nilsson2024-11-141-4/+6
| | | | | | | | | | | | | | | | | | Add a sed substitution for ${PTEST_PATH}/Makefile that transforms TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver to TEST_LOG_DRIVER = $(SHELL) $(top_builddir)/build-aux/test-driver which is where the test-driver script can be found when installed. There used to be an oe-core automake patch to do this, but it broke non-ptest use of automake. Relates to [YOCTO #15635] (From OE-Core rev: a951447ca3b51f77272381c8e0c5837671fabbbd) Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* quilt: fix dependency on ptest-runnerAwais Belal2024-11-141-1/+1
| | | | | | | | | | | | | | | | | | Specifically when using useradd-staticids this fails without creating a ptest user entry. ERROR: Nothing PROVIDES 'ptest-runner' ptest-runner was skipped: Recipe ptest-runner, package ptest-runner: system username "ptest" does not have a static ID defined. Add ptest to one of these files: .../passwd ... ... Missing or unbuildable dependency chain was: ['my-image-sdk', 'packagegroup-core-sdk', 'quilt', 'ptest-runner'] This is seen when ptest is not even enabled. We fix this by making a conditional dependency on the ptest-runner. (From OE-Core rev: f4cc8bfe9c7d936ed36023f955d34f57676597d6) Signed-off-by: Awais B <awais.belal@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tcl: correctly symlink tclsh to 9.0 versionAlexander Kanavin2024-11-141-1/+1
| | | | | | | (From OE-Core rev: 5875448ae501e40627ed291ad93c129d6c7288e0) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* binutils: stable 2.43.1 branch updateDeepthi Hemraj2024-11-142-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Below commit on binutils-2.43.1 stable branch are updated. b82e2250574 Automatic date update in version.in 280374309b1 PR32300, --dependency-file: link dependencies are not all collected 263e116833e s390: Add arch15 instructions 645da6d426e s390: Relax risbg[n]z, risb{h|l}gz, {rns|ros|rxs}bgt operand constraints 7f7047a9c6c s390: Simplify (dis)assembly of insn operands with const bits e7592364504 s390: Align opcodes to lower-case d6ab1d2efdc s390: Document syntax to omit base register operand c40337b1784 LoongArch: Add elfNN_loongarch_mkobject to initialize LoongArch tdata 95ed7cf1be2 segv in bfd_elf_get_str_section 0a71d78f6a6 ld: Don't explicitly add .note.gnu.build-id in elf.sc ad2ce1e6457 x86: Turn PLT32 to PC32 only for PC-relative relocations 238493e7f09 x86-64: Disable PIE on PR gas/32189 test 68d5dbd315d x86-64: Never make R_X86_64_GOT64 section relative d77d08180d1 x86/APX: Don't promote AVX/AVX2 instructions out of APX spec f307db3d8b7 bfd: Pass true to ld_plugin_object_p cd3e2b58f2c PR32109, aborting at bfd/bfd.c:1236 in int _bfd_doprnt 2d37b890e56 lto: Add a test for PR ld/32083 d16a1893c44 ld: Add an LTO test for common symbol override e4cfe6dab3e Re-enable development changes on the 2_43 branch Testing was done and there were no regressions found (From OE-Core rev: 4950a2d67a85b3f4a643a46fdc54d348abce5ed6) Signed-off-by: Deepthi Hemraj <Deepthi.Hemraj@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python_mesonpy: remove cython-specific INSANE_SKIPsRoss Burton2024-11-121-4/+0
| | | | | | | | | | These INSANE_SKIPs are specific to cython and unrelated to mesonpy, so remove them. The new cython.bbclass should resolve the cause. (From OE-Core rev: abe08a3238d162a1bdbc68172307eb3eb127bbb1) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-*: inherit cythonRoss Burton2024-11-123-33/+7
| | | | | | | | | | Change recipes that depend on python3-cython-native to inherit cython instead. (From OE-Core rev: 8217b61c3838d4a43b63b78c5121d657f52b4b2b) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* classes-recipe: add cython classRoss Burton2024-11-121-0/+11
| | | | | | | | | | | | | | | Recipes that use Cython typically also do some bespoke fixup. Add a class to centralise the logic: - Set CYTHON_PREFIX_MAP to stop build paths appearing in generated objects - Strip "Cython Metadata" blocks from generated code that ends up in the -src package (From OE-Core rev: 9752da112b618362d2fe1b61c8939b8410e98553) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-cython: add patch to prefix map source paths in generated filesRoss Burton2024-11-122-0/+149
| | | | | | | | | | | | | | | | | | Cython generates C source code that contains mentions to the original .py files, which results in build paths being embedded inside the binaries. Implement prefix remapping to change these build paths to point at the target debug directory, so that we don't leak build paths and have reproducible builds. This patch is currently not submitted upstream, but will be shortly and I expect it to evolve before being merged. (From OE-Core rev: cdbe8ef6b744f8e485c4bc77897ad545457ea51e) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lttng-ust: backport patch to fix cmake-multiple-shared-libraries build errorBin Lan2024-11-123-34/+162
| | | | | | | | | | | | | | | | | | | | | | | There are the following error when building doc/examples/cmake-multiple-shared-libraries: ld: warning: liblttng-ust-common.so.1, needed by lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so, not found (try using -rpath or -rpath-link) ld: warning: liblttng-ust-tracepoint.so.1, needed by lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so, not found (try using -rpath or -rpath-link) ld: warning: liblttng-ust-common.so.1, needed by lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so, not found (try using -rpath or -rpath-link) ld: warning: liblttng-ust-tracepoint.so.1, needed by lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so, not found (try using -rpath or -rpath-link) ld: lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so: undefined reference to `lttng_ust_common_alloc_tls' ld: lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so: undefined reference to `lttng_ust_urcu_after_fork_parent' ld: lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so: undefined reference to `lttng_ust_urcu_after_fork_child' ld: lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so: undefined reference to `lttng_ust_urcu_after_fork_parent' ld: lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so: undefined reference to `lttng_ust_tp_probe_unregister_queue_release' ld: lttng-ust/2.13.8/build/src/lib/lttng-ust/.libs/liblttng-ust.so: undefined reference to `lttng_ust_cancelstate_disable_pop' collect2: error: ld returned 1 exit status This change set removes the old patch file 0001-Makefile.am-update-rpath-link.patch, adds a new patch file 0001-Fix-Build-examples-when-rpath-is-stripped-from-in-bu.patch. (From OE-Core rev: 89394da1cbe98652e1d0bd59c762ff7da2d6a113) Signed-off-by: Bin Lan <bin.lan.cn@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rust: Add patch to increase timeout in process-sigpipe rust selftestPeter Tatrai2024-11-122-0/+32
| | | | | | | | | | | | | | | | | This commit adds a patch to increase the timeout in the process-sigpipe rust selftest to prevent occasional failures under heavy server load. The patch aims to reduce the likelihood of false negatives when the test environment is overloaded. Patch file: * oeqa-selftest-Increase-timeout-in-process-sigpipe-ru.patch Fixes [YOCTO #15625] (From OE-Core rev: 12c85933e2150ba78a8a914787e400c95c5cf585) Signed-off-by: Peter Tatrai <peter.tatrai.ext@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rust: Remove passing test case from the exclude list in the Rust OE self-test.Deepesh Varatharajan2024-11-121-1/+0
| | | | | | | | | | | | | | We had previously excluded this test case due to failure in earlier versions. However, with the latest version of Rust, this test case is passing. As a result, we have removed it from the exclude list and added back into the test suite for execution. The rust-1.79 has been successfully tested with the current test inclusion. (From OE-Core rev: a33edee3efe67f81229496e03a098454dc7df051) Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* connman: Fix restart scriptMichael Nazzareno Trimarchi2024-11-121-1/+1
| | | | | | | | | | | | | | The script does not work if the connman service is already stopped. The start-stop-daemon checks for the existence of a specified process. If such a process exists, start-stop-daemon sends it the signal specified by --signal, and exits with error status 0. If such a process does not exist, start-stop-daemon exits with error status 1 (0 if --oknodo is specified). The script uses set -e so we need to add --oknodo option to stop (From OE-Core rev: b1c1b67166049181136d5eb68740f3bf98bf670d) Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* expat: upgrade 2.6.3 -> 2.6.4Peter Marko2024-11-121-1/+1
| | | | | | | | | Handle CVE-2024-50602 (From OE-Core rev: 5dc22afe3d2ea767f084b7c6e3625cb6edd66522) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemd: don't use deprecated meson option valuesRoss Burton2024-11-121-37/+37
| | | | | | | (From OE-Core rev: 853414760741530356355826b97f14c95a2144e4) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pango: don't use deprecated gtk_doc option flagRoss Burton2024-11-121-0/+1
| | | | | | | | | The correct meson flag for the documentation is 'documentation'. (From OE-Core rev: 8dc084abe583077e5d357c7d3eaf3a0ad0e6b2b0) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libpciaccess: add (and enable) the option for compressed pci.ids fileRoss Burton2024-11-121-0/+3
| | | | | | | | | | A small dependency allows the 1.3MB pci.ids file to be compressed down to 300K. (From OE-Core rev: a254c976eb77dc9d548dc145dab182d341e3d8f9) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libpciaccess: remove redundant feature checkRoss Burton2024-11-121-11/+4
| | | | | | | | | | | | This recipe once included the xorg common .inc file but had to reset several variables. It no longer includes that file but there's a lot of cruft to remove: the LICENSE being "MIT & MIT" and the features_check class not checking for any features, specifically. (From OE-Core rev: 2321b806b3cd833f2b8b1672f699bfca55874fb3) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* json-glib: don't use deprecated gtk_doc option flagRoss Burton2024-11-121-0/+1
| | | | | | | | | The correct meson flag for the documentation is 'documentation'. (From OE-Core rev: f754bce3de22cd2c9645b3599fef13503c464200) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gstreamer1.0-libav: explicitly disable documentationRoss Burton2024-11-121-0/+1
| | | | | | | | | | We can't build documentation when doing a cross build, so disable it explicitly to be clear. (From OE-Core rev: 2706062d3a711ff0b2c03bee40b908ad329ebd6d) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glib-2.0: explicitly disable sysprofRoss Burton2024-11-121-1/+1
| | | | | | | | | | We can't build this combination right now because of a circular dependency, but it's good to make it explicit. (From OE-Core rev: 736be249c56fd9a603dbb8ece77612928bb25ce9) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glib-2.0: don't use deprecated Meson option valuesRoss Burton2024-11-121-1/+2
| | | | | | | | | true/false for these options is deprecated, use enabled/disabled. (From OE-Core rev: 9f3fbfb04d2a6e2d0dab63be0f04a539c4a803ed) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cairo: disable some features explicitlyRoss Burton2024-11-121-0/+2
| | | | | | | | | | These are disabled out of the box but only because the dependencies are not present. Explicitly disable them to be clear. (From OE-Core rev: 6efa5d5ae086f7178b3f7516803f24c78274bba1) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa runtime uki.py: add testsMikko Rapeli2024-11-121-0/+16
| | | | | | | | | | If Unified Kernel Image was enabled via IMAGE_CLASSES, then target should also boot the same uki at runtime. (From OE-Core rev: 2ae651c869a19fd24b5a915451c1f99e1d7b32f0) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* uki.bbclass: fix debug print logging levelMikko Rapeli2024-11-121-1/+1
| | | | | | | | | Missing/unknown log level triggers a warning. (From OE-Core rev: ab2d1eeb4cad7ef8791954b36f8123cb35b8c000) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* groff: Fix race issues for parallel buildRobert Yang2024-11-122-0/+32
| | | | | | | | | | | | | Fixed race issues for parallel build: groff: error: couldn't exec soelim: Permission And: groff: error: couldn't exec grn: Permission denied (From OE-Core rev: b9ee7ea9ab05a1887c863dc9fccc65cb9e6850df) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-setuptools: add more comments to a patchRoss Burton2024-11-121-3/+5
| | | | | | | | | Add more explanatory comments, including when we can drop the patch. (From OE-Core rev: 15091ef668b544ceb881f8179c0c25c97afd3f5f) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* uboot-sign: fix concat_dtb argumentsClayton Casciato2024-11-121-1/+1
| | | | | | | | | | | | Fixes [YOCTO #15642] Ensure empty argument passed from do_uboot_assemble_fitimage is passed to concat_dtb (From OE-Core rev: b3c473785e5ceef677ff2b77c5fc17f5704c622f) Signed-off-by: Clayton Casciato <majortomtosourcecontrol@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gzip: show full test log if ptests failRoss Burton2024-11-121-4/+1
| | | | | | | | | Enable verbose tests so that the output from the failing test is logged. (From OE-Core rev: 2e031a41a3c8da591755f39898ba063e39d79aaa) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-devsrc: update for 6.12+Bruce Ashfield2024-11-121-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | arm64 needs some new files to regenerate the build environment in 6.12+. This is due to upstream commits: commit e632bca07c8eef1de9dc50f4e4066c56e9d68b07 Author: Arnd Bergmann <arnd@arndb.de> Date: Thu Jul 4 14:33:34 2024 +0200 arm64: generate 64-bit syscall.tbl Change the asm/unistd.h header for arm64 to no longer include asm-generic/unistd.h itself, but instead generate both the asm/unistd.h contents and the list of entry points using the syscall.tbl scripts that we use on most other architectures. Once his is done for the remaining architectures, the generic unistd.h header can be removed and the generated tbl file put in its place. The Makefile changes are more complex than they should be, I need a little help to improve those. Ideally this should be done in an architecture-independent way as well. Acked-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de> and: commit 712676ea2bb3882a852bcf49862c4247317fc9b2 Author: Adhemerval Zanella <adhemerval.zanella@linaro.org> Date: Tue Sep 3 12:09:17 2024 +0000 arm64: vDSO: Wire up getrandom() vDSO implementation Hook up the generic vDSO implementation to the aarch64 vDSO data page. The _vdso_rng_data required data is placed within the _vdso_data vvar page, by using a offset larger than the vdso_data. The vDSO function requires a ChaCha20 implementation that does not write to the stack, and that can do an entire ChaCha20 permutation. The one provided uses NEON on the permute operation, with a fallback to the syscall for chips that do not support AdvSIMD. This also passes the vdso_test_chacha test along with vdso_test_getrandom. The vdso_test_getrandom bench-single result on Neoverse-N1 shows: vdso: 25000000 times in 0.783884250 seconds libc: 25000000 times in 8.780275399 seconds syscall: 25000000 times in 8.786581518 seconds A small fixup to arch/arm64/include/asm/mman.h was required to avoid pulling kernel code into the vDSO, similar to what's already done in arch/arm64/include/asm/rwonce.h. Signed-off-by: Adhemerval Zanella <adhemerval.zanella@linaro.org> Reviewed-by: Ard Biesheuvel <ardb@kernel.org> Acked-by: Will Deacon <will@kernel.org> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> (From OE-Core rev: b3c24a31c29aa74a9d63a0ea0bcaccca73db870b) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* multilib_global.bbclass: Avoid expanding native recipes in NON_MULTILIB_RECIPESRobert Yang2024-11-121-0/+3
| | | | | | | | | | | | | | | | | | | | | Fixed: require conf/multilib.conf MULTILIBS = "multilib:lib32" DEFAULTTUNE:virtclass-multilib-lib32 = "x86" MACHINE = "qemux86-64" $ bitbake lib32-grub-native The build would go on before the patch which was incorrect. Now: ERROR: Nothing PROVIDES 'lib32-grub-native'. Close matches: [snip] The nativesdk doesn't have such an issue, so only skip native. (From OE-Core rev: 73bea15bb5d0f70b587d2ad1007cc0282652eed7) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tcl8: re-add tcl 8 to support building expectAlexander Kanavin2024-11-1211-3/+422
| | | | | | | | | | | | | | | | | | | | | | | | | I'd be happy to remove expect from core as it has been unmaintained for years, but sadly gcc/binutils test suites are basically written in it (via dejagnu), and ltp makes use of it as well. I attempted porting expect to tcl 9, but it's a tcl extension and makes extensive use of features that have been deprecated in tcl 8 and removed in tcl 9, and even pokes into tcl internals. At some point hopefully the GNU toolchain upstreams are going to notice; for now we'll carry tcl (latest) and tcl8 recipes. tcl and tcl8 packages can be co-installed, the latter is adjusted to contain tclsh8. tcl-dev and tcl8-dev packages can also be co-installed, a few files in tcl8-dev are renamed to avoid clashes with tcl-dev (tcl.pc -> tcl8.pc, and similar for tclConfig.sh and tclooConfig.sh). (From OE-Core rev: 8ec7bfc6644aff011545dfb0f5a415e79d7b0844) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tcl: update 8.6.15 -> 9.0.0Alexander Kanavin2024-11-128-64/+79
| | | | | | | | | | | | Make adjustments needed for ptests: among others, the binary.test needs 4G of RAM. Apply all patches unconditionally for ease of future upgrades. (From OE-Core rev: 372cfdd3f9355081942514c7db44119fa55ff58e) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-packaging: Ignore old glibc tests on muslKhem Raj2024-11-123-4/+9
| | | | | | | | | | | These tests expect glibc to be the system C library ignore them for musl (From OE-Core rev: 8b5b18a65c3ac3a3b5f1eef462824ef27f36f223) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* classes-recipe/core-image: drop debug-tweaks IMAGE_FEATURERoss Burton2024-11-073-14/+15
| | | | | | | | | | | | | | | | | | | Remove the 'debug-tweaks' IMAGE_FEATURE. It sounds friendly and kind to developers, but it results primarily in an image which root can login remotely without a password. This is incredibly useful for local development and testing purposes, but we really want to be explicit that this is what is happening instead of hiding it behind a vague "debug tweaks" statement. To preserve the eixsting behaviour, debug-tweaks should be replaced with these features: allow-empty-password empty-root-password allow-root-login post-install-logging (From OE-Core rev: 2c229f9542c6ba608912e14c9c3f783c3fa89349) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf: require lz4 instead of lz4cJustin Bronder2024-11-071-1/+1
| | | | | | | | | | | | | | | | | | With bitbake commit 'bb: compress: use lz4 instead of lz4c' we require lz4, not lz4c [1]. Going as far back as Ubuntu 16.04/Fedora 25, they are packaged together so it should be safe to simply adjust the requirement from lz4c to lz4. Note that the two are largely the same, but upstream has considered lz4c deprecated since at least 2018 [2]. 1. https://git.openembedded.org/bitbake/commit/?id=907472034b344e4eb73cfd43059a413469f52e1c 2. https://github.com/lz4/lz4/pull/553 (From OE-Core rev: fe167e082cbde1c6d186ecdda531abef610ac2ac) Signed-off-by: Justin Bronder <jsbronder@cold-front.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* barebox: use lz4 instead of lz4cJustin Bronder2024-11-072-1/+38
| | | | | | | | | | | | | | | | | | | lz4c has been considered deprecated by upstream since at least 2018 [1] and has been disabled by default recently [2]. openSUSE Tumbleweed is no longer packaging the deprecated version and others will likely follow. Going back as far as Ubuntu 16.04/Fedora 25, both lz4 and lz4c are installed as part of the same package so switching should be safe. 1. https://github.com/lz4/lz4/pull/553 2. https://github.com/lz4/lz4/pull/1479 Upstream-Status: Submitted [http://lists.infradead.org/pipermail/barebox/2024-November/048491.html] (From OE-Core rev: d25c027c6c5ca5cc4b93d3dc394d5bbae15dbafc) Signed-off-by: Justin Bronder <jsbronder@cold-front.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-cython: remove obsolete SETUPTOOLS_INSTALL_ARGSRoss Burton2024-11-071-5/+0
| | | | | | | (From OE-Core rev: b4bdfc78e8e1cb8b86221bc55d80d601ea1a065f) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-devsrc: make tools/Build optionalBruce Ashfield2024-11-071-1/+1
| | | | | | | | | | | | | | | | | | | kernel-devsrc fails to copy files for v6.12+ as the following upstream commit has removed the file tools/build/Build: commit ea974028a049f2cea4bb6be963ee3e3844a03f6d Author: Brian Norris <briannorris@chromium.org> Date: Mon Jul 15 13:32:43 2024 -0700 tools build: Avoid circular .fixdep-in.o.cmd issues We make the failed copy of this file non-fatal to support all kernel versions. (From OE-Core rev: 13e16e5be25f379211c7329fa1462464174c0f2d) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lttng-modules: fix build for 6.12+Bruce Ashfield2024-11-073-0/+230
| | | | | | | | | | We backport two fixes from the -stable 2.13 lttng branch to fix the build against kernels 6.12+ (From OE-Core rev: f7e9b9b30f0035a139e14210ee416e5cf27f8f1e) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.10: genericarm64.cfg: enable CONFIG_DMA_CMABruce Ashfield2024-11-073-3/+3
| | | | | | | | | | | | | | | | | | | | | | Integrating the following commit(s) to linux-yocto/.: 1/1 [ Author: Mikko Rapeli Email: mikko.rapeli@linaro.org Subject: genericarm64.cfg: enable CONFIG_DMA_CMA Date: Thu, 24 Oct 2024 08:49:29 +0300 It's needed for graphics on AMD KV260. Cc: Bill Mills <bill.mills@linaro.org> Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> ] (From OE-Core rev: 7d1572bce914ff67c3e08f95dfd8504b00b9a8e0) 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.59Bruce Ashfield2024-11-073-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/6.6 to the latest korg -stable release that comprises the following commits: bf3af7e92bda Linux 6.6.59 7d9868180bd1 xfrm: validate new SA's prefixlen using SA family when sel.family is unset 7a26cb660775 task_work: make TWA_NMI_CURRENT handling conditional on IRQ_WORK 81507f633e79 tracing: probes: Fix to zero initialize a local variable 042804a9fff1 RDMA/bnxt_re: Fix unconditional fence for newer adapters 67819f10702b RDMA/bnxt_re: Avoid creating fence MR for newer adapters 1aee34ed99e9 RDMA/bnxt_re: Fix the offset for GenP7 adapters for user applications 38ca6fd426ea ACPI: PRM: Clean up guid type in struct prm_handler_info d1e55eeee056 platform/x86: dell-wmi: Ignore suspend notifications 73cc3f905ca9 ASoC: qcom: Fix NULL Dereference in asoc_qcom_lpass_cpu_platform_probe() 24f638125cc3 ata: libata: Set DID_TIME_OUT for commands that actually timed out ce4a70d9b916 net: phy: dp83822: Fix reset pin definitions 4512c448f54c selinux: improve error checking in sel_write_load() c79e0a18e4b3 drm/amd/display: Disable PSR-SU on Parade 08-01 TCON too 62c85b9a0dd7 hv_netvsc: Fix VF namespace also in synthetic NIC NETDEV_REGISTER event c73bca72b84b xfrm: fix one more kernel-infoleak in algo dumping 36bd0f386b7c LoongArch: Make KASAN usable for variable cpu_vabits 8915ed160dbd LoongArch: Enable IRQ if do_ale() triggered in irq-enabled context cd2cef731170 LoongArch: Get correct cores_per_package for SMT systems 5d10f6fb2cb7 ALSA: hda/realtek: Add subwoofer quirk for Acer Predator G9-593 0d674f2e73b4 ALSA: hda/tas2781: select CRC32 instead of CRC32_SARWATE 60a5ba560f29 x86/lam: Disable ADDRESS_MASKING in most cases 599eee0e9817 KVM: arm64: Don't eagerly teardown the vgic on init error 04ed2ba07ce7 KVM: arm64: Fix shift-out-of-bounds bug 2c4adc9b192a KVM: nSVM: Ignore nCR3[4:0] when loading PDPTEs from memory f421a3b18aa7 openat2: explicitly return -E2BIG for (usize > PAGE_SIZE) 743c78d455e7 nilfs2: fix kernel bug due to missing clearing of buffer delay flag a299d415dd37 ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix initial lid detection issue 795b080d9aa1 ACPI: PRM: Find EFI_MEMORY_RUNTIME block for PRM handler and context bdaab141edb6 ACPI: resource: Add LG 16T90SP to irq1_level_low_skip_override[] 975ede2a7bec drm/amd: Guard against bad data for ATIF ACPI method 004ad1a2d684 btrfs: zoned: fix zone unusable accounting for freed reserved extent 3521754614cf btrfs: fix passing 0 to ERR_PTR in btrfs_search_dir_index_item() 2f2684c7903e cpufreq: CPPC: fix perf_to_khz/khz_to_perf conversion exception 33e89c16cea0 cpufreq/cppc: Move and rename cppc_cpufreq_{perf_to_khz|khz_to_perf}() 35dbac8c328d smb: client: Handle kstrdup failures for passwords 66921a4d8e84 ALSA: hda/realtek: Update default depop procedure f965dc0f099a nfsd: cancel nfsd_shrinker_work using sync mode in nfs4_state_shutdown_net 5f0468f30c8f powercap: dtpm_devfreq: Fix error check against dev_pm_qos_add_request() 4bdc21506f12 ALSA: firewire-lib: Avoid division by zero in apply_constraint_to_size() 8b339beb7cfe ASoC: fsl_micfil: Add a flag to distinguish with different volume control types f9ba85f823e7 ASoC: rsnd: Fix probe failure on HiHope boards due to endpoint parsing 83a420e965f6 ASoC: max98388: Fix missing increment of variable slot_found 6e4aed4acc1a ASoC: loongson: Fix component check failed on FDT systems f10cba3f761b ASoC: dt-bindings: davinci-mcasp: Fix interrupt properties 5e3583b4c000 ASoC: dt-bindings: davinci-mcasp: Fix interrupts property 773dc610ca64 net: dsa: mv88e6xxx: support 4000ps cycle counter period 06b1c8091542 net: dsa: mv88e6xxx: read cycle counter period from hardware 4dc655d86b54 net: dsa: mv88e6xxx: group cycle counter coefficients 21db2f35fa97 bpf,perf: Fix perf_event_detach_bpf_prog error handling 14bcb721d241 Bluetooth: ISO: Fix UAF on iso_sock_timeout d30803f6a972 Bluetooth: SCO: Fix UAF on sco_sock_timeout 1ba33b327c3f posix-clock: posix-clock: Fix unbalanced locking in pc_clock_settime() 7d6d46b42980 r8169: avoid unsolicited interrupts 5d282467245f net: sched: use RCU read-side critical section in taprio_dump() 0d4c0d2844e4 net: sched: fix use-after-free in taprio_change() a5cf8670acbb net/sched: act_api: deny mismatched skip_sw/skip_hw flags for actions created by classifiers d123062a3fdc bpf: Remove MEM_UNINIT from skb/xdp MTU helpers 48068ccaea95 bpf: Fix overloading of MEM_UNINIT's meaning 8a33a047bd31 bpf: Add MEM_WRITE attribute d1100acab464 bpf: Simplify checking size of helper accesses 7caee37c466a net: usb: usbnet: fix name regression a7bdb199784f net: fix races in netdev_tx_sent_queue()/dev_watchdog() 10cb940429c2 net/sched: adjust device watchdog timer to detect stopped queue at right time 69076f8435c1 net: wwan: fix global oob in wwan_rtnl_policy 433742ba96ba netfilter: xtables: fix typo causing some targets not to load on IPv6 5ed4334fc951 fsl/fman: Fix refcount handling of fman-related devices 275bebf5be50 fsl/fman: Save device references taken in mac_probe() 06b526846cc9 net: dsa: mv88e6xxx: Fix error when setting port policy on mv88e6393x c2d2dc4f88bb octeon_ep: Add SKB allocation failures handling in __octep_oq_process_rx() e71146ff378c octeon_ep: Implement helper for iterating packets in Rx queue 64854b218703 net: plip: fix break; causing plip to never transmit 641c1beed52b be2net: fix potential memory leak in be_xmit() 6dc937a3086e net/sun3_82586: fix potential memory leak in sun3_82586_send_packet() f41bd93b3e05 netfilter: bpf: must hold reference on net namespace c1530660410c xfrm: respect ip protocols rules criteria when performing dst lookups ac1d820eaa30 xfrm: extract dst lookup parameters into a struct a14a075a14af tracing: Consider the NULL character when validating the event length 6bc24db74fe4 tracing/probes: Fix MAX_TRACE_ARGS limit handling f475d8a0cca7 jfs: Fix sanity check in dbMount a94c197d4d74 LoongArch: Don't crash in stack_top() for tasks without vDSO 3d75f500f64d platform/x86: dell-sysman: add support for alienware products 6d52db315cfc cifs: Validate content of NFS reparse point buffer f47a40ee4cdb ASoC: qcom: sm8250: add qrb4210-rb2-sndcard compatible string 1ac49babc952 udf: fix uninit-value use in udf_get_fileshortad 493447dd8336 udf: refactor inode_bmap() to handle error 5fc8da4d326d udf: refactor udf_next_aext() to handle error 402c8862fe54 udf: refactor udf_current_aext() to handle error 8c213cc21724 arm64: Force position-independent veneers 85e70dcd1f85 ASoC: fsl_sai: Enable 'FIFO continue on error' FCONT bit 935e5c5f93df ASoC: codecs: lpass-rx-macro: add missing CDC_RX_BCL_VBAT_RF_PROC2 to default regs values b3d4f2329312 ASoC: amd: yc: Add quirk for HP Dragonfly pro one 9eb32bd23bbc drm/vboxvideo: Replace fake VLA at end of vbva_mouse_pointer_shape with real VLA 0d16f53c9111 exec: don't WARN for racy path_noexec check 9e5f93788c9d uprobe: avoid out-of-bounds memory access of fetching args f0a7ea54f3dc uprobes: prevent mutex_lock() under rcu_read_lock() f5272c98a4a0 uprobes: prepare uprobe args buffer lazily 1c7fa34863c7 uprobes: encapsulate preparation of uprobe args buffer 91f62703146a tracing/probes: Support $argN in return probe (kprobe and fprobe) e96b42d22f66 tracing/probes: cleanup: Set trace_probe::nr_args at trace_probe_init 5868fa7ebe66 tracing/fprobe-event: cleanup: Fix a wrong comment in fprobe event 4fad73700867 usb: dwc3: core: Fix system suspend on TI AM62 platforms 66e56efc45cb XHCI: Separate PORT and CAPs macros into dedicated file ecc8a9502b3c usb: gadget: f_uac2: fix return value for UAC2_ATTRIBUTE_STRING store 0a2794e244d8 usb: gadget: f_uac2: fix non-newline-terminated function name 3af6c7285413 usb: gadget: f_uac2: Replace snprintf() with the safer scnprintf() variant c691c2adeb75 xhci: dbc: honor usb transfer size boundaries. 7cbcb40d4699 xhci: dbgtty: use kfifo from tty_port struct 32bd1720ede6 xhci: dbgtty: remove kfifo_out() wrapper fe19d913d2c8 iio: adc: ti-lmp92064: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig 5f029be65dca mm: khugepaged: fix the arguments order in khugepaged_collapse_file trace point 36249a0b212e khugepaged: remove hpage from collapse_file() 03e36dba005e khugepaged: convert alloc_charge_hpage to alloc_charge_folio 281a0312ce41 khugepaged: inline hpage_collapse_alloc_folio() c556c5580646 mm/khugepaged: use a folio more in collapse_file() 4ba70817cfad mm: convert collapse_huge_page() to use a folio a1afee6c6f53 mm/khugepaged: convert alloc_charge_hpage() to use folios cf2bb1bf0306 cdrom: Avoid barrier_nospec() in cdrom_ioctl_media_changed() bb0f943675a9 bpf: Fix iter/task tid filtering 4ed32cc0939b nvme-pci: fix race condition between reset and nvme_dev_disable() e2c03a2c838e nvme-pci: set doorbell config before unquiescing ed67a5b99e4d riscv, bpf: Make BPF_CMPXCHG fully ordered 8a377818bcf8 bpf, vsock: Drop static vsock_bpf_prot initialization 9dd9b16018cc vsock: Update msg_count on read_skb() 66cd51de31c6 vsock: Update rx_bytes on read_skb() 12c3e619d34a bpf, sockmap: SK_DROP on attempted redirects of unsupported af_vsock 9f2ccb6f3888 net/mlx5: Unregister notifier on eswitch init failure d88564c79d1c net/mlx5: Fix command bitmask initialization 5ec33b1fe86d net/mlx5: Check for invalid vector index on EQ creation 59ba6cdadb9c vmxnet3: Fix packet corruption in vmxnet3_xdp_xmit_frame d10cd7bf574e Bluetooth: bnep: fix wild-memory-access in proto_unregister 97bbdc5001db bpf: Fix link info netfilter flags to populate defrag flag 9221ae88c205 s390: Initialize psw mask in perf_arch_fetch_caller_regs() 1ded6b12499e usb: typec: altmode should keep reference to parent b209c3a0bc3a smb: client: fix OOBs when building SMB2_IOCTL request b1813c220b76 smb: client: fix possible double free in smb2_set_ea() b80e9bc85bd9 scsi: target: core: Fix null-ptr-deref in target_alloc_device() 2fe1384cbb7c net: ravb: Only advertise Rx/Tx timestamps if hardware supports it e9638d3e62dc ravb: Remove setting of RX software timestamp b94e5375ec66 genetlink: hold RCU in genlmsg_mcast() f8f8afc101f2 net: dsa: mv88e6xxx: Fix the max_vid definition for the MV88E6361 997ae8da14f1 tcp/dccp: Don't use timer_pending() in reqsk_queue_unlink(). 7218de0778ae net: bcmasp: fix potential memory leak in bcmasp_xmit() 1999a9e050c5 drm/msm/dpu: don't always program merge_3d block b18db3a4fa5f irqchip/renesas-rzg2l: Fix missing put_device 39cb86f19199 irqchip/renesas-rzg2l: Add support for suspend to RAM 0776b25d79d8 irqchip/renesas-rzg2l: Document structure members 05cc5e67dda8 irqchip/renesas-rzg2l: Align struct member names to tabs 4b70478b984a net: systemport: fix potential memory leak in bcm_sysport_xmit() 08b8f206de4c bpf: Fix truncation bug in coerce_reg_to_size_sx() b01fbbf38584 net: xilinx: axienet: fix potential memory leak in axienet_start_xmit() 0017189d6057 net/smc: Fix searching in list of known pnetids in smc_pnet_add_pnetid 79571c4d2f65 net: ethernet: aeroflex: fix potential memory leak in greth_start_xmit_gbit() 681ce79ab6fb netdevsim: use cond_resched() in nsim_dev_trap_report_work() 268446b40bb1 macsec: don't increment counters for an unrelated SA 65ca9f8ddc0d drm/amd/amdgpu: Fix double unlock in amdgpu_mes_add_ring a4bc03078eb3 octeontx2-af: Fix potential integer overflows on integer shifts e61fa0d66f22 net: stmmac: dwmac-tegra: Fix link bring-up sequence bc52115cc41a net: usb: usbnet: fix race in probe failure a17874a3a5ab net/smc: Fix memory leak when using percpu refs 95e3da26819d firmware: arm_scmi: Queue in scmi layer for mailbox implementation d4e44b8a6a18 drm/msm: Allocate memory for disp snapshot with kvzalloc() f7ad91627348 drm/msm: Avoid NULL dereference in msm_disp_state_print_regs() 33ece6c4f0c1 drm/msm/dsi: fix 32-bit signed integer extension in pclk_rate calculation 9f2361089152 drm/msm/dsi: improve/fix dsc pclk calculation dd58a5f8b308 drm/msm/dpu: check for overflow in _dpu_crtc_setup_lm_bounds() adde6c68bf1a drm/msm/dpu: make sure phys resources are properly initialized 1931dc14b537 accel/qaic: Fix the for loop used to walk SG table 5032bf57ab5d RDMA/bnxt_re: Fix the GID table length bf39b3532143 RDMA/bnxt_re: Update the BAR offsets 87cb3b0054e5 RDMA/bnxt_re: Fix a bug while setting up Level-2 PBL pages d517cadae6c3 RDMA/bnxt_re: Return more meaningful error 05c5fcc1869a RDMA/bnxt_re: Fix out of bound check 903f8b01c587 RDMA/bnxt_re: Fix the max CQ WQEs for older adapters 5fcf649e4334 RDMA/bnxt_re: Support new 5760X P7 devices 1ee5ef316a77 ipv4: give an IPv4 dev to blackhole_netdev 3a662cc5b5d5 RDMA/srpt: Make slab cache names unique af29c430a343 RDMA/irdma: Fix misspelling of "accept*" c29fd05329a9 RDMA/cxgb4: Fix RDMA_CM_EVENT_UNREACHABLE error for iWARP 6d91d07913ae firmware: arm_scmi: Fix the double free in scmi_debugfs_common_setup() 8971fd61210d ALSA: hda/cs8409: Fix possible NULL dereference 509c29d0d26f sched/core: Disable page allocation in task_tick_mm_cid() 380681a29066 task_work: Add TWA_NMI_CURRENT as an additional notify mode. a3fe89d4f5bb selftests/bpf: Fix cross-compiling urandom_read 923c5ded505c drm/vmwgfx: Handle possible ENOMEM in vmw_stdu_connector_atomic_check 119249d146d5 iio: frequency: admv4420: fix missing select REMAP_SPI in Kconfig 1b3090ca3265 iio: frequency: {admv4420,adrf6780}: format Kconfig entries 3e212996d21f bpf: fix kfunc btf caching for modules b56328660be0 s390/pci: Handle PCI error codes other than 0x3a 6617ae800cbb selftests/bpf: fix perf_event link info name_len assertion 0ce20181976d selftests/bpf: Add cookies check for perf_event fill_link_info test e909258d41b2 selftests/bpf: Use bpf_link__destroy in fill_link_info tests e5c2b971db09 bpf: fix unpopulated name_len field in perf_event link info cfd63c3a4538 bpf: Add cookie to perf_event bpf_link_info records 99bf10e92a3f bpf: Add missed value to kprobe perf link info f4381ccf1ed1 ARM: dts: bcm2837-rpi-cm3-io3: Fix HDMI hpd-gpio pin 9e3d07e503ea x86/resctrl: Avoid overflow in MB settings in bw_validate() b7bf17f4f92f RDMA/core: Fix ENODEV error for iWARP test over vlan c71957271f2e RDMA/bnxt_re: Add a check for memory allocation 7d10555a340a RDMA/bnxt_re: Fix incorrect AVID type in WQE structure 73e04a6114e0 RDMA/bnxt_re: Fix a possible memory leak 90ad4e2fe3a2 bpf: Fix memory leak in bpf_core_apply 978d1f63fc6e lib/Kconfig.debug: fix grammar in RUST_BUILD_ASSERT_ALLOW 8552150e5d80 cpufreq/amd-pstate: Fix amd_pstate mode switch on shared memory systems 49454f09936a bpf: devmap: provide rxq after redirect 0fca5ed4be8e bpf: Make sure internal and UAPI bpf_redirect flags don't overlap de1f0ab13915 iio: accel: bma400: Fix uninitialized variable field_value in tap event handling. 18abb2787b53 x86/syscall: Mark exit[_group] syscall handlers __noreturn 2879d995e569 pnmtologo: sync with 6.6 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 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: c7505c0387450c5467249828ec5c022f393b42a5) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>