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
frgo has joined #yocto
frgo has quit [Ping timeout: 260 seconds]
dgriego has quit [Quit: Computer going to sleep]
qschulz has quit [Remote host closed the connection]
qschulz has joined #yocto
vvn has quit [Quit: WeeChat 4.5.1]
frgo has joined #yocto
sotaoverride has quit [Quit: Lost terminal]
jclsn has quit [Ping timeout: 272 seconds]
jclsn has joined #yocto
frgo has quit [Ping timeout: 244 seconds]
starblue has quit [Ping timeout: 252 seconds]
starblue has joined #yocto
Vonter has quit [Quit: WeeChat 4.5.1]
frgo has joined #yocto
uartz_ has quit [Ping timeout: 248 seconds]
uartz has joined #yocto
uartz has quit [Ping timeout: 260 seconds]
Vonter has joined #yocto
uartz has joined #yocto
frgo has quit [Ping timeout: 260 seconds]
tammranil has quit [Remote host closed the connection]
tammranil has joined #yocto
uartz has quit [Ping timeout: 260 seconds]
Bardon_ has quit [Quit: ZNC - https://znc.in]
Bardon has joined #yocto
uartz has joined #yocto
rob_w has joined #yocto
rob_w has quit [Remote host closed the connection]
frgo has joined #yocto
GNUmoon has quit [Remote host closed the connection]
GNUmoon has joined #yocto
Guest53 has joined #yocto
Guest53 has quit [Client Quit]
frgo has quit [Remote host closed the connection]
uartz has quit [Ping timeout: 260 seconds]
Chaser has joined #yocto
jmd has joined #yocto
frgo has joined #yocto
frgo has quit [Ping timeout: 260 seconds]
jmd has quit [Remote host closed the connection]
rob_w has joined #yocto
merit has joined #yocto
goliath has joined #yocto
Xogium has quit [Ping timeout: 248 seconds]
Xogium has joined #yocto
frgo has joined #yocto
g0hl1n has joined #yocto
frgo has quit [Remote host closed the connection]
leon-anavi has joined #yocto
frgo has joined #yocto
florian has joined #yocto
frieder has joined #yocto
CrazyGecko has joined #yocto
mckoan|away is now known as mckoan
rfuentess has joined #yocto
g0hl1n has quit [Ping timeout: 240 seconds]
Kubu_work has joined #yocto
mbulut has joined #yocto
ablu has quit [Ping timeout: 260 seconds]
ablu has joined #yocto
g0hl1n has joined #yocto
ehussain has joined #yocto
<landgraf> RP: right. I could, thanks!
mrpelotazo has quit [Quit: Hasta la vista!]
mrpelotazo has joined #yocto
vthor_ has quit [Excess Flood]
vthor_ has joined #yocto
florian has quit [Quit: Ex-Chat]
florian has joined #yocto
bhstalel has joined #yocto
<bhstalel> Hello, anyone thought about integrating a package from a recipe A into a docker container created by recipe B ?
sakoman1 has quit [Read error: Connection reset by peer]
sakoman has joined #yocto
<rburton> bhstalel: look at meta-virt?
_whitelogger has joined #yocto
<bhstalel> I am trying to embed the oci image tar file into my main rootfs
<landgraf> bhstalel: do_install[mcdepends] = "mc::visocontainer:nodered-container-image:do_image_complete"
<landgraf> bhstalel: this works for me
<landgraf> and install the image in do_install()
<landgraf> it will work without multiconfig too I think but I need mc for different reason
<bhstalel> landgraf Perfect, I was thinking about the same idea, this helps a lot, I will try that
<bhstalel> landgraf where are you setting that do_install ? in a package recipe ? if I understand correctly, this needs 3 recipes, one for the OCI image, one for installing it, and the main image recipe ?
<mcfrisk> anyone else seeing ca-certificate build failures on rebuilds from latest poky master branch?
g0hl1n has quit [Quit: Client closed]
<landgraf> bhstalel: in my case nodered-container-image is a recipe to build OCI image, and nodered-container-pkg is the one which depends on do_image_complete and install the image to the rootfs
<landgraf> bhstalel: and the main image recipe which installs nodered-container-pkg. So you're right
frgo has quit [Remote host closed the connection]
jmiehe has joined #yocto
jmiehe has quit [Client Quit]
mckoan is now known as mckoan|away
g0hl1n has joined #yocto
frgo has joined #yocto
GNUmoon has quit [Ping timeout: 264 seconds]
GNUmoon has joined #yocto
g0hl1n has quit [Quit: Client closed]
rty has joined #yocto
<rty> does devtool know how to work with multiple overrides? for example, if I want to to add the patch only when overrides A and B are active, how do I do this? devtool modify would create separate branches for overrides A and overrides B
ctraven is now known as sotaoverride
<Saur> rty: Yes, devtool modify will create multiple branches in that situation. It is then up to you to use the correct branch(es) during development.
<rty> Saur: right, my question relates to the fact that devtool would create branches 'devtool-overrides-A' and 'devtool-overrides-B'. do I then create a patch on one branch, cherry pick it on the other in order to achieve SRC_URI:append:A:B = " mypatch"?
<rty> also, do I understand correctly that I need to have an override to be active during 'devtool modify' call in order for devtool to create an overrides branch? because I'm missing certain overrides branches currently
<Saur> rty: While you have the recipe devtool modified, the SRC_URI does not matter (for patches). Whichever branch you have active will be used to build the recipe.
<Saur> `devtool modify` is not affected by whatever overrides you use when you build. It tries to create branches for all variants, but to be fair, I do not know how well it handles multiple overrides...
<rty> Saur:  but then when I `devtool finish` it, devtool does edit my bbappend in a layer based on some logic. I was wondering, if it supports the logic of having multiple overrides active, i.e. edit bbappend to contain was I wrote with SRC_URI. not that I cannot do this manually later, but I `devtool modify` this recipe quite often and everything that
<rty> devtool cannot do is manual work for me, so I was wondering if I can make devtool recognize that certain patch is only to be applied when multiple overrides are active
<Saur> rty: If `devtool modify` does not create a branch for the combination that you need, then you might have to resort to temporarily modify the recipe while you do your development.
frgo has quit [Remote host closed the connection]
ehussain has quit [Remote host closed the connection]
Chaser has quit [Ping timeout: 260 seconds]
<bhstalel> landgraf Did you work on k3s (or k8s) deployment of a pod running an image generated by Yocto ?
Chaser has joined #yocto
<rburton> bhstalel: speak to zeddii and/or have a look at meta-virt master
rty has quit [Quit: Client closed]
PhoenixMage has quit [Ping timeout: 244 seconds]
uartz has joined #yocto
PhoenixMage has joined #yocto
<landgraf> bhstalel: No, I'm just a regular user of meta-virt layer. There's meta-virt irc channel btw
<landgraf> bhstalel: but when I tried to deploy container image in (iirc) k3s it failed (ctr: unrecognized image format) , I didn't have to revisit it since
jmiehe has joined #yocto
PhoenixMage has quit [Ping timeout: 260 seconds]
PhoenixMage has joined #yocto
dgriego has joined #yocto
cyxae has joined #yocto
Chaser has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
jmd has joined #yocto
jmiehe has quit [Quit: jmiehe]
bhstalel has quit [Quit: Client closed]
prabhakalad has quit [Ping timeout: 260 seconds]
prabhakalad has joined #yocto
dmoseley has quit [Quit: ZNC 1.9.1 - https://znc.in]
dmoseley has joined #yocto
Xagen has quit [Quit: Textual IRC Client: www.textualapp.com]
Xagen has joined #yocto
vthor_ is now known as vThor
cyxae has quit [Quit: cyxae]
cyxae has joined #yocto
rob_w has quit [Quit: Leaving]
florian has quit [Quit: Ex-Chat]
rfuentess has quit [Remote host closed the connection]
leon-anavi has quit [Quit: Leaving]
Kubu_work has quit [Ping timeout: 272 seconds]
frieder has quit [Remote host closed the connection]
Chaser has joined #yocto
bhstalel has joined #yocto
bhstalel has quit [Quit: Client closed]
rbox has quit [Quit: ZNC 1.9.1 - https://znc.in]
rbox has joined #yocto
nerdboy has quit [Ping timeout: 260 seconds]
nerdboy has joined #yocto
nerdboy has quit [Changing host]
nerdboy has joined #yocto
florian has joined #yocto
Chaser has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
Chaser has joined #yocto
goliath has quit [Quit: SIGSEGV]
florian_kc has joined #yocto
Bardon_ has joined #yocto
florian has quit [Read error: Connection reset by peer]
Bardon has quit [Ping timeout: 244 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 248 seconds]
goliath has joined #yocto
SlimeyX has quit [Ping timeout: 245 seconds]
merit has quit [Ping timeout: 252 seconds]
florian has joined #yocto
Kubu_work has joined #yocto
florian_kc has quit [Ping timeout: 245 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 276 seconds]
prabhakalad has quit [Ping timeout: 244 seconds]
prabhakalad has joined #yocto
Chaser has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
jmd has quit [Remote host closed the connection]
jpuhlman has joined #yocto
ptsneves has joined #yocto
ptsneves has quit [Ping timeout: 252 seconds]
cyxae has quit [Quit: cyxae]
Kubu_work has quit [Quit: Leaving.]
druppy has joined #yocto
astlep5504018066 has quit [Quit: Ping timeout (120 seconds)]
astlep5504018066 has joined #yocto
zeddii has quit [Remote host closed the connection]
zeddii has joined #yocto
frgo has joined #yocto
frgo has quit [Ping timeout: 246 seconds]
sotaoverride has quit [Killed (silver.libera.chat (Nickname regained by services))]
druppy has quit [Ping timeout: 244 seconds]
mathieudb has quit [Ping timeout: 244 seconds]
ctraven has joined #yocto
cabazon has joined #yocto
uartz has quit [Ping timeout: 260 seconds]
zeddii has quit [Read error: Connection reset by peer]
goliath has quit [Quit: SIGSEGV]
zeddii has joined #yocto
florian has quit [Ping timeout: 245 seconds]
cabazon has quit [Quit: Client closed]