Monday, 2024-06-17

*** davidinux <davidinux!~davidinux@194.34.233.216> has quit IRC (Ping timeout: 255 seconds)01:04
*** davidinux <davidinux!~davidinux@194.34.233.209> has joined #yocto01:14
*** CombatWombat42 <CombatWombat42!~spovilus@c-73-217-66-250.hsd1.co.comcast.net> has joined #yocto01:22
*** ablu <ablu!~m-bfyrfh@user/Ablu> has quit IRC (Ping timeout: 264 seconds)01:54
*** ablu <ablu!~m-bfyrfh@user/Ablu> has joined #yocto01:55
*** Vonter <Vonter!~Vonter@user/vonter> has joined #yocto02:57
*** CombatWombat42 <CombatWombat42!~spovilus@c-73-217-66-250.hsd1.co.comcast.net> has quit IRC (Ping timeout: 264 seconds)03:29
*** wooosaiiii1 <wooosaiiii1!~Thunderbi@89-212-21-243.static.t-2.net> has joined #yocto04:01
*** wooosaiiii <wooosaiiii!~Thunderbi@89-212-21-243.static.t-2.net> has quit IRC (Ping timeout: 252 seconds)04:03
*** wooosaiiii1 is now known as wooosaiiii04:03
bqanyone using `kas` knows how to get it to perform submodule clones? xyproblem here is I'm kassifying an old 2016-era stack and it requires bitbake to be cloned inside oe-core. This creates an ordering problem with kas, so I thought maybe I could add bitbake as a submod on a private branch of oe-core instead...04:20
bqAlas it doesn't perform a recursive clone/checkout, so submods don't appear to work around the ordering problem04:21
*** jmd <jmd!~user@2001:a61:2b57:a201:4b92:15ba:c66d:13b9> has joined #yocto04:41
*** jmd <jmd!~user@2001:a61:2b57:a201:4b92:15ba:c66d:13b9> has quit IRC (Remote host closed the connection)04:46
*** goliath <goliath!~goliath@user/goliath> has joined #yocto04:55
*** jmd <jmd!~user@195.243.197.82> has joined #yocto05:14
*** rob_w <rob_w!~bob@host-82-135-31-73.customer.m-online.net> has joined #yocto06:05
*** CrazyGecko <CrazyGecko!~gecko@90.251.200.213.static.wline.lns.sme.cust.swisscom.ch> has joined #yocto06:26
*** mckoan|away is now known as mckoan06:39
*** rfuentess <rfuentess!~rfuentess@lfbn-lyo-1-1566-5.w90-52.abo.wanadoo.fr> has joined #yocto07:05
*** zpfvo <zpfvo!~fvo@i59F5CF56.versanet.de> has joined #yocto07:07
*** Kubu_work <Kubu_work!~kubu@lfbn-nan-1-335-137.w82-120.abo.wanadoo.fr> has joined #yocto07:10
*** gsalazar <gsalazar!~gsalazar@107.105.60.94.rev.vodafone.pt> has joined #yocto07:11
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has joined #yocto07:25
*** alperak <alperak!uid641238@id-641238.ilkley.irccloud.com> has joined #yocto07:39
*** florian <florian!~florian@port-217-146-132-69.static.as20676.net> has joined #yocto07:40
*** Jones42 <Jones42!~Jones42@user/Jones42> has joined #yocto07:50
*** leon-anavi <leon-anavi!~Leon@46.55.231.62> has joined #yocto07:51
*** frieder <frieder!~frieder@i4DF67AE6.pool.tripleplugandplay.com> has joined #yocto07:56
*** florian_kc <florian_kc!~florian@port-217-146-132-69.static.as20676.net> has joined #yocto07:56
*** Jones42_ <Jones42_!~Jones42@user/Jones42> has joined #yocto08:07
*** Jones42__ <Jones42__!~Jones42@user/Jones42> has joined #yocto08:10
*** Jones42 <Jones42!~Jones42@user/Jones42> has quit IRC (Ping timeout: 252 seconds)08:11
*** Jones42_ <Jones42_!~Jones42@user/Jones42> has quit IRC (Read error: Connection reset by peer)08:13
*** altru <altru!~altru@static-css-ccs-204145.business.bouyguestelecom.com> has joined #yocto08:14
*** altru <altru!~altru@static-css-ccs-204145.business.bouyguestelecom.com> has quit IRC (Ping timeout: 250 seconds)08:19
*** Guest13 <Guest13!~Guest13@132.198.137.78.rev.vodafone.pt> has joined #yocto08:29
*** mvlad <mvlad!~mvlad@2a02:2f05:821a:fb00:e88e:21ff:fe65:be18> has joined #yocto08:30
Guest13hi. im still having problems with my package not being included inmy rootfs.08:31
Guest13RDEPENDS:${PN} += "abc"08:31
Guest13if i build image, it does not build it.08:31
Guest13however, if i build it manually bitbake abc, it builds, but still not being included into my rootfs08:31
Guest13how can i debug it08:31
Guest13the rdependsis on my packagegroup08:33
qschulzGuest13: check that your packagegroup actually have abc in its RDEPENDS08:35
qschulzGuest13: check that your image actually install the proper packagegroup package08:35
qschulzGuest13: check that you don't have multiple recipes named abc and yours is not picked08:35
*** jmd <jmd!~user@195.243.197.82> has quit IRC (Remote host closed the connection)08:36
Guest13and how do i check that08:36
Guest131. rdepends ... += "abc" is a line in my packagegroup, so im assuming yes08:37
Guest132. how08:37
Guest133. dont think so, but how can i check this with bitbake tools08:37
qschulz1. I think you could use bitbake-getvar for this08:38
qschulzbut if you cannot bitbake -e will do (pipe to a file, you get millions of lines)08:38
qschulzyou want to pass the name of the packagegroup recipe to it, not the image08:39
*** Jones42_ <Jones42_!~Jones42@user/Jones42> has joined #yocto08:41
qschulz2. the easiest I know of is to just remove the recipe and see if your image still builds08:41
qschulzotherwise probably bitbake -g <image> and look into one of the generated files, it's probably something like installed-packages or something like that08:42
qschulzif your packagegroup is in there, you're good08:42
qschulz3. bitbake-layers show-recipes -m should be enough I guess08:43
qschulzthough I am not sure how it handles differently named recipes that PROVIDES the same recipe /me shrugs08:43
*** Jones42__ <Jones42__!~Jones42@user/Jones42> has quit IRC (Ping timeout: 268 seconds)08:44
*** Jones42_ <Jones42_!~Jones42@user/Jones42> has quit IRC (Read error: Connection reset by peer)08:48
*** Guest0 <Guest0!~Guest0@ns-01.wenglor.de> has joined #yocto09:00
*** Articulus <Articulus!~Articulus@2601:642:4900:741:16ac:60ff:fed8:386b> has quit IRC (Quit: Leaving)09:01
Guest13interesting. package shows in recipes.txt (bitbake-layers show-recipes) but it DOES NOT show in task-depends and pn-buildlist09:04
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has quit IRC (Ping timeout: 264 seconds)09:05
*** enok <enok!~Thunderbi@94.191.153.63> has joined #yocto09:22
rburtonGuest13: build the packagegroup, does that build the recipe?09:30
*** enok <enok!~Thunderbi@94.191.153.63> has quit IRC (Ping timeout: 240 seconds)09:34
*** guestkati <guestkati!~guestkati@adsl-191.176.58.138.tellas.gr> has joined #yocto09:36
*** guestkati <guestkati!~guestkati@adsl-191.176.58.138.tellas.gr> has left #yocto09:36
*** guestkati <guestkati!~guestkati@adsl-191.176.58.138.tellas.gr> has joined #yocto09:37
*** alessioigor <alessioigor!~alessioig@185.178.95.238> has joined #yocto09:41
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has joined #yocto09:42
*** guestkati <guestkati!~guestkati@adsl-191.176.58.138.tellas.gr> has quit IRC (Ping timeout: 250 seconds)09:43
*** ys <ys!~ys@49.204.85.206> has joined #yocto10:04
*** Guest0 <Guest0!~Guest0@ns-01.wenglor.de> has quit IRC (Quit: Client closed)10:46
*** ys <ys!~ys@49.204.85.206> has quit IRC (Quit: Client closed)11:14
*** ys <ys!~ys@49.204.85.206> has joined #yocto11:15
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has quit IRC (Ping timeout: 264 seconds)12:02
*** Saur_Home51 <Saur_Home51!~Saur_Home@94-137-113-31.customers.ownit.se> has quit IRC (Quit: Client closed)12:08
*** Saur_Home51 <Saur_Home51!~Saur_Home@94-137-113-31.customers.ownit.se> has joined #yocto12:08
*** sfo <sfo!d6f77adfe3@user/sfo/x-3716460> has quit IRC (Remote host closed the connection)12:13
*** tostr <tostr!60aa75e090@user/tostr> has quit IRC (Write error: Broken pipe)12:13
*** jonesv <jonesv!e7e4272e85@2a03:6000:1812:100::10b5> has quit IRC (Remote host closed the connection)12:13
*** tleb <tleb!6dbdd9ebc9@2a03:6000:1812:100::10cf> has quit IRC (Remote host closed the connection)12:13
*** raghavgururajan <raghavgururajan!ea769b8000@user/raghavgururajan> has quit IRC (Remote host closed the connection)12:13
*** raghavgururajan <raghavgururajan!ea769b8000@user/raghavgururajan> has joined #yocto12:13
*** jonesv <jonesv!e7e4272e85@2a03:6000:1812:100::10b5> has joined #yocto12:13
*** sfo <sfo!d6f77adfe3@user/sfo/x-3716460> has joined #yocto12:14
*** tleb <tleb!6dbdd9ebc9@2a03:6000:1812:100::10cf> has joined #yocto12:14
*** tostr <tostr!60aa75e090@user/tostr> has joined #yocto12:14
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has joined #yocto12:14
*** cbeznea <cbeznea!~cbeznea@82.78.167.189> has joined #yocto12:29
*** ys <ys!~ys@49.204.85.206> has quit IRC (Ping timeout: 250 seconds)12:41
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Quit: jmiehe)12:54
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has joined #yocto13:12
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has joined #yocto13:14
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Client Quit)13:16
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has joined #yocto13:19
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Client Quit)13:19
*** rob_w <rob_w!~bob@host-82-135-31-73.customer.m-online.net> has quit IRC (Remote host closed the connection)13:19
*** mdb977 <mdb977!~mdb977@147.161.246.81> has joined #yocto14:03
*** Jones42 <Jones42!~Jones42@user/Jones42> has joined #yocto14:06
mdb977Hi there, I have an python function (do_foo) added to ROOTFS_PREPROCESS_COMMAND. Now, I want to make an inter-task dependency and wrote "do_foo[depends] = "somerecipe-native:do_bar". But, this seems not to work, somerecipe-native is not added to my buildlist. Where is my error in thinking?14:08
rburtonmdb977: depends are between tasks, and a preprocess command isn't a task14:20
mdb977rburton: Thanks. Is there another way of expressing something like this?14:23
rburtonadd the dependency to do_rootfs when you add the preprocess command14:23
mdb977Thanks. I'll try.14:24
*** goliath <goliath!~goliath@user/goliath> has quit IRC (Quit: SIGSEGV)14:30
*** frieder <frieder!~frieder@i4DF67AE6.pool.tripleplugandplay.com> has quit IRC (Quit: Leaving)14:38
*** ys <ys!~ys@2405:201:d01d:b874:6dbb:d748:5a26:2194> has joined #yocto14:45
*** mdb977 <mdb977!~mdb977@147.161.246.81> has quit IRC (Quit: Leaving)14:53
*** jmd <jmd!~user@2001:a61:2b57:a201:4b92:15ba:c66d:13b9> has joined #yocto15:02
Jones42OnkelUlla: a colleague recently pointed me towards https://git.yoctoproject.org/meta-security/tree/classes/dm-verity-img.bbclass . So now I'm a bit confused regarding the differences between that one and your proposed bbclass and why you made the effort of writing your own. Could you maybe enlighten me with a line or two?15:10
*** Saur_Home51 <Saur_Home51!~Saur_Home@94-137-113-31.customers.ownit.se> has quit IRC (Quit: Client closed)15:13
*** Saur_Home51 <Saur_Home51!~Saur_Home@94-137-113-31.customers.ownit.se> has joined #yocto15:13
*** CrazyGecko <CrazyGecko!~gecko@90.251.200.213.static.wline.lns.sme.cust.swisscom.ch> has quit IRC (Ping timeout: 255 seconds)15:13
*** CrazyGecko <CrazyGecko!~gecko@90.251.200.213.static.wline.lns.sme.cust.swisscom.ch> has joined #yocto15:20
*** CrazyGecko <CrazyGecko!~gecko@90.251.200.213.static.wline.lns.sme.cust.swisscom.ch> has quit IRC (Ping timeout: 268 seconds)15:29
*** joekale <joekale!~joekale@204.156.190.21> has joined #yocto15:37
*** yudjinn <yudjinn!~yudjinn@c-73-153-47-71.hsd1.co.comcast.net> has joined #yocto15:53
*** joekale_ <joekale_!~quassel@140.177.186.53> has joined #yocto15:57
*** joekale_ <joekale_!~quassel@140.177.186.53> has quit IRC (Client Quit)15:57
*** joekale <joekale!~joekale@204.156.190.21> has quit IRC (Quit: ZNC 1.9.0 - https://znc.in)15:58
*** rfuentess <rfuentess!~rfuentess@lfbn-lyo-1-1566-5.w90-52.abo.wanadoo.fr> has quit IRC (Remote host closed the connection)15:59
*** joekale <joekale!~joekale@204.156.190.21> has joined #yocto15:59
*** joekale <joekale!~joekale@204.156.190.21> has quit IRC (Client Quit)16:01
*** joekale <joekale!~joekale@204.156.190.21> has joined #yocto16:03
*** CombatWombat42 <CombatWombat42!~spovilus@149.199.90.20> has joined #yocto16:03
*** CombatWombat42 <CombatWombat42!~spovilus@149.199.90.20> has quit IRC (Ping timeout: 268 seconds)16:11
*** ys <ys!~ys@2405:201:d01d:b874:6dbb:d748:5a26:2194> has quit IRC (Quit: Client closed)16:15
*** xmn <xmn!~xmn@2600:4040:9398:a200:30c7:c3d1:9087:8063> has quit IRC (Ping timeout: 264 seconds)16:18
*** zpfvo <zpfvo!~fvo@i59F5CF56.versanet.de> has quit IRC (Remote host closed the connection)16:24
*** CombatWombat42 <CombatWombat42!~spovilus@149.199.90.20> has joined #yocto16:31
*** florian <florian!~florian@port-217-146-132-69.static.as20676.net> has quit IRC (Quit: Ex-Chat)16:43
*** florian_kc <florian_kc!~florian@port-217-146-132-69.static.as20676.net> has quit IRC (Ping timeout: 255 seconds)16:48
*** Saur_Home51 <Saur_Home51!~Saur_Home@94-137-113-31.customers.ownit.se> has quit IRC (Quit: Client closed)16:51
*** Saur_Home51 <Saur_Home51!~Saur_Home@94-137-113-31.customers.ownit.se> has joined #yocto16:51
*** mckoan is now known as mckoan|away16:54
*** alperak <alperak!uid641238@id-641238.ilkley.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)17:19
*** Jones42 <Jones42!~Jones42@user/Jones42> has quit IRC (Read error: Connection reset by peer)17:19
*** dash_hope <dash_hope!~dash_hope@2600:1700:3bdc:8c10:eda9:baef:5b35:b71c> has joined #yocto17:24
*** leon-anavi <leon-anavi!~Leon@46.55.231.62> has quit IRC (Quit: Leaving)17:26
*** alessioigor <alessioigor!~alessioig@185.178.95.238> has quit IRC (Quit: Client closed)17:29
*** dash_hope <dash_hope!~dash_hope@2600:1700:3bdc:8c10:eda9:baef:5b35:b71c> has quit IRC (Quit: Client closed)17:48
*** dash_hope <dash_hope!~dash_hope@2600:1700:3bdc:8c10:eda9:baef:5b35:b71c> has joined #yocto17:49
*** Guest13 <Guest13!~Guest13@132.198.137.78.rev.vodafone.pt> has quit IRC (Quit: Client closed)17:55
*** Saur_Home22 <Saur_Home22!~Saur_Home@94-137-113-31.customers.ownit.se> has joined #yocto18:04
*** Saur_Home51 <Saur_Home51!~Saur_Home@94-137-113-31.customers.ownit.se> has quit IRC (Ping timeout: 250 seconds)18:08
*** xmn <xmn!~xmn@2600:4040:9398:a200:20e5:a7ae:25b5:5d63> has joined #yocto18:24
khemhttps://www.phoronix.com/review/bsd-linux-threadripper-7980x FreeBSD rocks !18:44
khemI wonder if it was done on distros with newer kernels like Archlinux18:45
*** florian_kc <florian_kc!~florian@dynamic-080-171-048-124.80.171.pool.telefonica.de> has joined #yocto19:00
*** gsalazar <gsalazar!~gsalazar@107.105.60.94.rev.vodafone.pt> has quit IRC (Ping timeout: 264 seconds)19:00
*** dash_hope <dash_hope!~dash_hope@2600:1700:3bdc:8c10:eda9:baef:5b35:b71c> has quit IRC (Ping timeout: 250 seconds)19:02
*** dash_hope <dash_hope!~dash_hope@205.251.233.178> has joined #yocto19:04
*** prabhakalad <prabhakalad!~prabhakar@147.161.225.104> has joined #yocto19:21
*** goliath <goliath!~goliath@user/goliath> has joined #yocto19:22
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has quit IRC (Quit: enok)19:23
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has joined #yocto19:23
*** gsalazar <gsalazar!~gsalazar@107.105.60.94.rev.vodafone.pt> has joined #yocto19:42
*** Haxxa <Haxxa!~Haxxa@2401:d002:4602:ad01:3065:64ff:fe66:6163> has quit IRC (Quit: Haxxa flies away.)20:15
*** jmd <jmd!~user@2001:a61:2b57:a201:4b92:15ba:c66d:13b9> has quit IRC (Remote host closed the connection)20:16
*** Haxxa <Haxxa!~Haxxa@2401:d002:4602:ad01:3065:64ff:fe66:6163> has joined #yocto20:17
*** gsalazar <gsalazar!~gsalazar@107.105.60.94.rev.vodafone.pt> has quit IRC (Ping timeout: 256 seconds)20:18
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has quit IRC (Ping timeout: 255 seconds)20:23
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has joined #yocto20:26
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has quit IRC (Ping timeout: 255 seconds)20:30
*** tangofoxtrot <tangofoxtrot!~tangofoxt@user/tangofoxtrot> has quit IRC (Remote host closed the connection)20:33
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has joined #yocto20:34
*** tangofoxtrot <tangofoxtrot!~tangofoxt@user/tangofoxtrot> has joined #yocto20:35
*** cbeznea <cbeznea!~cbeznea@82.78.167.189> has quit IRC (Ping timeout: 240 seconds)20:44
*** dash_hope <dash_hope!~dash_hope@205.251.233.178> has quit IRC (Ping timeout: 250 seconds)20:52
*** gsalazar <gsalazar!~gsalazar@107.105.60.94.rev.vodafone.pt> has joined #yocto21:02
*** polprog_ <polprog_!~ath0@user/polprog> has quit IRC (Quit: upgrade)21:04
*** mvlad <mvlad!~mvlad@2a02:2f05:821a:fb00:e88e:21ff:fe65:be18> has quit IRC (Quit: Leaving)21:07
*** polprog <polprog!~ath0@user/polprog> has joined #yocto21:09
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has joined #yocto21:12
*** dash_hope <dash_hope!~dash_hope@2600:1700:3bdc:8c10:c137:240b:b27a:ba9c> has joined #yocto21:16
*** gsalazar <gsalazar!~gsalazar@107.105.60.94.rev.vodafone.pt> has quit IRC (Ping timeout: 255 seconds)21:21
*** enok <enok!~Thunderbi@c-4550e353.06-290-73746f71.bbcust.telenor.se> has quit IRC (Ping timeout: 252 seconds)21:32
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Quit: jmiehe)21:44
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has joined #yocto21:47
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Client Quit)21:49
*** Kubu_work <Kubu_work!~kubu@lfbn-nan-1-335-137.w82-120.abo.wanadoo.fr> has quit IRC (Quit: Leaving.)22:02
*** goliath <goliath!~goliath@user/goliath> has quit IRC (Quit: SIGSEGV)22:08
*** bantu_ <bantu_!~bantu@edna.bantux.com> has quit IRC ()22:58
*** bantu <bantu!~bantu@edna.bantux.com> has joined #yocto22:58
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has joined #yocto23:01
*** florian_kc <florian_kc!~florian@dynamic-080-171-048-124.80.171.pool.telefonica.de> has quit IRC (Ping timeout: 252 seconds)23:01
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Quit: jmiehe)23:25
*** CombatWombat42 <CombatWombat42!~spovilus@149.199.90.20> has quit IRC (Ping timeout: 268 seconds)23:29
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has joined #yocto23:30
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Quit: jmiehe)23:40
*** dash_hope <dash_hope!~dash_hope@2600:1700:3bdc:8c10:c137:240b:b27a:ba9c> has quit IRC (Quit: Client closed)23:43

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!