|
[PATCH yocto-autobuilder-helper] scripts: run-docs-build: make the workdir pristine between builds
Hi Luka, I guess it does not hurt to be on the safe side by having them before and after the git checkout then? Since the current issue went unnoticed for months... https://lore.kernel.org/yocto-docs/
Hi Luka, I guess it does not hurt to be on the safe side by having them before and after the git checkout then? Since the current issue went unnoticed for months... https://lore.kernel.org/yocto-docs/
|
By
Quentin Schulz
· #58268
·
|
|
[PATCH yocto-autobuilder-helper] scripts: run-docs-build: make the workdir pristine between builds
Hi Luca, Nope, not sure this is correct. I misread git clean manpage, we should have a git reset --hard and git clean -ffdx. Now the question is when those are necessary because with this patch we do
Hi Luca, Nope, not sure this is correct. I misread git clean manpage, we should have a git reset --hard and git clean -ffdx. Now the question is when those are necessary because with this patch we do
|
By
Quentin Schulz
· #58262
·
|
|
[PATCH yocto-autobuilder-helper] scripts: run-docs-build: make the workdir pristine between builds
Hi all, Forgot to say this was not tested. Let's run this on the autobuilder and see if it helps? Is there a way to try without merging? Cheers, Quentin
Hi all, Forgot to say this was not tested. Let's run this on the autobuilder and see if it helps? Is there a way to try without merging? Cheers, Quentin
|
By
Quentin Schulz
· #58253
·
|
|
[meta-rockchip][PATCH] layers: Add langdale to LAYERSERIES_COMPAT
Hi Khem, Considering that we have a branch for kirkstone already, maybe we can just switch to supporting langdale only? Cheers, Quentin
Hi Khem, Considering that we have a branch for kirkstone already, maybe we can just switch to supporting langdale only? Cheers, Quentin
|
By
Quentin Schulz
· #58230
·
|
|
meta-swupdate integration with the custom Yocto image
#dunfell
Hi Mahendra Sondagar, Considering you're using SRC_URI unconditionally, I suggest you use: . ├── swupdate │ ├── 09-swupdate-args │ ├── defconfig │ ├── sw-description │ └── swupdate.cfg └── swupdate_%.
Hi Mahendra Sondagar, Considering you're using SRC_URI unconditionally, I suggest you use: . ├── swupdate │ ├── 09-swupdate-args │ ├── defconfig │ ├── sw-description │ └── swupdate.cfg └── swupdate_%.
|
By
Quentin Schulz
· #58158
·
|
|
Problem with make: *** No targets specified and no makefile found.
Hi Kuzemko Aleksandr, Maybe this has a broken autotools script, can you try to inherit autotools-brokensep instead of autotools? c.f. https://docs.yoctoproject.org/ref-manual/classes.html#autotools-bb
Hi Kuzemko Aleksandr, Maybe this has a broken autotools script, can you try to inherit autotools-brokensep instead of autotools? c.f. https://docs.yoctoproject.org/ref-manual/classes.html#autotools-bb
|
By
Quentin Schulz
· #58068
·
|
|
[meta-oe][PATCH] externalsrc:git submodule--helper list unsupported
Hi John, meta layer is part of openembedded-core, so please re-send to the correct mailing list following the docs here https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded Are thos
Hi John, meta layer is part of openembedded-core, so please re-send to the correct mailing list following the docs here https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded Are thos
|
By
Quentin Schulz
· #58053
·
|
|
install: cannot create regular file Permission denied
#dunfell
Hi Mahendra, Spurious slash at the end of the line, it tries to install ${WORKDIR}/test.sh and ${D}${bindir} to / (root directory of your build machine). Just remove it. Cheers, Quentin
Hi Mahendra, Spurious slash at the end of the line, it tries to install ${WORKDIR}/test.sh and ${D}${bindir} to / (root directory of your build machine). Just remove it. Cheers, Quentin
|
By
Quentin Schulz
· #58047
·
|
|
Update upstream kirkstone branches
Hi Paulo, For OpenEmbedded-core patches: https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded#Backporting_fixes_to_stable_releases For meta-openembedded, I do not know how Khem deal
Hi Paulo, For OpenEmbedded-core patches: https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded#Backporting_fixes_to_stable_releases For meta-openembedded, I do not know how Khem deal
|
By
Quentin Schulz
· #57996
·
|
|
Multiple Images on the same HW platform with one image recipe
Hi Aleksandar, If the packages that are in both images are compiled identically, with the same options, etc... then two images. Recipes are the least invasive in terms of Yocto builds so if you can av
Hi Aleksandar, If the packages that are in both images are compiled identically, with the same options, etc... then two images. Recipes are the least invasive in terms of Yocto builds so if you can av
|
By
Quentin Schulz
· #57943
·
|
|
Dependency for binary package
Hi Rudolf, Bitbake versions its shared libraries. So a binary built by Bitbake will link against libGLESv2.so.1.3 (or whatever the version of the lib actually is). This also means that the only shared
Hi Rudolf, Bitbake versions its shared libraries. So a binary built by Bitbake will link against libGLESv2.so.1.3 (or whatever the version of the lib actually is). This also means that the only shared
|
By
Quentin Schulz
· #57899
·
|
|
Recipe with kernel configuration fragment
Hi Maik, This is not possible because recipe data is local to the recipe, you cannot impact a recipe from another one. The only way to have 2+ recipes doing some things in sync is by having a variable
Hi Maik, This is not possible because recipe data is local to the recipe, you cannot impact a recipe from another one. The only way to have 2+ recipes doing some things in sync is by having a variable
|
By
Quentin Schulz
· #57819
·
|
|
nftables_0.7 not working
Hi Maik, No, you would indeed need to enable those in your kernel config. Cheers, Quentin
Hi Maik, No, you would indeed need to enable those in your kernel config. Cheers, Quentin
|
By
Quentin Schulz
· #57717
·
|
|
nftables_0.7 not working
Hi Maik, It seems you built many netfilter features/drivers as modules and not built-in in the kernel. When that is the case, you need to add the modules to your image because Yocto does not do it for
Hi Maik, It seems you built many netfilter features/drivers as modules and not built-in in the kernel. When that is the case, you need to add the modules to your image because Yocto does not do it for
|
By
Quentin Schulz
· #57715
·
|
|
[Need help] How to add one package to build directory of another package
Hi, DEPENDS += "libdotconf" in speech-dispatcher recipe. This adds a dependency on libdotconf target recipe so that it makes it to the sysroot of the speech-dispatcher recipe at build time. I had a qu
Hi, DEPENDS += "libdotconf" in speech-dispatcher recipe. This adds a dependency on libdotconf target recipe so that it makes it to the sysroot of the speech-dispatcher recipe at build time. I had a qu
|
By
Quentin Schulz
· #57688
·
|
|
Using custom python modules in classes and functions
Hi Marek, Anonymous functions are run during parsing before anything is built. Therefore, I don't think it'll be possible to use a python module from a recipe in an anonymous function. In order to use
Hi Marek, Anonymous functions are run during parsing before anything is built. Therefore, I don't think it'll be possible to use a python module from a recipe in an anonymous function. In order to use
|
By
Quentin Schulz
· #57619
·
|
|
Providing Read/Write permission to "etc" in Read only Rootfile system
#zeus
#yocto
Hi, This seems like a good use for overlayfs-etc IMAGE_FEATURES? c.f. https://docs.yoctoproject.org/ref-manual/features.html#image-features See https://docs.yoctoproject.org/ref-manual/classes.html#ov
Hi, This seems like a good use for overlayfs-etc IMAGE_FEATURES? c.f. https://docs.yoctoproject.org/ref-manual/features.html#image-features See https://docs.yoctoproject.org/ref-manual/classes.html#ov
|
By
Quentin Schulz
· #57594
·
|
|
yocto support
Hi Senthamilarasi.M, It is not possible to modify a recipe from another recipe. Meaning you cannot decide which config file to use for the kernel from the image recipe. You have however two options: -
Hi Senthamilarasi.M, It is not possible to modify a recipe from another recipe. Meaning you cannot decide which config file to use for the kernel from the image recipe. You have however two options: -
|
By
Quentin Schulz
· #57533
·
|
|
Unable to fetch repository from GitLab. Checksum mismatch
Hi Rashmi, You only need to add ;protocol=https to your SRC_URI which starts with git://. git:// in SRC_URI is NOT the protocol used to download the sources, it is the way Bitbake knows which fetcher
Hi Rashmi, You only need to add ;protocol=https to your SRC_URI which starts with git://. git:// in SRC_URI is NOT the protocol used to download the sources, it is the way Bitbake knows which fetcher
|
By
Quentin Schulz
· #57457
·
|
|
[PATCH yocto-autobuilder-helper] run-docs-build: allow build warnings again
Hi Richard, Michael, Some warnings are actually valid. Such is the case for the one that warranted https://git.yoctoproject.org/yocto-docs/commit/?id=9a797dedf6708da3e7ce789c5c8735e5d891cde4. The issu
Hi Richard, Michael, Some warnings are actually valid. Such is the case for the one that warranted https://git.yoctoproject.org/yocto-docs/commit/?id=9a797dedf6708da3e7ce789c5c8735e5d891cde4. The issu
|
By
Quentin Schulz
· #57450
·
|