LetoThe2nd changed the topic of #yocto to: Welcome to the Yocto Project | Learn more: https://www.yoctoproject.org | Community: https://www.yoctoproject.org/community | IRC logs: http://irc.yoctoproject.org/irc/ | Having difficulty on the list, with someone on the list or on IRC, contact Yocto Project Community Manager Letothe2nd | CoC: https://www.yoctoproject.org/community/code-of-conduct
dankm has quit [Quit: Lost terminal]
olani- has quit [Ping timeout: 272 seconds]
dankm has joined #yocto
jmiehe has quit [Quit: jmiehe]
florian has quit [Ping timeout: 265 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 245 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 252 seconds]
Xagen has joined #yocto
frgo has joined #yocto
frgo has quit [Ping timeout: 252 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 276 seconds]
davidinux has quit [Ping timeout: 265 seconds]
davidinux has joined #yocto
jmiehe has joined #yocto
frgo has joined #yocto
frgo has quit [Ping timeout: 244 seconds]
jmiehe has quit [Quit: jmiehe]
jclsn has quit [Ping timeout: 272 seconds]
jclsn has joined #yocto
frgo has joined #yocto
Daanct12 has joined #yocto
frgo has quit [Ping timeout: 268 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 252 seconds]
wojci_ has joined #yocto
wojci_ has quit [Ping timeout: 252 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 245 seconds]
enok has joined #yocto
Daanct12 has quit [Ping timeout: 268 seconds]
Daanct12 has joined #yocto
frgo has joined #yocto
frgo has quit [Ping timeout: 276 seconds]
enok has quit [Quit: enok]
enok71 has joined #yocto
enok71 is now known as enok
enok has quit [Ping timeout: 276 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 252 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 244 seconds]
Marmottus11 has quit [Quit: The Lounge - https://thelounge.chat]
Chaser has joined #yocto
alessio has joined #yocto
frgo has joined #yocto
enok has joined #yocto
frgo has quit [Read error: Connection reset by peer]
frgo has joined #yocto
enok has quit [Quit: enok]
enok71 has joined #yocto
enok71 has quit [Ping timeout: 245 seconds]
savolla has joined #yocto
rfuentess has joined #yocto
Slimey has quit [Remote host closed the connection]
merit has quit [Ping timeout: 252 seconds]
Kubu_work has joined #yocto
wojci_ has joined #yocto
wojci_ has quit [Ping timeout: 252 seconds]
mrybczyn has joined #yocto
enok has joined #yocto
dmoseley_ has joined #yocto
dmoseley has quit [Ping timeout: 252 seconds]
<rburton> there's potential confusion about the patch review call this morning because the monday one is pinned to US time. As it's far too early for americans to join the thursday morning call should be europe time so will be at the same time as usual.
<mrybczyn> Same time for whom? EU or US? :)
<mrybczyn> We have funny 3 weeks ahead
ablu has quit [Ping timeout: 252 seconds]
<mrybczyn> I'm running in circles when searching for the right dependencies to use for yocto-vex-check. It comes in a standard python recipe, so if I add DEPEND in a class, I get a dependency loop. Not surprised. But when I add a task after do_rootfs from a recipe, it doesn't execute. What am I missing?
ablu has joined #yocto
<qschulz> mrybczyn: tasks running AFTER another task aren't executed unless they are explicitly requested
<qschulz> you may need a BEFORE <another task> as well
<qschulz> in which case, if <another task> is requested, your task will be executed
<qschulz> why that is? think about the menuconfig task for example, you want to have it running after the sources are fetched, patched, configured, but you don't want to have it executed all the time when building the recipe
<mrybczyn> I think I had after in that task, will try it again
enok has quit [Ping timeout: 252 seconds]
enok71 has joined #yocto
alessio has quit [Read error: Connection reset by peer]
enok71 is now known as enok
alessio has joined #yocto
<mrybczyn> It is running if I run the recipe directly, but not in an image build. Still missing a dependency somewhere
<qschulz> when you bake the recipe directly, it calls do_build
<mrybczyn> Yep, when I run it directly all is running fine. This is my complete chain that is missing something
<qschulz> Are you including the package in IMAGE_INSTALL/PACKAGE_INSTALL or through another package's dependency?
<qschulz> trying to see the big picture here
<mrybczyn> this is a native-only recipe
<qschulz> so added via DEPENDS in the image recipe?
<mrybczyn> That is what I wanted to do but apparently doesn't work :)
<mrybczyn> I'll trace it a little bit
<qschulz> I vaguely remember that isn't possible because an image recipe isn't a typical recipe
<qschulz> and therefore shouldn't need DEPENDS and SRC_URI and that kind of things
<qschulz> like it's "wrong" to have to need those things in an image recipe
<qschulz> mrybczyn: when/for what do you need this native recipe in your image recipe?
<qschulz> you could add an explicit dependency with do_task[depends] += "my-recipe-native:do_other_task" for example
<mrybczyn> I don't want to install anything. I want to use the tool generated by the recipe to postprocess the image
<qschulz> in which task of the image specifically?
<qschulz> (FWIW, it seems I was wrong with the DEPENDS, as image.bbclass does have a DEPENDS)
<mrybczyn> all is there at
<mrybczyn> ROOTFS_POSTPROCESS_COMMAND
<mrybczyn> all the data I need, I mean
<RP> mrybczyn: qschulz is right, you want something like do_correct_image_task[depends] += "recipe-native:do_populate_sysroot"
<RP> you'll see other image dependencies for tools in that form
<qschulz> mrybczyn: I assume you want a do_rootfs[depends] += thingy, c.f. meta/classes-recipe/image.bbclass
<qschulz> mrybczyn: why I asked so many questions is that if it was a tool for a specific image type, you could have used something like IMAGE_DEPENDS_ or something similar (c.f. imagetypes_getdepends in meta/classes-recipe/image_types.bbclass)
<qschulz> mrybczyn: let us know how that goes :)
<mrybczyn> @qschulz does it work in recipes? I think I didn't go that path because I have seen that only in bbclass
<mrybczyn> will try
<qschulz> mrybczyn: you mean the do_rootfs[depends] += stanza?
<mrybczyn> yes
<qschulz> yes it works, that's essentially whart DEPENDS is translated to under the hood
<mrybczyn> ok thanks will try that
enok has quit [Ping timeout: 260 seconds]
mrybczyn has quit [Quit: Client closed]
mrybczyn has joined #yocto
Ad0 has quit [Ping timeout: 248 seconds]
<mrybczyn> If the message got lost: I can see it in the dependency graph, thanks @qschulz and @RP
ptsneves has joined #yocto
<qschulz> mrybczyn: it did get lost, thanks for the update!
Chaser has quit [Ping timeout: 248 seconds]
Chaser has joined #yocto
<mrybczyn> RP nope, jhaven't see it yet
<RP> mrybczyn: I guess you have now! :)
<mrybczyn> yep
<mrybczyn> it looks it doesn't support raw CVE, but it does NVD and some other minor sources
<mrybczyn> I guess I will be running a test
tgamblin has quit [Remote host closed the connection]
tgamblin has joined #yocto
Zappan has quit [Ping timeout: 265 seconds]
Zappan has joined #yocto
florian has joined #yocto
enok has joined #yocto
enok has quit [Remote host closed the connection]
mrybczyn has quit [Quit: Client closed]
Ad0 has joined #yocto
mrybczyn has joined #yocto
goliath has joined #yocto
mrybczyn has quit [Client Quit]
enok has joined #yocto
jdiez has quit [Quit: ZNC 1.8.2 - https://znc.in]
Chaser has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Jones42 has joined #yocto
Marmottus11 has joined #yocto
savolla has quit [Quit: WeeChat 4.4.3]
jdiez has joined #yocto
_whitelogger has quit [Remote host closed the connection]
_whitelogger_ has joined #yocto
enok71 has joined #yocto
mischief has quit [Read error: Connection reset by peer]
enok has quit [Ping timeout: 252 seconds]
enok71 has quit [Ping timeout: 244 seconds]
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
savolla has joined #yocto
enok has joined #yocto
enok71 has joined #yocto
enok has quit [Ping timeout: 260 seconds]
enok71 is now known as enok
cyxae has joined #yocto
enok71 has joined #yocto
enok has quit [Quit: enok]
enok has joined #yocto
enok71 has quit [Ping timeout: 246 seconds]
merit has joined #yocto
sev99 has joined #yocto
Xagen has joined #yocto
davidinux has quit [Read error: Connection reset by peer]
starblue has quit [Ping timeout: 245 seconds]
starblue has joined #yocto
Knogle has joined #yocto
Chaser has joined #yocto
mischief has joined #yocto
Daanct12 has quit [Ping timeout: 276 seconds]
enok71 has joined #yocto
enok has quit [Read error: Connection reset by peer]
enok has joined #yocto
enok71 has quit [Ping timeout: 252 seconds]
Slimey has joined #yocto
savolla has quit [Ping timeout: 260 seconds]
enok71 has joined #yocto
enok has quit [Read error: Connection reset by peer]
enok has joined #yocto
enok71 has quit [Read error: Connection reset by peer]
enok has quit [Ping timeout: 252 seconds]
merit has quit [Ping timeout: 252 seconds]
merit has joined #yocto
Chaser has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rfuentess has quit [Remote host closed the connection]
enok has joined #yocto
Chaser has joined #yocto
zwelch has quit [Ping timeout: 268 seconds]
Chaser has quit [Ping timeout: 252 seconds]
enok has quit [Quit: enok]
enok has joined #yocto
zwelch has joined #yocto
enok has quit [Ping timeout: 244 seconds]
tgamblin has quit [Ping timeout: 244 seconds]
xantoz has joined #yocto
druppy has joined #yocto
tgamblin has joined #yocto
alessio has quit [Quit: alessio]
jerrycash has joined #yocto
alessio has joined #yocto
Kubu_work has quit [Quit: Leaving.]
Kubu_work has joined #yocto
Kubu_work has quit [Client Quit]
<khem> anyone looking for fixing some packages with gcc-15 then here is list - https://autobuilder.yoctoproject.org/valkyrie/#/builders/68/builds/1210
electricworry has joined #yocto
goliath has quit [Quit: SIGSEGV]
florian has quit [Quit: Ex-Chat]
enok has joined #yocto
Kubu_work has joined #yocto
florian has joined #yocto
alessio has quit [Quit: alessio]
jmiehe has joined #yocto
florian has quit [Ping timeout: 248 seconds]
wdouglass has joined #yocto
<wdouglass> how do i configure a ubiblock image? right now my image recipe has `UBI_IMGTYPE="squashfs-lz4"` and `IMAGE_FSTYPES="squashfs-lz4 ubi"` but it seems that image_types.bbclass wants me to setup MKUBIFS_ARGS and UBINIZE_ARGS. I do not want a writable ubifs partition, just some block leveling protection for my squashfs image (which i'm updating with
<wdouglass> rauc). is this documented anywhere?
<yocton> khem: I'll try to put some of my coworker on in. It looks doable.
<khem> yocton:cool, it will be helpful
<JPEW> RP: I got the walking code to work. It works fine for build deps, but it only walks "one level" on the runtime deps
florian has joined #yocto
druppy has quit [Ping timeout: 244 seconds]
wdouglass has quit [Quit: Client closed]
jmiehe has quit [Quit: jmiehe]
miau_miau has joined #yocto
miau_miau has quit [Client Quit]
sev99 has quit [Quit: Client closed]
ello has quit [Quit: ZNC 1.9.1 - https://znc.in]
ello has joined #yocto
enok has quit [Quit: enok]
enok has joined #yocto
<RP> JPEW: you may need to set recrdeps on that task to get that?
<RP> JPEW: this was mainly to avoid the other recipe specific task and the locking
<JPEW> It works if I add `[recrdeptask] += "do_create_product_spdx" to *both* do_create_product_spdx and do_collect_product_spdx
<JPEW> I'll push up what I have so you can see it
druppy has joined #yocto
jmiehe has joined #yocto
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Guest47 has joined #yocto
Guest47 has quit [Write error: Broken pipe]
Guest95 has joined #yocto
Guest95 has quit [Write error: Broken pipe]
jmiehe has quit [Quit: jmiehe]
Guest47 has joined #yocto
Guest47 has quit [Write error: Connection reset by peer]
druppy has quit [Ping timeout: 244 seconds]
prabhakalad has quit [Ping timeout: 248 seconds]
prabhakalad has joined #yocto
goliath has joined #yocto
ptsneves has quit [Ping timeout: 272 seconds]
prabhakalad has quit [Ping timeout: 245 seconds]
cyxae has quit [Quit: cyxae]
Knogle has quit [Quit: WeeChat 4.5.2]
Kubu_work has quit [Quit: Leaving.]
florian has quit [Ping timeout: 272 seconds]
enok has quit [Remote host closed the connection]
Jones42 has quit [Ping timeout: 248 seconds]
goliath has quit [Quit: SIGSEGV]
goliath has joined #yocto
Kubu_work has joined #yocto
Xagen has joined #yocto