Saturday, 2021-11-20

*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has quit IRC (Quit: Leaving)00:12
*** otavio <otavio!~otavio@201-34-65-230.user3p.brasiltelecom.net.br> has quit IRC (Remote host closed the connection)00:23
*** otavio <otavio!~otavio@201-34-65-230.user3p.brasiltelecom.net.br> has joined #yocto00:45
moto-timoJPEW: happiness is a green zuul build00:46
moto-timoJPEW: I forget where I got with usbguard… I was intending to drop that before I generated a PR. No harm, but non functional?00:47
JPEWNot sure... I suppose you're getting all the github notifications. Sorry about that00:49
moto-timoJPEW: nah, I was just looking at the PR intentionally00:49
JPEWmoto-timo: Cool00:50
JPEWIf you check the buildset in zuul (https://zuul.wattissoftware.com/t/wattissoftware-zuul/buildsets) you can download the images from the "deploy" item in the "artifact" tab to flash to a device00:52
moto_timo[m]Ooohhhh00:53
JPEWThose one only stick around for 24 hours though, since I don't have unlimited disk space00:53
JPEW(they are passed to the labgrid tests when gating)00:53
moto_timo[m]Still a cool feature00:53
JPEWEventually I'll make the daily builds publish when they are done00:53
JPEWAnd maybe start a package feed or something... need a prserv first00:54
moto_timo[m]That’s been my plan too00:55
moto-timo Lol. As I randomly switch from irccloud to matrix… depending on which app notification won00:56
moto-timoWhen did it become the 19th? 🤦00:57
moto-timo🏎✈️🚀🛸00:58
*** florian <florian!~florian@dynamic-093-131-011-213.93.131.pool.telefonica.de> has quit IRC (Ping timeout: 268 seconds)01:11
*** marka <marka!~marka@198-84-181-245.cpe.teksavvy.com> has quit IRC (Quit: ZNC 1.8.2 - https://znc.in)01:24
*** marka <marka!~marka@198-84-181-245.cpe.teksavvy.com> has joined #yocto01:24
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has quit IRC (Quit: ZNC - http://znc.in)02:20
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has joined #yocto02:20
*** sakoman <sakoman!~steve@rrcs-66-91-142-162.west.biz.rr.com> has quit IRC (Quit: Leaving.)02:20
Tokamakquite confused on bitbake variable expansion.  I found a recipe that defines `local VAR=foo'.  Is this similar to `export VAR=foo`, expect the context is local to the recipe?02:22
moto-timoTokamak: that’s not Yocto specific, it’s bash https://tldp.org/LDP/abs/html/localvar.html02:28
Tokamakright, but where i'm going insane is yocto's shell syntax isn't actually bash, but inspired by?02:29
Tokamakreading through this: https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-metadata.html#variable-expansion02:29
Tokamak`VAR=foo` would be stored not in the shell environment, but in a bitbake var db, if i'm not going completely insane?02:30
Tokamaki was only caught off guard by this by realizing that ${VAR} is not the same as $VAR02:32
*** lexano <lexano!~lexano@cpe00e06722f0e4-cm98524a70e35e.cpe.net.cable.rogers.com> has quit IRC (Read error: Connection reset by peer)02:32
moto-timoThat’s also not unique to Yocto.02:34
Tokamakthis is a more relevant link: https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-metadata.html#exporting-variables-to-the-environment02:35
moto-timoWhat you are looking at is a shell task. It’s not the same as bitbake variables.02:35
Tokamakthis was non-obvious to me until about 1 hour ago02:35
moto-timoSo in this case, that variable is only in the scope of that shell function or shell task.02:36
Tokamakso where i'm really darn confused is..  bitbake shell tasks are not actually executed by bash?02:36
Tokamakthe syntax of local makes sense (coming from a bash background)  but where i'm really struggling is a somewhat formal definition of the shell task environment.02:38
Tokamak${FOO} expands from yocto var db02:39
Tokamak$FOO expands from environment02:39
TokamakFOO="stuff" sets in yocto var db?export FOO="stuff"  exports to shell?02:39
Tokamaklocal FOO="suff"  creates a local shell variable (to processing context of recipe)?02:39
Tokamak(sorry, copy paste in my irc client really failed here)02:40
moto-timolocal would only be in the scope of the shell task or shell function02:40
TokamakI elaborated the above examples i've seen thus far, are these remotely correct?02:42
moto-timo${} is immediate expansion02:42
moto-timoexport makes it available outside the specific task02:43
moto-timoTry not to make it a black box. It’s all shell and python underneath.02:44
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 256 seconds)02:46
Tokamakhow do i look to make it less of a black box?  e.g. I tried to do $((var1 + var2)), which resulted in an error02:46
moto-timoI can't see your code, so I can only go on what you've asked02:47
moto-timowhat was the error? etc.02:47
Tokamaki just worked around it by piping through bc.  but i'll revert here in a bit for a test02:48
moto-timowhat are you trying to accomplish by adding the variables?02:48
moto-timomost things in the bitbake context are strings, and most commonly the lists are space delimited (so variables which are a list are space delimited)02:49
moto-timoso you could do:02:49
Tokamakultimately i messaged trying to understand how this all works as the links earlier really don't capture the mechanics of variable expansion02:49
moto-timoFOO = "bar"02:49
moto-timoFOO += "baz"02:49
moto-timoecho ${FOO}02:50
moto-timobarbaz02:50
moto-timoor using override syntax02:50
moto-timoFOO = "bar"02:50
moto-timoFOO:append = "baz"02:50
Tokamakoh, i wanted to do the bash arithmetic addition.  $((var1 + var2)) where02:50
moto-timosame result (although normally you are appending to a space delimited variable so you want FOO:append = " baz"02:51
Tokamaki'm calculating image byte offsets for dm-verity02:51
*** vd <vd!~vd@bras-base-mtrlpq2848w-grc-41-70-53-240-121.dsl.bell.ca> has quit IRC (Quit: Client closed)02:51
*** vd <vd!~vd@bras-base-mtrlpq2848w-grc-41-70-53-240-121.dsl.bell.ca> has joined #yocto02:51
Tokamakyea the special syntax for variable appends / overrides makes sense.  i'm just struggling inside the task's shell context02:51
moto-timowe frequently move to python for more complicated tasks, shell has it's limitations and the syntax gets ugly very very fast02:52
moto-timobut without looking at exactly what you've tried, I can't really say much more02:53
Tokamaktrying to give you an example here in a second02:53
moto-timo(and I should be shutting down and idling my brain a bit)02:53
Tokamakwell that fine if you want to shutdown - i appreciate the help you've given02:54
moto-timoif you have something, give it a shot02:54
moto-timono promises02:54
*** sakoman <sakoman!~steve@rrcs-66-91-142-162.west.biz.rr.com> has joined #yocto02:57
Tokamakman, i'm used to the ease of gentoo's wgetpaste.  do you happen to know of a similar tool to upload a file?02:58
moto-timoyou can use pastebin (or use irccloud which allows both pasting snippets and uploading files)02:59
moto-timoor a GitHub gist02:59
moto-timoor put it in a git repo somewhere and paste the link03:00
Tokamakmanual copy-paste is really awkward in my environment, unfortunately03:00
moto-timoso is reading your mind ;?03:00
moto-timo:)03:00
moto-timoj/k03:00
Tokamakhaha, fair.03:01
Tokamak(struggling over here)03:01
moto-timopoor attempt at Friday night humor03:01
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 256 seconds)03:01
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto03:01
*** camus <camus!~Instantbi@58.246.136.202> has joined #yocto03:02
*** alimon <alimon!~alimon@ec2-54-225-101-41.compute-1.amazonaws.com> has quit IRC (Quit: The Lounge - https://thelounge.chat)03:03
*** prabhakarlad <prabhakarlad!~prabhakar@pc.renesas.eu> has quit IRC (Quit: Client closed)03:03
moto-timoyou might need to do $(( var1 = var1 + var2))03:06
moto-timohttp://faculty.salina.k-state.edu/tim/unix_sg/bash/math.html#bash-arithmetic03:07
moto-timoI don't remember trying to do that in a shell task, so YMMV03:09
Tokamakhttps://dpaste.org/FpnS03:09
Tokamaklook at lines 60 and 61.  61 is what gets syntax errors by bitbake's shell parser03:10
Tokamaki mimicked the style of the original recipe.  but haven't tested all changes yet03:11
moto-timothis might be relevant, or not: https://stackoverflow.com/questions/64641596/how-to-calculate-file-size-to-pad-in-bitbake03:12
moto-timoah, I'm not sure you can pipe within a shell task03:12
moto-timoanyway, my eyelids are telling me time to move away from screens03:13
moto-timogood luck!03:13
Tokamakthis is what i mean about being very confused about bitbake's shell being not bash03:13
Tokamakand thanks.  about to try to verify what i have now, with the ugly work arounds03:13
moto-timoI was trying to search the bitbake code for where the shell tasks are called, but  my tired brain didn't find it03:14
Tokamakthanks for trying!03:14
moto-timowhen the EU/UK folks are on-line you might get more help03:14
Tokamaki certainly hope i'm not up that late :P03:14
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 240 seconds)03:16
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto03:34
*** goliath <goliath!~goliath@user/goliath> has quit IRC (Quit: SIGSEGV)03:56
*** jmiehe1 <jmiehe1!~Thunderbi@user/jmiehe> has joined #yocto04:12
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Ping timeout: 268 seconds)04:14
*** jmiehe1 is now known as jmiehe04:14
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 268 seconds)04:29
*** chep <chep!~chep@88.168.197.200> has joined #yocto04:32
*** sakoman <sakoman!~steve@rrcs-66-91-142-162.west.biz.rr.com> has quit IRC (Quit: Leaving.)04:43
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds)04:46
*** chep <chep!~chep@88.168.197.200> has joined #yocto04:49
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 264 seconds)05:12
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto05:28
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 260 seconds)05:39
*** Vonter <Vonter!~Vonter@user/vonter> has joined #yocto05:45
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto05:55
*** xmn <xmn!~xmn@cpe-72-225-198-203.nyc.res.rr.com> has quit IRC (Ping timeout: 260 seconds)06:05
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 264 seconds)06:27
*** chep <chep!~chep@88.168.197.200> has joined #yocto06:30
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has joined #yocto07:08
*** davidinux <davidinux!~davidinux@84.17.59.176> has joined #yocto07:24
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has quit IRC (Quit: Leaving)07:26
*** camus1 <camus1!~Instantbi@58.246.136.202> has joined #yocto07:29
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has joined #yocto07:29
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 256 seconds)07:29
*** camus1 is now known as camus07:29
*** pgowda_ <pgowda_!uid516182@ilkley.irccloud.com> has joined #yocto07:44
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 240 seconds)07:48
*** camus <camus!~Instantbi@58.246.136.202> has joined #yocto07:48
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds)08:28
*** chep <chep!~chep@88.168.197.200> has joined #yocto08:32
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 260 seconds)08:51
*** chep <chep!~chep@88.168.197.200> has joined #yocto08:54
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has joined #yocto09:05
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has quit IRC (Ping timeout: 240 seconds)09:20
*** adrian__ <adrian__!~F_Adrian@62.32.0.69> has joined #yocto10:08
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 240 seconds)10:33
*** camus <camus!~Instantbi@58.246.136.202> has joined #yocto10:33
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has joined #yocto10:44
*** zyga <zyga!~zyga@31.0.173.147> has joined #yocto10:47
RPTokamak: Firstly, bitbake uses sh syntax, not bash, we don't support bashisms. Secondly, bitbake performs variable expansion on the shell tasks before running them. This means ${XXX} will be expanded if XXX is set in the datastore10:52
RPTokamak: finally, we do have to parse the shell to get some dependency information. Our parser doesn't understand some shell expressions so you will see errors if you use syntax our parser doesn't understand10:53
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has quit IRC (Ping timeout: 260 seconds)11:10
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 256 seconds)11:16
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has joined #yocto11:17
*** dtometzki <dtometzki!~dtometzki@fedora/dtometzki> has quit IRC (Quit: ZNC 1.8.2 - https://znc.in)11:28
*** dtometzki <dtometzki!~dtometzki@fedora/dtometzki> has joined #yocto11:29
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto11:30
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has quit IRC (Quit: Leaving)11:32
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 268 seconds)12:18
*** camus1 <camus1!~Instantbi@58.246.136.202> has joined #yocto12:19
*** chep <chep!~chep@88.168.197.200> has joined #yocto12:21
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 265 seconds)12:21
*** camus1 is now known as camus12:21
*** bps <bps!~bps@80.71.142.18.ipv4.parknet.dk> has joined #yocto12:29
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has quit IRC (Read error: Connection reset by peer)12:32
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has joined #yocto12:32
*** xmn <xmn!~xmn@cpe-72-225-198-203.nyc.res.rr.com> has joined #yocto12:40
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Quit: camus)13:02
*** bps <bps!~bps@user/bps> has quit IRC (Ping timeout: 264 seconds)13:02
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has quit IRC (Read error: Connection reset by peer)13:03
*** florian__ <florian__!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has joined #yocto13:03
*** bps <bps!~bps@80.71.142.18.ipv4.parknet.dk> has joined #yocto13:08
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has joined #yocto13:12
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 260 seconds)13:14
*** chep <chep!~chep@88.168.197.200> has joined #yocto13:18
*** kanavin <kanavin!~Alexander@2a02:2454:29b:3b00:d35d:e3cf:58b5:748b> has quit IRC (Ping timeout: 265 seconds)13:22
*** prabhakarlad <prabhakarlad!~prabhakar@pc.renesas.eu> has joined #yocto13:26
*** pgowda_ <pgowda_!uid516182@ilkley.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)13:41
*** bps <bps!~bps@user/bps> has quit IRC (Ping timeout: 250 seconds)14:23
*** lexano <lexano!~lexano@cpe00e06722f0e4-cm98524a70e35e.cpe.net.cable.rogers.com> has joined #yocto14:23
*** nad <nad!~nad@pr-svc-em1-115.emea.corpinter.net> has joined #yocto14:30
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has quit IRC (Ping timeout: 240 seconds)14:44
*** zenstoic <zenstoic!uid461840@hampstead.irccloud.com> has joined #yocto15:13
*** bps <bps!~bps@cpe.ge-7-1-9-436.noenqe10.dk.customer.tdc.net> has joined #yocto15:19
*** nad <nad!~nad@pr-svc-em1-115.emea.corpinter.net> has quit IRC (Quit: Client closed)15:42
*** sakoman <sakoman!~steve@rrcs-66-91-142-162.west.biz.rr.com> has joined #yocto15:48
*** florian__ <florian__!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has quit IRC (Ping timeout: 264 seconds)15:54
*** tgamblin_ <tgamblin_!~tgamblin@2607:fea8:c29d:d7c0::e120> has joined #yocto15:56
*** tgamblin <tgamblin!~tgamblin@2607:fea8:c29d:d7c0::e120> has quit IRC (Ping timeout: 264 seconds)15:57
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has joined #yocto16:06
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 240 seconds)16:15
*** chep <chep!~chep@88.168.197.200> has joined #yocto16:19
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 256 seconds)17:12
*** goliath <goliath!~goliath@user/goliath> has joined #yocto17:13
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto17:15
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 268 seconds)17:21
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has quit IRC (Quit: Leaving)17:35
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto17:35
*** nerdboy <nerdboy!~nerdboy@gentoo/developer/nerdboy> has quit IRC (Ping timeout: 250 seconds)17:42
*** Vonter <Vonter!~Vonter@user/vonter> has quit IRC (Quit: WeeChat 3.3)17:45
*** nerdboy <nerdboy!~nerdboy@47.143.129.189> has joined #yocto17:54
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 265 seconds)17:58
*** bps <bps!~bps@user/bps> has quit IRC (Ping timeout: 240 seconds)17:59
*** zenstoic <zenstoic!uid461840@hampstead.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)17:59
*** chep <chep!~chep@88.168.197.200> has joined #yocto18:01
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 240 seconds)18:07
khemRP sent couple of patches to get ptest images going on pi4. Trying to up the CI loop a bit here with more serious testing18:15
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto18:22
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto18:22
Guest66Hi, does anybody know which package/config is creating /usr/lib/opkg/alternatives/ ?18:24
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Client Quit)18:25
*** fleg <fleg!64bf4386e9@user/fleg> has quit IRC (Remote host closed the connection)18:26
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto18:27
vmesonTry: $ oe-pkgdata-util find-path  "/usr/lib/opkg/alternatives*" -- Guest6618:27
Guest66Ma Problem is that the path is available within morty but Not in dunfell…18:28
*** zenstoic <zenstoic!uid461840@hampstead.irccloud.com> has joined #yocto18:31
Guest66So it is returning „unable to find any package producing path…“18:32
vmesonGuest66: odd, I don't think we would have changed anything related to alternatives18:34
* vmeson checks email logs...18:34
Guest66Opkg was updated between morty and dunfell. But could yet Not find why the path is not there.18:36
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Quit: Client closed)18:36
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto18:37
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Client Quit)18:38
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto18:38
vmesonGuest66:  here as an email [OE-core] [PATCH v4] opkg-utils: Change alternatives lib path from /usr/lib/opkg to /var/lib/opkg -- 2017-10-30, 10:12 p.m.18:39
vmesonbut I don't think that was merged.18:39
Guest66Either I dont have it under var18:41
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Ping timeout: 268 seconds)18:42
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Quit: Client closed)18:43
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto18:44
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Quit: Client closed)18:51
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto18:51
TokamakThanks for the context RP.18:56
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Quit: Client closed)18:57
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto18:57
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Client Quit)19:01
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto19:05
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Client Quit)19:08
*** manuel1985 <manuel1985!~manuel198@2a02:1748:dd5c:f290:1973:4823:d0a6:d227> has quit IRC (Remote host closed the connection)19:30
*** manuel1985 <manuel1985!~manuel198@2a02:1748:dd5c:f290:84db:d6a1:a0be:9d57> has joined #yocto19:31
*** Guest10 <Guest10!~Guest10@89.205.130.155> has joined #yocto19:32
*** Guest10 <Guest10!~Guest10@89.205.130.155> has quit IRC (Client Quit)19:33
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds)19:54
*** goliath <goliath!~goliath@user/goliath> has quit IRC (Quit: SIGSEGV)19:58
*** chep <chep!~chep@88.168.197.200> has joined #yocto19:58
*** amitk_ <amitk_!~amit@103.208.69.54> has joined #yocto20:17
*** amitk <amitk!~amit@103.59.74.21> has quit IRC (Ping timeout: 264 seconds)20:20
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds)20:32
*** chep <chep!~chep@88.168.197.200> has joined #yocto20:35
*** goliath <goliath!~goliath@user/goliath> has joined #yocto20:35
*** xmn <xmn!~xmn@cpe-72-225-198-203.nyc.res.rr.com> has quit IRC (Quit: ZZZzzz…)20:37
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 264 seconds)21:03
*** chep <chep!~chep@88.168.197.200> has joined #yocto21:07
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has joined #yocto21:13
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has quit IRC (Ping timeout: 250 seconds)21:22
*** adrian__ <adrian__!~F_Adrian@62.32.0.69> has quit IRC (Ping timeout: 268 seconds)21:26
*** zenstoic <zenstoic!uid461840@hampstead.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)21:29
*** xmn <xmn!~xmn@cpe-72-225-198-203.nyc.res.rr.com> has joined #yocto21:35
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds)21:39
*** chep <chep!~chep@88.168.197.200> has joined #yocto21:43
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has joined #yocto22:30
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 260 seconds)22:45
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Quit: jmiehe)22:50
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto23:00

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