Re: [yocto] Problem with overlayed recipes

2024-01-09 Thread Daniele Lugli
Il giorno mar 9 gen 2024 alle ore 17:07 Alexander Kanavin < alex.kana...@gmail.com> ha scritto: > You need to inspect ${T}/log.do_rootfs for your image to check what is > actually being installed. > > Also check the packages for simple-local to verify that they contain > what you expect to see on

Re: [yocto] Problem with overlayed recipes

2024-01-09 Thread Alexander Kanavin
You need to inspect ${T}/log.do_rootfs for your image to check what is actually being installed. Also check the packages for simple-local to verify that they contain what you expect to see on the image. Alex On Tue, 9 Jan 2024 at 17:01, Daniele Lugli wrote: > >

Re: [yocto] Problem with overlayed recipes

2024-01-09 Thread Daniele Lugli
IMAGE_INSTALL="packagegroup-core-boot  rt-tests hwlatdetect kernel-dev simple-local" By the way, rt-tests are missing too. -- Daniele Lugli General Logic srl Viale Curreno, 41 10133 Torino Italy tel +39 329 3933041 www.general-logic.com ( http://www.general-logic.com/ )

Re: [yocto] Problem with overlayed recipes

2024-01-09 Thread Khem Raj
On Tue, Jan 9, 2024 at 7:22 AM Daniele Lugli wrote: > > Thank you for your reply. > > I replaced the content of mytest-image.bb with that of > meta-intel/recipes-rt/images/core-image-rt-sdk.bb and added > > IMAGE_INSTALL += "simple-local" > > at the end. This way I get a bootable wic, but find /

Re: [yocto] Problem with overlayed recipes

2024-01-09 Thread Daniele Lugli
Thank you Marco. Adding inherit core-image as suggested, I still get ERROR: Nothing PROVIDES 'mytest-image' mytest-image was skipped: Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it -- Daniele Lugli General Logic srl Viale Curreno, 41 10133 Torino Italy tel +39 329 3933041

Re: [yocto] Problem with overlayed recipes

2024-01-09 Thread Daniele Lugli
Thank you for your reply. I replaced the content of mytest-image.bb with that of meta-intel/recipes-rt/images/core-image-rt-sdk.bb and added IMAGE_INSTALL += "simple-local" at the end. This way I get a bootable wic, but find / -name simple-local finds nothing. -- Daniele Lugli General Logic

Re: [yocto] Problem with overlayed recipes

2024-01-09 Thread Marco Cavallini
What happens if you change the recipe like this? *mytest-image.bb* : ``` inherit core-image DESCRIPTION = "Just a test" IMAGE_INSTALL:append = " simple-local" ``` -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#62119):

Re: [yocto] Problem with overlayed recipes

2024-01-09 Thread Alexander Kanavin
I'd say including recipes across layers is not a good idea to begin with. Rather copy, rename and tweak it. Alex On Tue, 9 Jan 2024 at 11:42, Daniele Lugli wrote: > > Thank you Marco, > > it is there: > > # POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf > # changes

Re: [yocto] Problem with overlayed recipes

2024-01-09 Thread Daniele Lugli
Thank you Marco, it is there: # POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf # changes incompatibly POKY_BBLAYERS_CONF_VERSION = "2" BBPATH = "${TOPDIR}" BBFILES ?= "" BBLAYERS ?= " \ /home/vboxuser/yocto/poky/meta \ /home/vboxuser/yocto/poky/meta-poky \

Re: [yocto] Problem with overlayed recipes

2024-01-08 Thread Marco Cavallini
Hi Daniele, maybe you forgot to add your layer *meta-mytest* to *bblayers.conf* ? Ciao -- Marco Cavallini | KOAN sas Bergamo - Italia embedded software engineering ✆:+39 351-9518710 https://KoanSoftware.com -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply

[yocto] Problem with overlayed recipes

2024-01-08 Thread Daniele Lugli
Hi all, I am trying to to generate an image with PREEMPT_RT kernel for an intel-corei7-64 target machine. I see that the meta-intel layer already has a couple of recipes for that in recipes-rt/images/core-image-rt.bb and core-image-rt-sdk.bb, so I add this layer. I choose core-image-rt-sdk.bb