ferrywu has quit [Quit: Connection closed for inactivity]
marka has quit [Ping timeout: 240 seconds]
alessioigor has joined #yocto
marka has joined #yocto
marka has quit [Ping timeout: 240 seconds]
louis_ has joined #yocto
rfuentess has joined #yocto
amitk has joined #yocto
Xagen has joined #yocto
Xagen has quit [Ping timeout: 265 seconds]
mckoan_ is now known as mckoan
<mckoan>
good morning
zpfvo has joined #yocto
PobodysNerfect has joined #yocto
leon-anavi has joined #yocto
zpfvo has quit [Ping timeout: 240 seconds]
zpfvo has joined #yocto
bps2 has joined #yocto
mvlad has joined #yocto
amitk has quit [Ping timeout: 250 seconds]
xmn has quit [Ping timeout: 240 seconds]
xmn has joined #yocto
Guest98 has joined #yocto
<Guest98>
hi,
<Guest98>
i have "opencv_4.5.2.bb" and "opencv_%.bbappend" files in mymeta-layer. i want to add one more append file "opencv_imx.bbappend". how can i add this? i tried something in "opencv_%.bbappend" like this:
<Guest98>
include ${@bb.utils.contains("MACHINE_ARCH", "test_imx", "opencv_imx.bbappend", "", d)}
<Guest98>
but it didn't work. how can i do it in the most modular way?
<mckoan>
Guest98: what is the name of the original .bb ?
marka has joined #yocto
<Guest98>
opencv_4.5.2.bb
amitk has joined #yocto
seninha has joined #yocto
jquaresma[m] has quit [Remote host closed the connection]
<mckoan>
Guest98: so opencv_%.bbappend will fit perfectly
<Guest98>
already using "opencv_%.bbappend". also i want to add an extra bbappend with this "opencv_imx.bbappend" name. how can i do that? as i said, i tried include ${@bb.utils.contains("MACHINE_ARCH", "test_imx", "opencv_imx.bbappend", "", d)} in "opencv_%.bbappend" but i didnt make it.
dv_ has quit [Ping timeout: 240 seconds]
dv_ has joined #yocto
amitk has quit [Ping timeout: 250 seconds]
<landgraf>
Guest98: you can specify COMPATIBLE_MACHINE in the imx bbappend or move it into board specific layer
daniele_hcl[m] has joined #yocto
<landgraf>
Guest98: or rename it to .inc and then include. or move to dynamic layer.
<Guest98>
landgraf thanks! renamed it to .inc also added COMPATIBLE_MACHINE
<Guest98>
it works now
goliath has joined #yocto
JaMa has quit [Ping timeout: 240 seconds]
JaMa has joined #yocto
xmn has quit [Ping timeout: 240 seconds]
amitk has joined #yocto
nemik has quit [Ping timeout: 240 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 246 seconds]
nemik has joined #yocto
vvn has quit [Quit: WeeChat 3.8]
vvn has joined #yocto
seninha has quit [Ping timeout: 240 seconds]
* RP
has tweaked the autobuilder config a bit to separate out some things, improve others. Regulars may notice a few differences
kscherer has joined #yocto
rfuentess has quit [Remote host closed the connection]
Thorn has quit [Ping timeout: 250 seconds]
<PhoenixMage>
Weird, trying to recompile u-boot after making changes to a recipe and it doesnt seem to fully run
<PhoenixMage>
As in it doesnt try to compile, just skips to the end like its up to date
<PhoenixMage>
if I "bitbake u-boot -c clean" it removes the build data, etc but then rerunning it seems to unpack but still not compile
rfuentess has joined #yocto
<mcfrisk>
PhoenixMage: make sure you change the u-boot version which is actually used in you build. a generic u-boot_%.bbappend should apply to all versions, but layer etc need to be enabled. Make sure your changes are applied with "bitbake -e u-boot". That is cheaper than compiling..
PobodysNerfect_ has joined #yocto
<PhoenixMage>
mcfrisk: I also tried with bitbake virtual/bootloader which should get around that if it was the case shouldnt it?
PobodysNerfect has quit [Ping timeout: 240 seconds]
amitk has quit [Ping timeout: 246 seconds]
<mcfrisk>
virtual/bootloader should be u-boot, but the version is important. for example poky has 2023.03 recipe already, and some layers could provide 2023.01 or 2022.10 and machine config might choose them. Then bbappends and your modifications need to apply to the correct version. "bitbake -e u-boot" should show your modifications, if not then the bbappend isn't getting applied.
<PhoenixMage>
mcfrisk: Changes are in that output (I added a fragment file). If I rerun after bitbake -c clean. if I cat temp/log.task_order it starts and do_deploy_setscene and finishes at do_packagedata_setscene so its definitely not doing the normal steps I expect. It was working fine before and deleting my changes didnt help
Minvera has joined #yocto
<mcfrisk>
PhoenixMage: setscene is taking stuff from sstate cache, so the task hashes did not change to trigger a new compilation, or just happened to find matching binaries from sstate cache.
Guest98 has quit [Quit: Client closed]
<PhoenixMage>
hmmm, how can I get around that?
<PhoenixMage>
Found it, thanks mcfrisk
<kayterina[m]>
Hi, I have a recipe that builds with autotools, I do 'bitbake' the first time it fails in do_compile with "/bin/sh: soelim: command not found" the second time it compiles correct. I cannot explain it, any ideas? Shall I share the recipe?
<rburton>
kayterina[m]: guessing you need to DEPEND on something to provide soelim, or turn that off, and it's working the second time because of broken makefiles
xmn has joined #yocto
sakoman has joined #yocto
seninha has joined #yocto
florian_kc has joined #yocto
Thorn has joined #yocto
amitk has joined #yocto
louis_ has quit [Ping timeout: 240 seconds]
louis_ has joined #yocto
amitk has quit [Ping timeout: 240 seconds]
florian_kc has quit [Ping timeout: 240 seconds]
olani_ has joined #yocto
amitk has joined #yocto
olani has quit [Ping timeout: 250 seconds]
zpfvo has quit [Ping timeout: 246 seconds]
ptsneves has joined #yocto
zpfvo has joined #yocto
rfuentess has quit [Remote host closed the connection]
<Guest87>
hello everyone, im trying to combine 2 bsp into 1 project. im thinking of making a structure that i will share. i wonder, what are the pros and cons? im not sure is it good or not. im curious about your ideas.