summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
...
* linux/generate-cve-exclusions: fix mishandling of boundary valuesYuta Hayama2023-09-071-7/+7
| | | | | | | | | | | | | | | | | affected_versions in kernel_cves.json does not mean "first affected version to last affected version" but actually "first affected version to fixed version". Therefore, the variable names, conditional expressions, and CVE_STATUS descriptions should be fixed. For example, when the script was run against v6.1, if affected_versions was "xxx to 6.1", the output was "cpe-stable-backport: Backported in 6.1", but this should be "fixed-version: Fixed from version 6.1". (From OE-Core rev: 2064b2f9b92e2dff45dab633598b5ed37145d0b6) Signed-off-by: Yuta Hayama <hayama@lineo.co.jp> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-devsrc: Fixed missing loongarch64 kernel source code when ↵Zang Ruochen2023-09-071-0/+9
| | | | | | | | | | test_kernelmodules (From OE-Core rev: 754cf445b2670442cf94c9432b0a69141cc2a67d) Signed-off-by: Zang Ruochen <zangruochen@loongson.cn> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libgudev: explicitly disable tests and vapiRoss Burton2023-09-071-0/+2
| | | | | | | | | | | Explicitly disable the tests and vapi support instead of relying on defaults and missing dependencies. (From OE-Core rev: 575e2e29e00bb4492e7ee7f10b753e3f17982caa) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-firmware: add firmware files for NXP BT chipsetsTom Hochstein2023-09-071-0/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These BT only firmware files are submitted for NXP chips. 88w8997-bt: uartuart8997_bt_v4.bin version: 16.92.21.p81 helper_uart_3000000.bin version: 16.92.21.p81 88w8987-bt: uartuart8987_bt.bin version: 16.92.21.p76.5 88w9098-bt: uartuart9098_bt_v1.bin version: 17.92.1.p136.24 iw416-bt: uartiw416_bt_v0.bin version: 16.92.21.p81 iw611-bt / iw612-bt: uartspi_n61x_v1.bin.se version: 18.99.1.p154.40 These firmware files are downloaded over UART interface. The helper_uart_3000000.bin needs to be downloaded before uartuart8997_bt_v4.bin for 88w8997 chip to set download baudrate to 3000000. The above commit message is copied from the source commit message: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/nxp?id=1f82dd25c3ea59b6bed80ee685d860f0c5f19875 (From OE-Core rev: 4a6cf0b53346262872dd82a55d69a93a8d2e2cce) Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* busybox: remove coreutils dependency in busybox-ptestRoss Burton2023-09-073-1/+37
| | | | | | | | | | | | | | | | | A dependency on coreutils was added to busybox-ptest in oe-core 658c5ed to fix a test failure. The failure is because one of the start-stop-daemon tests is known to fail if /bin/false is busybox. Instead of failing, we can check if /bin/false is a symlink to busybox and skip the test if so. [ YOCTO #15068 ] (From OE-Core rev: 37482e404cf4dcf9360c29986ced8db78baf249b) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cve-exclusion: review the last of the historical kernel CVEsRoss Burton2023-09-072-14/+19
| | | | | | | | | | | | | | Review the last of the historical kernel CVEs. Issues which are specific to other platforms or distributions are ignored in the kernel recipe itself, whereas general security concerns like "ICMP leaks information" and "USB has flaws" are ignored with more details in the extra-exclusions file as before. (From OE-Core rev: fe1c0b9725f88d15ba48b02b5fef01f2cf2e9d78) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa selftest context.py: fix git commands and set branch nameMikko Rapeli2023-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | Check return values of each git command and set initial branch name to avoid this warning on every test run: NOTE: Starting bitbake server... hint: Using 'master' as the name for the initial branch. This default branch name hint: is subject to change. To configure the initial branch name to use in all hint: of your new repositories, which will suppress this warning, call: hint: hint: git config --global init.defaultBranch <name> hint: hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and hint: 'development'. The just-created branch can be renamed via this command: hint: hint: git branch -m <name> (From OE-Core rev: 5ec557467dda29309e25102b507bb919275bedbb) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa selftest context.py: remove warning from missing meta-selftestMikko Rapeli2023-09-071-1/+1
| | | | | | | | | | | It's not a warning but a handled case and layer gets added automatically. Very few build configs have this layer enabled by default. (From OE-Core rev: 9a2493ea83f0b30578a819de05108502aaadc7f5) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa selftest context.py: whitespace fixMikko Rapeli2023-09-071-2/+2
| | | | | | | (From OE-Core rev: 8aed3ca405cb3cc5d346eb8da8b3307d93f75d5b) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxkbcommon: add CVE_PRODUCTEmil Kronborg Andersen2023-09-071-0/+2
| | | | | | | (From OE-Core rev: a23a4a3f156f5758dc4d9dcf1ab27c74302eb2a8) Signed-off-by: Emil Kronborg Andersen <emkan@prevas.dk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dbus: add additional entries to CVE_PRODUCTEmil Kronborg Andersen2023-09-071-1/+1
| | | | | | | (From OE-Core rev: d50b395ceff3f30c30a10dba94fb340a547e434f) Signed-off-by: Emil Kronborg Andersen <emkan@prevas.dk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* webkitgtk: explicitly disable JIT for armv7* with softfpMartin Jansa2023-09-071-1/+13
| | | | | | | (From OE-Core rev: 9179fdfb4c0802b3744a9730a1f906110b3e5538) Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* wayland-utils: add libdrm PACKAGECONFIGRoss Burton2023-09-071-0/+3
| | | | | | | | | | wayland-utils has optional libdrm support, so add a PACKAGECONFIG and enable it. (From OE-Core rev: c6c488c259d1f38a05a71e576ca2f32d412413f1) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsoup: update PACKAGECONFIGRoss Burton2023-09-071-3/+16
| | | | | | | | | | | | | | | Add explicit PACKAGECONFIGs for brotli,ntlm, and sysprof. libsoup needs to be told where ntlm_auth will be on the target, so write a cross file to do so. Also explicitly disable more of the test suites as we don't build them yet. (From OE-Core rev: 945071cc31280d3bd164478b50e2970b6a42fd02) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsoup-2.4: update PACKAGECONFIGRoss Burton2023-09-071-3/+15
| | | | | | | | | | | | Add explicit PACKAGECONFIGs for brotli,ntlm, and sysprof. libsoup needs to be told where ntlm_auth will be on the target, so write a cross file to do so. (From OE-Core rev: 54b6ea078daeb58a3bb20bb4275d1140640a77d2) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pango: explictly enable/disable libthaiRoss Burton2023-09-071-1/+1
| | | | | | | | | Pango has had an explicit option since 1.46.2 (From OE-Core rev: 42755f135d2d015e564d783996fbb3ef860f2bf7) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* harfbuzz: update PACKAGECONFIGRoss Burton2023-09-071-1/+2
| | | | | | | | | | | Add a chafa PACKAGECONFIG so that we explicitly disable it, and update the graphite PACKAGECONFIG to use the graphite2 option as the old name is deprecated. (From OE-Core rev: d157e6eae6f72b8e4e0dbbc0ac4c8b008a813a92) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glib-2.0: libelf has a configure option now, specify itRoss Burton2023-09-071-2/+1
| | | | | | | | | GLib has had an option to control libelf since 2.67.0, so use it. (From OE-Core rev: d2f028c53a2390c28685b373841c9a600e91819a) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: update 3.8.0 -> 3.8.1Alexander Kanavin2023-09-072-6/+8
| | | | | | | (From OE-Core rev: 5f08d833669e96df5236773ae5a70bfb22f90b6b) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnupg: upgrade 2.4.2 -> 2.4.3Alexander Kanavin2023-09-074-4/+39
| | | | | | | (From OE-Core rev: 0c2365540ae61fe6fab61fb076ddb976ca26ce47) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libgudev: upgrade 237 -> 238Alexander Kanavin2023-09-074-2/+109
| | | | | | | | | Add patches to eudev to ensure compatibility with this version. (From OE-Core rev: 476ed3f57efb0f7a24651fecc7ddf6489e9ac78a) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gpgme: upgrade 1.20.0 -> 1.22.0Alexander Kanavin2023-09-072-55/+1
| | | | | | | | | Drop patch and --disable-lang-python-test option (upstream fixed the issue). (From OE-Core rev: b82836dd4bcfe017c66b26c44430f6aa7671e7ce) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libpthread-stubs: update 0.4 -> 0.5Alexander Kanavin2023-09-071-3/+2
| | | | | | | (From OE-Core rev: 7b67cb1914fd3da66ad626d0fb26891137b5c18f) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libglu: update 9.0.2 -> 9.0.3Alexander Kanavin2023-09-072-36/+5
| | | | | | | | | | | Drop backport. Set gl_provider explicitly, as upstream changed the default to glvnd. (From OE-Core rev: 3f8627d8367720ec3160b337f46b4d383ebf431d) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* groff: update 1.22.4 -> 1.23.0Alexander Kanavin2023-09-077-937/+42
| | | | | | | | | | | | | | | | | | | | | | Drop backports. Rebase 0001-Make-manpages-mulitlib-identical.patch groff-not-search-fonts-on-build-host.patch --without-doc has been removed upstream; replace that with a dependency on groff-native and substitution of groff executable from that. Drop serial make; this was introduced in 2010 without explanation and likely been solved long time ago. Set urw fonts directory to something bogus to avoid host contamination. (From OE-Core rev: 8ce301b6f62c3be4bdaf4fd03009e79095163010) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* perl: update 5.36.1 -> 5.38.0Alexander Kanavin2023-09-077-322/+68
| | | | | | | | | | | Rebase perl-configpm-switch.patch. Add a patch to perl-cross to unbreak perl's line numbers printing. (From OE-Core rev: f90922cdeef5a6a4b711c5be2156c05bdb20d5b5) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* perlcross: update 1.4.1 -> 1.5Alexander Kanavin2023-09-072-9/+7
| | | | | | | (From OE-Core rev: fc3318790e6dc32f5aa468956a85475556673fe9) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcgroup: update 3.0.0 -> 3.1.0Alexander Kanavin2023-09-072-59/+4
| | | | | | | (From OE-Core rev: 833e8d6fa0b4bdb82baa3dbf0ebd77daaa11efe7) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* connman: update 1.41 -> 1.42Alexander Kanavin2023-09-077-553/+4
| | | | | | | | | | | Drop backports. 0001-vpn-Adding-support-for-latest-pppd-2.5.0-release.patch is partially dropped, as upstream hasn't included the newly added header into the tarball (issue addressed after the release). (From OE-Core rev: eeb686876dc560b5f0fab6f37a2def3d78bb55db) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gettext: upgrade 0.21.1 -> 0.22Alexander Kanavin2023-09-0711-52/+3
| | | | | | | | | Drop autoconf-2.73.patch as upstream did update the gnulib. (From OE-Core rev: 7c29196f8e378cb12b82da31ab2a05f5e8d1b831) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* openssl: build and install manpages only if they are enabledAlexander Kanavin2023-09-071-2/+3
| | | | | | | | | This significantly speeds up the build by default. (From OE-Core rev: 2b5ee583c62dbe381cd429da14ecbba5ea32d506) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mdadm: Disable further tests due to intermittent failuresRichard Purdie2023-09-071-0/+5
| | | | | | | | | I took the mdadm ptest enabling as I was told the tests were fine now. They're not. Disable more of them as having intermittent issues. (From OE-Core rev: 2993a0bd6aca81d4382c3de5ac2fd9b5dac94868) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-sphinx: upgrade 7.1.1 -> 7.2.5Trevor Gamblin2023-09-071-1/+1
| | | | | | | | | Changelog: https://github.com/sphinx-doc/sphinx/blob/master/CHANGES (From OE-Core rev: 499a44748dea92f1484d7a64b88eac8430764b88) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-pytest: upgrade 7.4.0 -> 7.4.1Trevor Gamblin2023-09-071-1/+1
| | | | | | | | | Changelog: https://docs.pytest.org/en/7.4.x/changelog.html (From OE-Core rev: ba9e10da8887a2f6d1bf1e873c3e6e73a83b6c91) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-hypothesis: upgrade 6.82.7 -> 6.84.0Trevor Gamblin2023-09-071-1/+1
| | | | | | | | | Changelog: https://hypothesis.readthedocs.io/en/latest/changes.html (From OE-Core rev: e36fc29136c8af011ec503563d54664c03580c06) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-git: upgrade 3.1.32 -> 3.1.34Trevor Gamblin2023-09-071-1/+1
| | | | | | | | | | | | Changelog: https://github.com/gitpython-developers/GitPython/blob/main/doc/source/changes.rst 3.1.34 fixes a resource leak by properly closing a lockfile after opening. (From OE-Core rev: 14b55da3fcea9507a5a7b8dfcf8aae8abe124e4a) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-poetry: upgrade 1.6.1 -> 1.7.0Trevor Gamblin2023-09-071-2/+1
| | | | | | | | | | | | Changelog: https://github.com/python-poetry/poetry-core/blob/main/CHANGELOG.md typing_extensions was removed in commit a06650d when support for Python 3.7 was dropped, so that specific md5sum isn't required anymore. (From OE-Core rev: af77c711ce39bac1253121fc318fab1a4a07c82e) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-build: upgrade to 1.0.0Ross Burton2023-09-071-1/+1
| | | | | | | (From OE-Core rev: 8f22d09d1f3d206c459862d80b7add5700344d90) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rust-target-config: Map rust target to OE targetKhem Raj2023-09-071-0/+2
| | | | | | | (From OE-Core rev: caca883b524a767d970d934744b0f2b0ef743e20) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qemuloongarch.inc:Change to use virtio-serial-pciZang Ruochen2023-09-071-2/+2
| | | | | | | | | | If virtio-serial-device is used, the following error occurs on loongarch64: qemu-system-loongarch64: -device virtio-serial-device: No "virtio-bus" bus found for device "virtio-serial-device" (From OE-Core rev: 08734ec0c2083e90207559ecc659809b86b8779d) Signed-off-by: Zang Ruochen <zangruochen@loongson.cn> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* goarch.bbclass: Add loongarch64 to go_map_archZang Ruochen2023-09-071-0/+2
| | | | | | | (From OE-Core rev: 97010a9c1b2bfc7ea01441f37c0682bc5cd4349b) Signed-off-by: Zang Ruochen <zangruochen@loongson.cn> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gcc-sanitizers: Add loongarch as a compatible architecture.Zang Ruochen2023-09-071-2/+2
| | | | | | | | | https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=600413c4f3d70392285192fb99634bcbeb97f83f (From OE-Core rev: 50649aa576b161751fd9b11ed98fe4a26b0781f8) Signed-off-by: Zang Ruochen <zangruochen@loongson.cn> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tcf-agent: Disable non-building features on loongarch64Zang Ruochen2023-09-071-0/+1
| | | | | | | (From OE-Core rev: 59401a737d21c82336dcec38dbed7d939602d1ee) Signed-off-by: Zang Ruochen <zangruochen@loongson.cn> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meson: don't fail if no .pyc existsYang Xu2023-09-071-1/+1
| | | | | | | | | | | | If PYTHONDONTWRITEBYTECODE set to 1, do_install:append will fail because no .pyc is removed. Add -f flag to prevent command fail. (From OE-Core rev: 2073b6f14f39c71199c07a1ba181b67984421a10) Signed-off-by: Yang Xu <yang.xu@mediatek.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* openssh: capture ptest regression test failure logsMikko Rapeli2023-09-072-0/+35
| | | | | | | | | | | | | When tests fail, capture the sshd and ssh client logs from the failing test run. These are needed to investigate the root cause. Reference: https://bugzilla.yoctoproject.org/show_bug.cgi?id=15178 (From OE-Core rev: 7c6a0ee7961dc976dddbfd1615f90c2306970626) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qemu-system-native: enable PNG supportRoss Burton2023-09-071-1/+1
| | | | | | | | | | It might be useful to grab screenshots from qemu-system-native (for example, for QA purposes). (From OE-Core rev: ff8a2edb396dfe2e9be37ddda38eaa76e63874a2) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glib-2.0: explicitly enable strlcpy()Ross Burton2023-09-071-0/+1
| | | | | | | | | | | We have glibc 2.38 which added strlcpy(), so enable the use of it explicitly in the Meson cross file for when the target doesn't support qemu-usermode (which will result in the default of not using it). (From OE-Core rev: b29028a12cfa6747ba83e63e03e4ec9c8064c667) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.1: update to v6.1.51Bruce Ashfield2023-09-073-20/+20
| | | | | | | | | | | | | | | | | | | | | | | Updating to the latest korg -stable release that comprises the following commits: c2cbfe5f5122 Linux 6.1.51 ae0188f9c2a8 thunderbolt: Fix a backport error for display flickering issue 583a8426abb3 kallsyms: Fix kallsyms_selftest failure 5d54040e9d57 io_uring/parisc: Adjust pgoff in io_uring mmap() for parisc fff21bc26bbd parisc: sys_parisc: parisc_personality() is called from asm code e8ac4be71701 parisc: Cleanup mmap implementation regarding color alignment b3d099df68de lockdep: fix static memory detection even more 1cb79e7e0572 ARM: module: Use module_init_layout_section() to spot init sections 8d99105d6a10 arm64: module: Use module_init_layout_section() to spot init sections 42efdb3531ab arm64: module-plts: inline linux/moduleloader.h 207e228bf1f3 module: Expose module_init_layout_section() b0dc0aac2085 ACPI: thermal: Drop nocrt parameter (From OE-Core rev: ade4bf6b95aca4c168c3d33c2bcfc429f41d49b8) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.4: update to v6.4.14Bruce Ashfield2023-09-073-20/+20
| | | | | | | | | | | | | | | | | | | | | | Updating to the latest korg -stable release that comprises the following commits: babc8be398c3 Linux 6.4.14 9a3ac3bf4dbf thunderbolt: Fix a backport error for display flickering issue bb899e081c6c kallsyms: Fix kallsyms_selftest failure ebc51587d0c5 parisc: sys_parisc: parisc_personality() is called from asm code 895af97c9792 lockdep: fix static memory detection even more 98e4c99b0576 ARM: module: Use module_init_layout_section() to spot init sections 41ecb281f7c2 arm64: module: Use module_init_layout_section() to spot init sections 49b7dbeddff3 arm64: module-plts: inline linux/moduleloader.h 05dae005f50a module: Expose module_init_layout_section() d65d7487c1c2 module/decompress: use vmalloc() for zstd decompression workspace bf50fc751c46 ACPI: thermal: Drop nocrt parameter (From OE-Core rev: 2fb2c8e9e40b0c4bcec8604e07338affaa1df866) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.4: update to v6.4.13Bruce Ashfield2023-09-073-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating to the latest korg -stable release that comprises the following commits: 388f6d150784 Linux 6.4.13 734cf5795f4b netfilter: nf_tables: fix kdoc warnings after gc rework ae2d1461ebcc TIOCSTI: Document CAP_SYS_ADMIN behaviour in Kconfig 259ff81cee3c ASoC: amd: vangogh: select CONFIG_SND_AMD_ACP_CONFIG d641fa9fc8fc maple_tree: disable mas_wr_append() when other readers are possible 163d62238efc ASoC: amd: yc: Fix a non-functional mic on Lenovo 82SJ 45bb78bc2f57 gpio: sim: pass the GPIO device's software node to irq domain 14540aa3eaba gpio: sim: dispose of irq mappings before destroying the irq_sim domain c6e1fcd50cbc dma-buf/sw_sync: Avoid recursive lock during fence signal 8c776cd8f1db pinctrl: renesas: rza2: Add lock around pinctrl_generic{{add,remove}_group,{add,remove}_function} 3efa0b7fc28d pinctrl: renesas: rzv2m: Fix NULL pointer dereference in rzv2m_dt_subnode_to_map() a1f12138b17d pinctrl: renesas: rzg2l: Fix NULL pointer dereference in rzg2l_dt_subnode_to_map() 66bb9745f96e ASoC: cs35l56: Read firmware uuid from a device property instead of _SUB 5e9db7d4d3bc ASoC: SOF: ipc4-pcm: fix possible null pointer deference dd07e9de2d82 clk: Fix undefined reference to `clk_rate_exclusive_{get,put}' 686c9e8221f8 scsi: core: raid_class: Remove raid_component_add() 2684b97b01eb scsi: ufs: ufs-qcom: Clear qunipro_g4_sel for HW major version > 5 43dc0a70ed1e scsi: snic: Fix double free in snic_tgt_create() 54fce635ee7f madvise:madvise_free_pte_range(): don't use mapcount() against large folio for sharing check 63f230177510 madvise:madvise_cold_or_pageout_pte_range(): don't use mapcount() against large folio for sharing check 26a2b7cec0dd drm/i915: Fix error handling if driver creation fails during probe 0a47ffcac3c5 can: raw: add missing refcount for memory leak fix 06614ca4f18e thunderbolt: Fix Thunderbolt 3 display flickering issue on 2nd hot plug onwards efe4d998330a PCI: acpiphp: Use pci_assign_unassigned_bridge_resources() only for non-root bus f80b4b818e5e media: vcodec: Fix potential array out-of-bounds in encoder queue_setup 423e75565761 pinctrl: amd: Mask wake bits on probe again ce2e8904a817 of: dynamic: Refactor action prints to not use "%pOF" inside devtree_lock d92815c542d7 of: unittest: Fix EXPECT for parse_phandle_with_args_map() test fa700d9cda9a radix tree: remove unused variable 8f6813c62d2f riscv: Fix build errors using binutils2.37 toolchains 1b7ac88ef2e4 riscv: Handle zicsr/zifencei issue between gcc and binutils 5039e4afc050 lib/clz_ctz.c: Fix __clzdi2() and __ctzdi2() for 32-bit kernels d64a94bc6ef7 ACPI: resource: Fix IRQ override quirk for PCSpecialist Elimina Pro 16 M 4cb9ace298f3 batman-adv: Hold rtnl lock during MTU update via netlink 55d18e4b2bfe batman-adv: Fix batadv_v_ogm_aggr_send memory leak e265dca9ba59 batman-adv: Fix TT global entry leak when client roamed back 5effaa05704a batman-adv: Do not get eth header before batadv_check_management_packet 1f82cd26c650 batman-adv: Don't increase MTU when set by user 2c783344218d batman-adv: Trigger events for auto adjusted MTU 21cd99431aae selinux: set next pointer before attaching to list 14fa028a2e63 nfsd: Fix race to FREE_STATEID and cl_revoked a3a91119964d NFS: Fix a use after free in nfs_direct_join_group() c8df36eedb65 nilfs2: fix general protection fault in nilfs_lookup_dirty_data_buffers() bca3e63be00e mm: multi-gen LRU: don't spin during memcg release 56d11051190d mm: memory-failure: fix unexpected return value in soft_offline_page() 22178c6e6c2d mm: add a call to flush_cache_vmap() in vmap_pfn() 0677bed47996 cgroup/cpuset: Free DL BW in case can_attach() fails d1cfa53e5e4e sched/deadline: Create DL BW alloc, free & check overflow interface c95a751498c9 cgroup/cpuset: Iterate only if DEADLINE tasks are present 74fac5bb0d37 sched/cpuset: Keep track of SCHED_DEADLINE task in cpusets 00f3719c85bf sched/cpuset: Bring back cpuset_mutex 4d17b2ea4ee6 cgroup/cpuset: Rename functions dealing with DEADLINE accounting aefabccb1334 drm/i915: fix display probe for IVB Q and IVB D GT2 server 6621912f4221 drm/i915/display: Handle GMD_ID identification in display code 517771333fd4 x86/fpu: Set X86_FEATURE_OSXSAVE feature after enabling OSXSAVE in CR4 4b04c422ea8d x86/fpu: Invalidate FPU state correctly on exec() 0c2a9b7ba1b8 LoongArch: Fix hw_breakpoint_control() for watchpoints 8771f80bafa3 drm/i915: Fix HPD polling, reenabling the output poll work as needed 40b67b55337a drm/display/dp: Fix the DP DSC Receiver cap size 503d787d303e drm/i915/dgfx: Enable d3cold at s2idle dd8683e0af50 drm/panfrost: Skip speed binning on EOPNOTSUPP 933f1fc826a5 drm: Add an HPD poll helper to reschedule the poll work 6969e4500d86 drm/vmwgfx: Fix possible invalid drm gem put calls 5574b0cbb493 drm/vmwgfx: Fix shader stage validation 980cde3ac4bb mm/gup: handle cont-PTE hugetlb pages correctly in gup_must_unshare() via GUP-fast 2106dae0f19d mm/gup: reintroduce FOLL_NUMA as FOLL_HONOR_NUMA_FAULT a55dd240a9f1 mm: enable page walking API to lock vmas during the walk 2dcc0e4b3c1c selftests/mm: FOLL_LONGTERM need to be updated to 0x100 c02c4e76ccb9 ALSA: ymfpci: Fix the missing snd_card_free() call at probe error 6218f967d579 shmem: fix smaps BUG sleeping while atomic 535cdce0713e mm,ima,kexec,of: use memblock_free_late from ima_free_kexec_buffer c856ff4acd94 clk: Fix slab-out-of-bounds error in devm_clk_release() ed2e9e10a130 NFSv4: Fix dropped lock for racing OPEN and delegation return ed29b5fbf07f platform/x86: ideapad-laptop: Add support for new hotkeys found on ThinkBook 14s Yoga ITL 3bdeb65ca9c8 platform/x86: lenovo-ymc: Add Lenovo Yoga 7 14ACN6 to ec_trigger_quirk_dmi_table 28eee9b4e819 wifi: mac80211: limit reorder_buf_filtered to avoid UBSAN warning a3009e19f09b ibmveth: Use dcbf rather than dcbfl 06a128cbe40e spi: spi-cadence: Fix data corruption issues in slave mode 28b605e939b3 ASoC: cs35l41: Correct amp_gain_tlv values 8c7fd1baeed0 ASoC: amd: yc: Add VivoBook Pro 15 to quirks list for acp6x 1cc2d9685043 bonding: fix macvlan over alb bond support abdf60d759f7 rtnetlink: Reject negative ifindexes in RTM_NEWLINK beceaf2e5e33 netfilter: nf_tables: defer gc run if previous batch is still pending 16cc42cc00fb netfilter: nf_tables: fix out of memory error handling e05b2a9f03b3 netfilter: nf_tables: use correct lock to protect gc_list e07e68823116 netfilter: nf_tables: GC transaction race with abort path 4167aa477abc netfilter: nf_tables: flush pending destroy work before netlink notifier e290509f8be5 netfilter: nf_tables: validate all pending tables 711ffb6fa5a0 i40e: fix potential NULL pointer dereferencing of pf->vf i40e_sync_vsi_filters() 7ac409385e1c net/sched: fix a qdisc modification with ambiguous command request 0717a95ba5ca igc: Fix the typo in the PTM Control macro 8fe9d54f7ad4 igb: Avoid starting unnecessary workqueues ecebc0841362 can: isotp: fix support for transmission of SF without flow control 65009906dff2 net: ethernet: mtk_eth_soc: fix NULL pointer on hw reset d56f8304bcc4 tg3: Use slab_build_skb() when needed be7d58c9a203 selftests: bonding: do not set port down before adding to bond b995365bbdd8 ice: Fix NULL pointer deref during VF reset 929892877620 Revert "ice: Fix ice VF reset during iavf initialization" 8aa038c25042 ice: fix receive buffer size miscalculation abee4c8eb778 ipv4: fix data-races around inet->inet_id 3844e0c55977 net: validate veth and vxcan peer ifindexes 691799211bf1 net: bcmgenet: Fix return value check for fixed_phy_register() d3a74a85fbb4 net: bgmac: Fix return value check for fixed_phy_register() a7cecd332c9e net: mdio: mdio-bitbang: Fix C45 read/write protocol 7e7b2b50dcd9 net: dsa: mt7530: fix handling of 802.1X PAE frames b457f312e78e selftests: mlxsw: Fix test failure on Spectrum-4 747e71ff06bf mlxsw: Fix the size of 'VIRT_ROUTER_MSB' 5a76c5256501 mlxsw: reg: Fix SSPR register layout 40ffbae5312a mlxsw: pci: Set time stamp fields also when its type is MIRROR_UTC 3f5a3e027410 ipvlan: Fix a reference count leak warning in ipvlan_ns_exit() 056e0ce1f1c0 dccp: annotate data-races in dccp_poll() 2a7d2f2b8c2c sock: annotate data-races around prot->memory_pressure b8bcc45afcd3 net: dsa: felix: fix oversize frame dropping for always closed tc-taprio gates e3b4e5276ccd devlink: add missing unregister linecard notification 0f0dd7b19ec6 octeontx2-af: SDP: fix receive link config 2242640e9bd9 tracing: Fix memleak due to race between current_tracer and trace 49834a2c43d5 tracing/synthetic: Allocate one additional element for size 009e77a91690 tracing/synthetic: Skip first entry for stack traces 5c2d886ea8cd tracing/synthetic: Use union instead of casts 299e0033f1bd tracing: Fix cpu buffers unavailable due to 'record_disabled' missed f3acc61309e0 wifi: iwlwifi: mvm: add dependency for PTP clock 7f35e5611730 can: raw: fix lockdep issue in raw_release() c8ddbaec835a can: raw: fix receiver memory leak 019b59aeb2af jbd2: fix a race when checking checkpoint buffer busy 557fda9ed70e jbd2: remove journal_clean_one_cp_list() 2968fec1d56f jbd2: remove t_checkpoint_io_list 1d9995c2ac80 PCI: acpiphp: Reassign resources on bridge if necessary a7342df30797 xprtrdma: Remap Receive buffers after a reconnect ef65498c8087 NFSv4: fix out path in __nfs4_get_acl_uncached 9e2388d814ac NFSv4.2: fix error handling in nfs42_proc_getxattr (From OE-Core rev: 7ae3cca2dcb48b524ca504c0d135d7fba365610e) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>