|
Help and ideas wanted - error during do_package
Hi Richard, It helped to add 'chown -R root.root ${D}${libdir}'. Thanks! But curios to understand why. Anyway when looking into ${D} after I added chown the files is owned by the build user. I guess t
Hi Richard, It helped to add 'chown -R root.root ${D}${libdir}'. Thanks! But curios to understand why. Anyway when looking into ${D} after I added chown the files is owned by the build user. I guess t
|
By
Peter Bergin
· #58110
·
|
|
Help and ideas wanted - error during do_package
Hi, I'm working on a recipe for libtraceevent (https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git) that is needed for newer trace-cmd. I'm confused about an error I get during do_package t
Hi, I'm working on a recipe for libtraceevent (https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git) that is needed for newer trace-cmd. I'm confused about an error I get during do_package t
|
By
Peter Bergin
· #58105
·
|
|
Regression in rust-cross-canadian-aarch64
I've sent a patch to oe-core to fix the regression in my setup: https://lists.openembedded.org/g/openembedded-core/message/167368 Opened a bugzilla entry for rust cross-canadian: https://bugzilla.yoct
I've sent a patch to oe-core to fix the regression in my setup: https://lists.openembedded.org/g/openembedded-core/message/167368 Opened a bugzilla entry for rust cross-canadian: https://bugzilla.yoct
|
By
Peter Bergin
· #57416
·
|
|
Regression in rust-cross-canadian-aarch64
Thanks for suggestion! Yes, that will solve the problem for my setup. I was just wondering if you had any purpose with this if-else clause that should be kept or fixed? I can send a patch for this to
Thanks for suggestion! Yes, that will solve the problem for my setup. I was just wondering if you had any purpose with this if-else clause that should be kept or fixed? I can send a patch for this to
|
By
Peter Bergin
· #57399
·
|
|
Regression in rust-cross-canadian-aarch64
Hi again, some progress on this issue. The reason for this issue seems to be this commit: commit 781eaa955dce5deab47371c25dae72b36c011900 Author: Richard Purdie <richard.purdie@...> Da
Hi again, some progress on this issue. The reason for this issue seems to be this commit: commit 781eaa955dce5deab47371c25dae72b36c011900 Author: Richard Purdie <richard.purdie@...> Da
|
By
Peter Bergin
· #57397
·
|
|
Regression in rust-cross-canadian-aarch64
Hi, I experience build failure in the compilation step of the recipe rust-cross-canadian-aarch64. I've used latest master from poky and just changed the MACHINE to qemuarm64. When I execute 'bitbake r
Hi, I experience build failure in the compilation step of the recipe rust-cross-canadian-aarch64. I've used latest master from poky and just changed the MACHINE to qemuarm64. When I execute 'bitbake r
|
By
Peter Bergin
· #57355
·
|
|
Alsa configuration error
Check available sound cards in your system. 'aplay -L' It seems you have no suitable default one for speaker-test to use. If you have sound cards in your machine and want to point out another one that
Check available sound cards in your system. 'aplay -L' It seems you have no suitable default one for speaker-test to use. If you have sound cards in your machine and want to point out another one that
|
By
Peter Bergin
· #55928
·
|
|
Invalid checksums for SRC_URI ignored?
Hi, No they are not mandatory for all fetchers. They are only used for content downloaded from non-local archives. https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-fetchin
Hi, No they are not mandatory for all fetchers. They are only used for content downloaded from non-local archives. https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-fetchin
|
By
Peter Bergin
· #55911
·
|
|
__DATE__ and __TIME__ in dunfell builds
#dunfell
In your build you have reproducible build enabled. https://docs.yoctoproject.org/3.4/test-manual/reproducible-builds.html. You should be able to disable this function with help of the variable BUILD_R
In your build you have reproducible build enabled. https://docs.yoctoproject.org/3.4/test-manual/reproducible-builds.html. You should be able to disable this function with help of the variable BUILD_R
|
By
Peter Bergin
· #55307
·
|
|
gpsd [version 3.23; master branch]: Is it possible to include / enable ubxtool?
Hi Matthias, Sorry for my quick and a bit oversimplified response. I did my first build on an older version (3.20) where ubxtool was not built but present in the repo root. I see now that in 3.23 gpsd
Hi Matthias, Sorry for my quick and a bit oversimplified response. I did my first build on an older version (3.20) where ubxtool was not built but present in the repo root. I see now that in 3.23 gpsd
|
By
Peter Bergin
· #54634
·
|
|
gpsd [version 3.23; master branch]: Is it possible to include / enable ubxtool?
Hi Matthias, gpsd recipe is located in meta-oe. As the ubxtool file is present in the build it is possible to add it. Just make sure it is installed in the do_install step and then that the file is ad
Hi Matthias, gpsd recipe is located in meta-oe. As the ubxtool file is present in the build it is possible to add it. Just make sure it is installed in the do_install step and then that the file is ad
|
By
Peter Bergin
· #54627
·
|
|
extrausers-bbclass: plaintext password (since shadow update to 4.9)
Hi Matthias, Is it a requirement that you need to regenerate the hash on every build? If not one solution can be: inherit extrausers # # HASH generated with this command: # python3 -c "import crypt; p
Hi Matthias, Is it a requirement that you need to regenerate the hash on every build? If not one solution can be: inherit extrausers # # HASH generated with this command: # python3 -c "import crypt; p
|
By
Peter Bergin
· #54615
·
|
|
extrausers-bbclass: plaintext password (since shadow update to 4.9)
You have to escape the password string in the recipe. Use '\\\$' to escape the '$' token. There are some levels of evaluation of the expression and that's the reason for multiple '\'. Just iterate unt
You have to escape the password string in the recipe. Use '\\\$' to escape the '$' token. There are some levels of evaluation of the expression and that's the reason for multiple '\'. Just iterate unt
|
By
Peter Bergin
· #54606
·
|
|
Include "my.conf" in conf/local.conf
Hi, yes. Just add "include my.conf" in your configuration. https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-metadata.html#include-directive Regards, /Peter
Hi, yes. Just add "include my.conf" in your configuration. https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-metadata.html#include-directive Regards, /Peter
|
By
Peter Bergin
· #52427
·
|
|
linux-libc-headers - how to handle for older kernels?
Thanks Bruce! Yes my plan is to create a new package in the 'virtual/kernel' recipe where I add the additional files to '/usr/include/linux/' and then add that new package to my SDK (or the sysroot if
Thanks Bruce! Yes my plan is to create a new package in the 'virtual/kernel' recipe where I add the additional files to '/usr/include/linux/' and then add that new package to my SDK (or the sysroot if
|
By
Peter Bergin
· #47551
·
|
|
linux-libc-headers - how to handle for older kernels?
That's appealing approach. The part with the custom kernel headers is in my case solved that we have separate kernel headers that we add to the SDK. It is how I have understood the recommendation to s
That's appealing approach. The part with the custom kernel headers is in my case solved that we have separate kernel headers that we add to the SDK. It is how I have understood the recommendation to s
|
By
Peter Bergin
· #47513
·
|
|
linux-libc-headers - how to handle for older kernels?
Hi, I'm currently working in a project using Yocto 2.6 (thud) release. It has default kernel v4.18 and also linux-libc-headers from kernel v4.18. In my project we will use kernel v4.1. I would like ad
Hi, I'm currently working in a project using Yocto 2.6 (thud) release. It has default kernel v4.18 and also linux-libc-headers from kernel v4.18. In my project we will use kernel v4.1. I would like ad
|
By
Peter Bergin
· #47480
·
|
|
Final DISTRO_FEATURES value
Hi, or if you want to inspect how it is built up you can find out by 'bitbake <image> -e'. Will produce information about from which files the variable is built up. It produces a lot of output so pipe
Hi, or if you want to inspect how it is built up you can find out by 'bitbake <image> -e'. Will produce information about from which files the variable is built up. It produces a lot of output so pipe
|
By
Peter Bergin
· #46347
·
|
|
Systemd service recipe fails while booting from initramfs
Hi Zoran, I'm not sure I got your question correct but I'll try to give you a super simple network config for systemd-networkd using dhcp. Add the file '/etc/systemd/network/10-dhcp.network' with the
Hi Zoran, I'm not sure I got your question correct but I'll try to give you a super simple network config for systemd-networkd using dhcp. Add the file '/etc/systemd/network/10-dhcp.network' with the
|
By
Peter Bergin
· #43862
·
|
|
Systemd service recipe fails while booting from initramfs
Could be that you miss some required kernel configurations. See systemd/README (https://github.com/systemd/systemd/blob/8464d9e0dc506538fd0f2d1d667966750cb9cf30/README#L38) PACKAGECONFIG will control
Could be that you miss some required kernel configurations. See systemd/README (https://github.com/systemd/systemd/blob/8464d9e0dc506538fd0f2d1d667966750cb9cf30/README#L38) PACKAGECONFIG will control
|
By
Peter Bergin
· #43830
·
|