|
linux-libc-headers - how to handle for older kernels?
Hi, I would fork linux-libc-headers to the kernel you are actually using despite the comment in the file. That's the only way to export headers from the correct kernel to everyone who needs them. Ther
Hi, I would fork linux-libc-headers to the kernel you are actually using despite the comment in the file. That's the only way to export headers from the correct kernel to everyone who needs them. Ther
|
By
Mikko Rapeli
· #47482
·
|
|
Is Yocto the right fit for my project?
Sounds like yocto could fit to your needs well. My personal experiences summarized: Pros with yocto: * configuration of everything is possible * BSP support available for various SoC's and boards * op
Sounds like yocto could fit to your needs well. My personal experiences summarized: Pros with yocto: * configuration of everything is possible * BSP support available for various SoC's and boards * op
|
By
Mikko Rapeli
· #47356
·
|
|
How to share files between recipes?
One possibility is to provide these keys as host native tools and data to build of target recipes. This makes the files available in the build environment but does not expose them to target. Create a
One possibility is to provide these keys as host native tools and data to build of target recipes. This makes the files available in the build environment but does not expose them to target. Create a
|
By
Mikko Rapeli
· #46646
·
|
|
Changing HOST_CC_ARCH temporarily in recipe
Hi, Only clean way to do this is to split the recipe into two parts: * native for the build time tooling * target for the target only build, which depends on the native build time tooling Everything e
Hi, Only clean way to do this is to split the recipe into two parts: * native for the build time tooling * target for the target only build, which depends on the native build time tooling Everything e
|
By
Mikko Rapeli
· #46634
·
|
|
[meta-selinux][PATCH 1/2] meson-selinux.bbclass: fix meson flags for glib-2.0-native
Hi, Hmm, good that same patches are already in master branch but I somehow got a much older master branch state from remote git://git.yoctoproject.org/meta-selinux commit a917c322c120c05fc6746fc9aca38
Hi, Hmm, good that same patches are already in master branch but I somehow got a much older master branch state from remote git://git.yoctoproject.org/meta-selinux commit a917c322c120c05fc6746fc9aca38
|
By
Mikko Rapeli
· #46436
·
|
|
[meta-selinux][PATCH 2/2] libselinux: fix build with glibc-2.30 from poky
By
Mikko Rapeli
· #46429
·
|
|
[meta-selinux][PATCH 1/2] meson-selinux.bbclass: fix meson flags for glib-2.0-native
With latest poky master, glib-2.0-native fails to compile: | meson.build:1:0: ERROR: Value "false" for combo option is not one of the choices. Possible choices are: "enabled", "disabled", "auto". Thus
With latest poky master, glib-2.0-native fails to compile: | meson.build:1:0: ERROR: Value "false" for combo option is not one of the choices. Possible choices are: "enabled", "disabled", "auto". Thus
|
By
Mikko Rapeli
· #46430
·
|
|
[meta-gplv2][warrior][master][PATCH] licenses: restore Elfutils-Exception from oe-core
Looks good! Reviewed-by: Mikko Rapeli <mikko.rapeli@...>
Looks good! Reviewed-by: Mikko Rapeli <mikko.rapeli@...>
|
By
Mikko Rapeli
· #45206
·
|
|
long time for starting sshd (wait for crng init done ?)
Hi, Depends on your HW platform, kernel version etc, but one possible solution is installing rng-tools binary package which starts rngd at boot. See http://lists.openembedded.org/pipermail/openembedde
Hi, Depends on your HW platform, kernel version etc, but one possible solution is installing rng-tools binary package which starts rngd at boot. See http://lists.openembedded.org/pipermail/openembedde
|
By
Mikko Rapeli
· #45143
·
|
|
Changing IMAGE_NAME [yocto krogoth]
Should be: IMAGE_NAME := "${IMAGE_BASENAME}-${PV}-${DATETIME}" note the added $. I guess that's the bit which confuses bitbake. Been there, done that too :) Hope this helps, -Mikko
Should be: IMAGE_NAME := "${IMAGE_BASENAME}-${PV}-${DATETIME}" note the added $. I guess that's the bit which confuses bitbake. Been there, done that too :) Hope this helps, -Mikko
|
By
Mikko Rapeli
· #44753
·
|
|
[ptest-runner] Run ptests via stdbuf configured to line-buffering
Ok, that too then. Then all hope is lost so lets include sed there as well :) We're ramping up with ptests and will provide fixes back to upstream. All this work is very much appreciated here in downs
Ok, that too then. Then all hope is lost so lets include sed there as well :) We're ramping up with ptests and will provide fixes back to upstream. All this work is very much appreciated here in downs
|
By
Mikko Rapeli
· #44670
·
|
|
[ptest-runner] Run ptests via stdbuf configured to line-buffering
GNU sed does not come from coreutils but from sed recipe. Your call in the end. I just provided my point of view. Understood. I hope you could also add 'set -eux' to all ptest shell scripts. Many of t
GNU sed does not come from coreutils but from sed recipe. Your call in the end. I just provided my point of view. Understood. I hope you could also add 'set -eux' to all ptest shell scripts. Many of t
|
By
Mikko Rapeli
· #44668
·
|
|
[ptest-runner] Run ptests via stdbuf configured to line-buffering
Please no. I'm running images without sed and using busybox sed instead, and that doesn't support -u. I'd rather be compatible with sed from busybox to keep changes to images minimal (e.g. install of
Please no. I'm running images without sed and using busybox sed instead, and that doesn't support -u. I'd rather be compatible with sed from busybox to keep changes to images minimal (e.g. install of
|
By
Mikko Rapeli
· #44664
·
|
|
Image introspection
Thanks for this useful summary of tools. I use buildhistory a lot. It contains recipe, binary package, image and SDK metadata. Many of the queries and tools you mentioned can be 'git grep'ed from buil
Thanks for this useful summary of tools. I use buildhistory a lot. It contains recipe, binary package, image and SDK metadata. Many of the queries and tools you mentioned can be 'git grep'ed from buil
|
By
Mikko Rapeli
· #44527
·
|
|
CMake based recipes and defining CMAKE_BUILD_TYPE
Hi, From my experience, what CMAKE_BUILD_TYPE means varies between SW components. Thus I think the current approach of not setting it is correct. SW components must set their own defaults in either CM
Hi, From my experience, what CMAKE_BUILD_TYPE means varies between SW components. Thus I think the current approach of not setting it is correct. SW components must set their own defaults in either CM
|
By
Mikko Rapeli
· #44045
·
|
|
libstdc++fs on toolchain
At least on x86 targets, it's available from gcc-runtime recipe and libstdc++-staticdev binary package on sumo/yocto 2.5 and later. -Mikko
At least on x86 targets, it's available from gcc-runtime recipe and libstdc++-staticdev binary package on sumo/yocto 2.5 and later. -Mikko
|
By
Mikko Rapeli
· #43891
·
|