summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-11-11common-tasks: update for new testexport inherit styleross/armselftestRoss Burton
testexport.bbclass should be inherited via IMAGE_CLASSES. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11classes/testexport: move to classes-recipeRoss Burton
This class should be in classes-recipe as, like testimage, it is specific to image recipes. This also solves a regression where simply IMAGE_CLASSES += "testexport" doesn't work if testimage isn't already in IMAGE_CLASSES. The testexport class adds testimage to IMAGE_CLASSES, but by this point it's too late. Now that the class can only be inherited via IMAGE_CLASSES, we can simply inherit testimage directly. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/wic: use skipIfNotArch instead of custom decoratorRoss Burton
There's now a shared decorator for architecture skipping, so use that. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/wic: skip more tests on aarch64Ross Burton
test_rawcopy_plugin_qemu and test_wic_image_type are x86-specific currently as the .wks uses x86-specific bootloaders. This can be fixed, but that can come later. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/runtime_test: only run the virgl tests on qemux86-64Ross Burton
These tests should be able to work on qemuarm64, but this is untested and the runners will need configuration. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/runqemu: don't hardcode qemux86-64Ross Burton
Don't hardcode qemux86-64. This has some complications: the IMAGE_FSTYPES needs to be constructed to reflect what the machine can do (only x86 machines can build ISO images), and several tests which need a wic file are currently limited to qemux86-64. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/package: improve test_preserve_ownershipRoss Burton
This test was failing very oddly in qemuarm64 runs. Rewriting the test to be clearer and less fragile fixed it. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/package: generalise test_gdb_hardlink_debug()Ross Burton
When the trivial test binary, which just calls printf(), is compiled for aarch64 with -O2 -D_FORTIFY=2 (as is the default configuration), gdb resolves main() to the inlined printf() wrapper in stdio2.h instead of main.c, so the test fails. Presumably, this is due to debugging being unreliable with -O2. Solve this problem by not caring where the main() breakpoint resolves to, just check that it was resolved at all. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/overlayfs: overlayfs: skip x86-specific testsRoss Burton
For now, not all machines have a default wks file, so mark the tests which need a wks as being specific to qemux86-64. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/imagefeatures: set a .wks in test_fs_typesRoss Burton
Set WKS_FILE to wictestdisk.wks, which is a very simple Wic file that simply contains the root filesystem. It may not actually boot but this test doesn't care, and it does exercise the wic image construction on all machines. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/imagefeatures: don't use wic images in test_hypervisor_fmtsRoss Burton
There's no need to build a wic image in this test as not all machines (such as qemuarm64 currently) have wic images out of the box. We can simply build ext4 images to work on more machines and save some time. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/imagefeatures: remove hardcoded MACHINE in test_image_gen_debugfsRoss Burton
There's no need for this to be built for genericx86-64, we want to test the current MACHINE. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/efibootpartition: improve testRoss Burton
This test was overly complex with a setUp() method for a single test case, which was marked as a class function for no good reason. Generalise the test so that it has the possibility of working on more machines in the future, add a decorator so that it only runs on qemux86-64, and respect QEMU_USE_KVM to speed up test execution. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/selftest/buildoptions: skip test_read_only_image on qemuarm64Ross Burton
qemuarm64 currently uses SERIAL_CONSOLES_CHECK but this is incompatible with read-only rootfs under sysvinit. Until qemuarm64 doesn't use this, skip the test on qemuarm64. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/core/decorator: add decorators to skip based on HOST_ARCHRoss Burton
There are already decorators to skip on the value of MACHINE, but for flexibility it's better to skip based on the target architecture. This means, for example, the ISO image tests could skip if the architecture isn't x86. Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-11oeqa/qemurunner: update exception class for QMP API changesRoss Burton
Signed-off-by: Ross Burton <ross.burton@arm.com>
2022-11-10release-notes: use oe_git and yocto_git macrosMichael Opdenacker
As in the rest of the manuals; this is more future proof than using hard coded URLs. While doing this, also replacing https://git.yoctoproject.org/git/<repo> links (used by mistake instead of https://git.yoctoproject.org/<repo>) by :yocto_git:`/repo`. (From yocto-docs rev: ac844062400a7bf4732ea6ee639a478b1b77b83e) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10ref-manual/variables.rst: expand PARALLEL_MAKE descriptionMichael Opdenacker
Explain that this variable apply not only to make, but also to ninja, and to other build tools which support parallel jobs. (From yocto-docs rev: d3fe2aba3948040a01b9068df5085453ad65309c) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10ref-manual/variables.rst: expand BB_NUMBER_THREADS descriptionMichael Opdenacker
Explain that reducing its value to reduce system load is not sufficient if PARALLEL_MAKE is not reduced as well. (From yocto-docs rev: f4986faa5576ec1c146e606220421a686c4a9b57) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10qemu.rst: audio: reference to Command-Line optionsAtanas Bunchev
The previous statement can cause confusion, because this is the first time when the `audio` argument is mentioned. (From yocto-docs rev: c8aa98a4b21d056ebf49b8ab43838989e9185c81) Signed-off-by: Atanas Bunchev <atanas.bunchev@konsulko.com> Reviewed-by: Quentin Schulz <foss+yocto@0leil.net> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10docs: poky.yaml.in: remove pylint3 from Ubuntu/Debian host dependenciesQuentin Schulz
It is not actually needed outside of the autobuilder and since the package got renamed in Ubuntu 20.04 and later to pylint, it was giving the users an incorrect command line to run and would fail all the time, better remove it instead of trying to handle Debian/recent Ubuntu differences in the documentation. Moreover, the other supported host distributions didn't have pylint listed as a dependency, proving that it's indeed not needed. Cc: Quentin Schulz <foss+yocto@0leil.net> (From yocto-docs rev: 9f255dc3c32a4c9b2185e6448bde3357fd5135b2) Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10docs: ref-manual: classes: add missing closing parenthesisQuentin Schulz
The closing parenthesis is missing in the sentence so let's add it. Cc: Quentin Schulz <foss+yocto@0leil.net> (From yocto-docs rev: 93bb2654905ad7f32082bb7acd3630ef390dc4b9) Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10docs: ref-manual: classes: fix section name for github-releasesQuentin Schulz
All other classes are suffixed with .bbclass so let's stay consistent and add it to github-releases section too. Cc: Quentin Schulz <foss+yocto@0leil.net> (From yocto-docs rev: 461bc36839278e69a3d2511ca15fae80a6140d77) Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10migration guides: add release notes for 4.0.5Lee Chee Yang
(From yocto-docs rev: f464b17b8c2cd29d6c1a9417c3b9d0956323ab0e) Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10bitbake: data_smart: allow python snippets to include a dictionaryMark Asselstine
[YOCTO #14917] Attempting to use a dictionary in a python code snippet for variable assignment results in an error. For example attempting something such as IDX = "green" VAL = "${@{ 'green': 1, 'blue': 2 }[d.getVar('IDX')]}" produces the error expansion of VAL threw ExpansionError: Failure expanding variable VAL, expression was ${@{ 'green': 1, 'blue': 2 }[d.getVar('IDX')]} which triggered exception SyntaxError: '{' was never closed (Var <VAL>, line 1) The existing __expand_python_regexp__, "\${@.+?}", will match the first close curly bracket encountered, resulting in incomplete and un-parsable code, and thus produce the error. We can correct this by allowing a single depth of nested curly brackets in __expand_python_regexp__ by using "\${@(?:{.*?}|.)+?}", which will match up to and including the matching close curly bracket to the open, '${@', curly bracket, even if there are one or more singly nested curly brackets present. This change allows the usecase described above to function. This change can't be made on its own though. The old regex would, in an obscure way, handle the case where a python snippet contained an unexpandable variable. Since the unexpandable variable is in curly brackets it would cause incomplete/un-parsable python code and thus remain unparsed. So something like VAL = "${@d.getVar('foo') + ${unsetvar}}" would remain unparsed as the close curly bracket in "${unsetvar}" would match and terminate the snippet prematurely. This quirk resulted in the proper handling of python snippets with unexpanded variables. With the change to __expand_python_regexp__ the full snippet will match and be parsed, but to match the old/correct behavior we would not want to parse it until ${unsetvar} can be expanded. To ensure the old/correct behavior for python snippets with unexpanded variables remains in place we add a check for unexpanded variables in the python snippets before running them. This handling of unparsed variables brings two benefits. The first we now have an explicit check visible to all for unexpanded variables instead of a somewhat hidden behavior. The second is that if there are multiple python snippets the old behavior would run the code for each but a single snippet with unexpanded variables would mean all snippets would remain unparsed, meaning more and repeated processing at a later time. For example: "${@2*2},${@d.getVar('foo') ${unsetvar}}" old behavior would give: "${@2*2},${@d.getVar('foo') ${unsetvar}}" new behavior will give: "4,${@d.getVar('foo') ${unsetvar}}" The old behavior would calculate '2*2' but toss the result when the second snippet would fail to parse resulting in future recalculations (or fetching from cache), while the new behavior avoids this. (Bitbake rev: 94e49b9b9e409c29eb04603b1305d96ebe661a4b) Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10bitbake: data: drop unused __expand_var_regexp__ and __expand_python_regexp__Mark Asselstine
First, commit 81efd77987f6decf256967fa16521a40c14d3518 created a copy of __expand_var_regexp__ and __expand_python_regexp__ when creating the initial version of data_smart.py. A while later commit db1c998b31da06d7f3eb09fc6f59a1915b7b549e dropped all references to these variables from data.py. This leaves us today with two versions of these variables in the global scope. However, only those defined in data_smart.py are being used, in data_smart.py. Unfortunately there was no indication in the commit log for commit db1c998b31da indicating why the variables were left in place despite the functions referencing them were being removed. Additionally data.py imports data_smart, thus the versions of __expand_var_regexp__ and __expand_python_regexp__ defined in data_smart.py would be used by all bitbake code, beyond, potentially, some code in data.py which we know has no references to these variables. To remove any potential confusion around these variables drop the old definitions from data.py. (Bitbake rev: 60f43d0428d43c981b44b6c8d125f77440f6c8f9) Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10pango: Make it build with ptest disabledPeter Kjellerstedt
This avoids the following error: ERROR: pango-1.50.11-r0 do_package: QA Issue: pango: Files/directories were installed but not shipped in any package: /usr/libexec /usr/libexec/installed-tests /usr/libexec/installed-tests/pango /usr/libexec/installed-tests/pango/nofonts /usr/libexec/installed-tests/pango/nofonts/fonts.conf Also use tabs for indentation of shell code. (From OE-Core rev: d4bcd4050a6a9b6b1cb8e68b2053523cc0501814) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-10python3: correctly adjust include paths in sysconfigdataAlexander Kanavin
This was replacing /usr/include regardless of whether it was at the beginning of the full path (correct, when building target python3), or in the middle of it (not correct, when building native or nativesdk python). Through various reasons we haven't been bitten by this until now, but latest setuptools does expose the problem with for example nativesdk-python3-cffi and nativesdk-python3-cryptography which both fail without this fix. I am not aware of anything using INCLDIRSTOMAKE, and it is harder to adjust correctly due to the value being a list; if something is using it, we can look at it specifically. (From OE-Core rev: 4055dd6cc89af16b3723e38b63d4d81efb0e2286) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-09linux-firmware: don't put the firmware into the sysrootRoss Burton
There's no need to have linux-firmware in the sysroot. The sysroot won't ever be used anyway as nothing needs the firmware at build-time, but this saves us building a ~900MB sysroot (~300MB sstate tarball). (From OE-Core rev: 26ed998c4f201c5cacf330f52e51e416afbd300c) 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>
2022-11-09oeqa/selftest/lic_checksum: Cleanup changes to emptytest includeNathan Rossi
Config written to the emptytest include file is invalid after the test has cleaned up its temporary directories resulting in the emptytest recipe potentially having invalid content when parsed by successive bitbake runs. This presents the following error in tests after lic_checksum execution, e.g. 'oe-selftest -r lic_checksum recipetool' ERROR: .../emptytest.bb: Unable to get checksum for emptytest SRC_URI entry tmpn_nyosnq: file could not be found Remove the recipe include content once the bitbake runs are completed in each lic_checksum test case. (From OE-Core rev: 087df767a64b271b503d714df3df6d8b3caad1c0) Signed-off-by: Nathan Rossi <nathan.rossi@digi.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-09stress-ng: improve makefile useRoss Burton
Set VERBOSE=1 so the compile logs are useful, perform the configure in do_configure, and set bindir correctly. (From OE-Core rev: 51fd68954dde1af9cfd5c8b38f5e8f5e852deaaf) 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>
2022-11-09populate_sdk_ext: use ConfigParser instead of SafeConfigParserRoss Burton
SafeConfigParser was renamed to ConfigParser in 3.2, and the SafeConfigParser alias will be removed in 3.12. (From OE-Core rev: 71b3e7f71727137b4b996cc4160c9cc1581824b8) 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>
2022-11-08selftest: add a copy of previous mtd-utils version to meta-selftestAlexander Kanavin
The latest version update eliminated all custom patches, and the selftest expects them. (From OE-Core rev: 95298a7f1ad29c0fc0d02772d646116709ac355f) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08shaderc: upgrade 2022.2 -> 2022.3Alexander Kanavin
(From OE-Core rev: ed5a7af5440488e8ac39e23f6d3e016c64d3e24c) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08gstreamer1.0: upgrade 1.20.3 -> 1.20.4Alexander Kanavin
(From OE-Core rev: 58e4825328dafd7f593d9eb42be5506408627a31) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08vulkan: upgrade 1.3.224.1 -> 1.3.231.1Alexander Kanavin
Update 0001-generate-glslang-pkg-config.patch to omit libraries that are no longer present (their functionality has been folded into glslang library itself). (From OE-Core rev: 354f1c4013f3b7ee78d6f4ed6209d6b549184057) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08pixman: upgrade 0.40.0 -> 0.42.2Alexander Kanavin
(From OE-Core rev: 4084839ce550a777c93a3481e7db442ddb4ae1f0) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08pango: upgrade 1.50.10 -> 1.50.11Alexander Kanavin
(From OE-Core rev: a330e75f90841cd230180d8a9b37e58d7d69c495) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08alsa-lib: upgrade 1.2.7.2 -> 1.2.8Alexander Kanavin
(From OE-Core rev: 0bd006eb7b4652d0287ecae8614cdeee00a5a7b6) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08sudo: upgrade 1.9.11p3 -> 1.9.12Alexander Kanavin
License-Update: copyright years (From OE-Core rev: 4ad997fa4df80d543ac5dabe61f292f5819da302) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08mpg123: upgrade 1.30.2 -> 1.31.1Alexander Kanavin
(From OE-Core rev: 4203b5a31ae067d54980189570beb480dd33e94e) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08netbase: upgrade 6.3 -> 6.4Alexander Kanavin
License-Update: formatting, copyright years (From OE-Core rev: 3a4d6dba72bfce498af89b48ee464584b57b7695) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08harfbuzz: upgrade 5.3.0 -> 5.3.1Alexander Kanavin
(From OE-Core rev: 7d40cf6836edc55878b1ec54f2d6818d0e1b8408) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08gdk-pixbuf: upgrade 2.42.9 -> 2.42.10Alexander Kanavin
(From OE-Core rev: 01e1828f8e5bcb0ad88b89fe783c2973480695bb) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08libsoup-2.4: upgrade 2.74.2 -> 2.74.3Alexander Kanavin
(From OE-Core rev: 15ae164308a6a7331d5e009f9a1796449a4ce0c3) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08mmc-utils: upgrade to latest revisionAlexander Kanavin
(From OE-Core rev: 779d10a8302ce1f4550ca2114f5cec67c7bf5245) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08diffoscope: upgrade 221 -> 224Alexander Kanavin
(From OE-Core rev: f3d5dae25aca7bc63cdb33a6202cb35e9815274a) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08makedepend: upgrade 1.0.6 -> 1.0.7Alexander Kanavin
(From OE-Core rev: 27050c43415f99ff47da5f011f3fe56ab4a99590) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08libidn2: upgrade 2.3.3 -> 2.3.4Alexander Kanavin
(From OE-Core rev: f9a912b64713085b676b054ab3f8e826a3da4a0c) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-11-08repo: upgrade 2.29.3 -> 2.29.5Alexander Kanavin
(From OE-Core rev: 92f07050f87938a1ee94a3a388548d47f66bb7eb) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>