Friday, 2017-09-29

*** stephano <stephano!~stephano@134.134.139.74> has joined #yocto00:01
*** sgw <sgw!~swold@c-71-238-116-168.hsd1.or.comcast.net> has quit IRC00:02
*** sgw <sgw!swold@nat/intel/x-btnwlpnqkvpiiopr> has joined #yocto00:03
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-yixtbxdrhdimqtza> has quit IRC00:06
*** bbarr <bbarr!~bbarr@ip70-188-182-91.ri.ri.cox.net> has quit IRC00:12
*** User__ <User__!~User@mti-37-145.tm.net.my> has joined #yocto00:24
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto00:29
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-cayjoifqzdlgbvmh> has joined #yocto00:30
User__After I configured with bitbake -c menuconfig virtual/kernel and save, I did bitbake virtual/kernel, but after a few seconds the operation is finished without errors.  However it did not seem to have recompiled my kernel. Anything wrong?00:36
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has joined #yocto00:40
*** zarzar <zarzar!~zarzar@184.75.233.58> has quit IRC00:56
*** zarzar <zarzar!~zarzar@184.75.233.58> has joined #yocto00:57
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC01:00
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto01:00
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has quit IRC01:04
*** zeddii <zeddii!~bruce@128.224.252.2> has quit IRC01:04
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has joined #yocto01:04
*** msvb-lab <msvb-lab!~michael@x55b5428c.dyn.telefonica.de> has quit IRC01:04
*** zeddii <zeddii!~bruce@128.224.252.2> has joined #yocto01:04
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC01:05
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC01:05
*** bodangly_ <bodangly_!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto01:10
*** msvb-lab <msvb-lab!~michael@x55b54041.dyn.telefonica.de> has joined #yocto01:16
*** kpo <kpo!~bob@dynamic-78-8-156-50.ssp.dialog.net.pl> has quit IRC01:23
bodangly_Excuse me if this is inappropriate. But I am looking for a young junior dev, maybe still in college, who is a Linux enthusiast and looking to get some hands on experience and training with a Yocto build in production. There would be compensation for it.01:24
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has quit IRC01:27
*** Snert <Snert!~LoginName@106-24-237-24.gci.net> has quit IRC01:30
*** Snert <Snert!~LoginName@106-24-237-24.gci.net> has joined #yocto01:31
*** bodangly_ is now known as bodangly01:34
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC01:38
*** stephano <stephano!~stephano@134.134.139.74> has quit IRC01:46
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto01:47
*** bavery_fn <bavery_fn!bavery@nat/intel/x-fbgbgztwljqptdpu> has quit IRC01:54
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto02:04
User__When I update to a new branch for poky or other meta, how do I make the changes to take effect when I do bitbake image ?02:13
aehs29User__: changes will take effect next time you build an image02:20
aehs29User__: after doing the bitbake -c menuconfig virtual/kernel changing something and saving the file, the config file should invalidate the shared state so when yoiu ask it to rebuild it should "know" something changed and rebuild the whole thing02:21
aehs29User__: you could do bitbake -c cleansstate virtual/kernel and then rebuild which would basically force it to rebuild, however I would investigate further the issue of saving the file, since when you rebuild it will probably wont have the changes you asked for (since it would have invaidated the shared states)02:22
aehs29User__: so, check that you are saving the file, and where you're saving it to02:23
User__aehs29, I just save to default, when choosing save button, it shows .config, I press enter02:24
*** armpit <armpit!~armpit@2601:202:4001:9ea0:c06:a05b:fc56:fd72> has joined #yocto02:27
aehs29User__: what you can do, is save that new .config file somewhere else, and use that as a defconfig02:30
aehs29User__: IIRC basically you put it on your kernel recipe directory, name it defconfig and modify your kernel recipe to add the defconfig file on SRC_URI02:31
aehs29User__: now that file will be used as your base configuration for the kernel02:31
aehs29User__: you may want to check the Yocto kernel dev manual02:32
aehs29User__: http://www.yoctoproject.org/docs/latest/kernel-dev/kernel-dev.html look for defconfig02:32
User__so the .config just created by menuconfig is not used to build the kernel?02:34
aehs29User__: it should be, Im just proposing a solution in case its not02:36
aehs29User__: but it should be used without you doing anything else other than saving it02:37
User__I see. Just confused why there is .config and defconfig02:37
aehs29User__: the .config is created from the defconfig02:38
aehs29User__: in case you specify it02:38
aehs29User__: so if the bitbake finds a defconfig it will use it as base to create .config and it will then build the kernel using the .config file it just created02:39
User__I just tried to bitbake the new image (after modifying with menuconfig, and issuing bitbake -c cleansstate virtual/kernel).  It took a few minutes, but when I verified the images, I looks the same as before (same size, but with updated current date and time)02:43
User__I think the kernel was not rebuilt with the new config file?02:44
aehs29User__: it whould rebuild once you modify your .config, idk why its not doing it, if you use it as defconfig you would force the changes02:50
User__aehs29, How to use it as deconfig?02:56
User__aehs29, Is there a procedure to do to "use it as deconfig"?02:57
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC02:57
User__I mean defconfig02:57
aehs29User__: what I just mentioned above, you add it on SRC_URI on your kernel recipe file and copy it to the directory03:04
aehs29User__: on the kernel dev manual says how to do it http://www.yoctoproject.org/docs/latest/kernel-dev/kernel-dev.html\03:05
User__aehs29, Ok. thanks.  Just was not sure if what you said before was optional03:07
*** redengin_ <redengin_!~redengin@2601:600:987f:e616:e992:754b:1802:ddb9> has quit IRC03:20
*** redengin_ <redengin_!~redengin@2601:600:987f:e616:51ca:464d:8aa4:396e> has joined #yocto03:31
*** catch22 <catch22!~catch22__@220.57.96.58.static.exetel.com.au> has joined #yocto03:45
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has joined #yocto03:56
*** khem <khem!~khem@unaffiliated/khem> has quit IRC04:02
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto04:05
*** baali <baali!~baali@103.213.21.167> has joined #yocto04:09
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-ysrmpuqwkupeffda> has quit IRC04:10
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-vdncychtmfzaychd> has joined #yocto04:13
*** baali1 <baali1!~baali@117.215.144.78> has joined #yocto04:24
*** baali <baali!~baali@103.213.21.167> has quit IRC04:24
*** baali1 is now known as baali04:27
mattsmhttps://eula-downloads.yoctoproject.org/index.php04:52
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has joined #yocto05:11
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has quit IRC05:15
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has joined #yocto05:17
*** m4ho <m4ho!~m4ho@unaffiliated/m4ho> has quit IRC05:23
*** m4ho <m4ho!~m4ho@unaffiliated/m4ho> has joined #yocto05:24
*** morphis <morphis!~morphis@pD9ED759E.dip0.t-ipconnect.de> has joined #yocto05:25
*** t0mmy <t0mmy!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has quit IRC05:27
*** wooosaiiii <wooosaiiii!5a9db45f@gateway/web/freenode/ip.90.157.180.95> has quit IRC05:47
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-czsdyirgvlqtpexz> has quit IRC05:56
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto05:58
*** agust <agust!~agust@p4FCB648A.dip0.t-ipconnect.de> has joined #yocto06:02
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto06:06
*** pohly <pohly!~pohly@p5DE8F4E5.dip0.t-ipconnect.de> has joined #yocto06:07
*** gtristan <gtristan!~tristanva@221.147.85.171> has joined #yocto06:14
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC06:16
*** mdnneo <mdnneo!~umaucher@217.89.178.116> has quit IRC06:22
*** colrack <colrack!~colrack@94.126.8.166> has joined #yocto06:30
*** vdehors <vdehors!~vdehors@meu77-6-78-223-226-44.fbx.proxad.net> has joined #yocto06:35
*** hnje <hnje!~hnje@81.216.59.226> has joined #yocto06:37
*** mdnneo <mdnneo!~umaucher@217.89.178.116> has joined #yocto06:40
*** avalluri_ <avalluri_!~avalluri@192.55.54.38> has quit IRC06:42
*** frank_878 <frank_878!~frank@78.4.35.102> has joined #yocto06:43
*** mckoan|away is now known as mckoan06:43
*** avalluri <avalluri!avalluri@nat/intel/x-xfqeoijqjfvcnclr> has joined #yocto06:46
*** hnje <hnje!~hnje@81.216.59.226> has quit IRC06:56
*** hnje <hnje!~hnje@193.106.123.182> has joined #yocto06:56
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has joined #yocto07:02
*** rheagar <rheagar!67e51004@gateway/web/freenode/ip.103.229.16.4> has quit IRC07:03
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto07:03
*** ojdo <ojdo!~ojdo@unaffiliated/ojdo> has quit IRC07:04
*** baali <baali!~baali@117.215.144.78> has quit IRC07:09
*** ojdo <ojdo!~ojdo@unaffiliated/ojdo> has joined #yocto07:10
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto07:18
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has quit IRC07:18
*** fl0v0 <fl0v0!~fvo@p4FC0AF41.dip0.t-ipconnect.de> has joined #yocto07:24
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto07:25
*** toscalix <toscalix!~toscalix@80.91.95.114> has joined #yocto07:39
*** luc4 <luc4!~luca@185.43.148.11> has joined #yocto07:40
*** hnje <hnje!~hnje@193.106.123.182> has quit IRC07:40
*** mihai <mihai!~mihai@unaffiliated/mihai> has joined #yocto07:40
*** hnje <hnje!~hnje@81.216.59.226> has joined #yocto07:42
*** RP11 <RP11!~richard@host86-165-70-172.range86-165.btcentralplus.com> has joined #yocto07:46
*** RP1 <RP1!~richard@host86-165-70-172.range86-165.btcentralplus.com> has quit IRC07:48
frank_878Hello has any of you experieced the SSL: CERTIFICATE_VERIFY_FAILED on a yocto built image?07:49
*** redengin_ <redengin_!~redengin@2601:600:987f:e616:51ca:464d:8aa4:396e> has quit IRC07:50
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto07:51
frank_878I have successfully included openssl and PACKAGECONFIG_append_pn-openssl= " perl" to enable the c_rehash function, but there is no sign of the c_rehash function...07:51
frank_878I believe the problem lies there...07:51
*** redengin <redengin!~redengin@2601:600:987f:e616:4473:b9dc:b623:66d2> has joined #yocto07:52
*** hnje <hnje!~hnje@81.216.59.226> has quit IRC07:53
*** baali <baali!~baali@117.212.18.147> has joined #yocto07:53
*** hnje <hnje!~hnje@193.106.123.182> has joined #yocto07:53
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto07:56
*** diego_r <diego_r!~diego@host57-224-static.7-79-b.business.telecomitalia.it> has joined #yocto07:59
*** gunnarx <gunnarx!~user@unaffiliated/gan> has joined #yocto08:04
*** Bunio_FH <Bunio_FH!~bunio@62.179.106.250> has joined #yocto08:09
*** egavin <egavin!~egavin@24.red-217-126-80.staticip.rima-tde.net> has joined #yocto08:10
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto08:13
*** RP11 <RP11!~richard@host86-165-70-172.range86-165.btcentralplus.com> has quit IRC08:14
*** lukma <lukma!~Thunderbi@89-64-27-66.dynamic.chello.pl> has joined #yocto08:18
lukmaGood morning,08:18
lukmaIf I may ask - is there any description/documentation about the OE build system caching ?08:19
nayfethe sstate-cache magic ;)08:22
*** FabKna <FabKna!~Fabian@89.27.146.131> has joined #yocto08:24
lukmanayfe: yes :), exactly08:27
lukmaThe arcane..... part of OE08:28
lukma(and when some strange errors show up - remove caches :D )08:28
FabKnaHey, is there a solution to layer multiple overlayfs?08:28
*** toanju <toanju!~toanju@185.27.182.30> has joined #yocto08:41
*** cordlandwehr <cordlandwehr!~cordlandw@91.239.177.14> has quit IRC08:44
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto08:47
*** cornel <cornel!~cornel@89.121.200.106> has quit IRC08:54
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto09:17
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has joined #yocto09:17
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC09:21
*** luc4 <luc4!~luca@185.43.148.11> has quit IRC09:35
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC09:35
User__Is hob commonly used to build with poky?09:45
rburtonnot really09:46
rburtonit was never really finished, had bugs, and has been removed for quite some time09:47
User__I see09:52
User__I'm reading open embedded linux with yocto project and there is mentioning of hob09:53
User__sorry, embedded linux development09:54
*** agust <agust!~agust@p4FCB648A.dip0.t-ipconnect.de> has quit IRC09:54
*** agust <agust!~agust@p4FCB648A.dip0.t-ipconnect.de> has joined #yocto09:57
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC09:59
*** alimon- <alimon-!alimon@gateway/shell/linaro/x-rrlhazttilrpvdtx> has quit IRC10:06
*** alimon <alimon!alimon@gateway/shell/linaro/x-uipfsejtaybvjbmp> has joined #yocto10:09
mckoanlukma: sstate-cache is not perfectly working, depends on your scenario10:12
*** dv_ <dv_!~quassel@62.178.118.86> has quit IRC10:14
mckoanUser__: have a look at Toaster10:14
User__mckoan, Will I be getting toasted?10:16
*** dv_ <dv_!~quassel@62.178.118.86> has joined #yocto10:17
mckoanUser__: :-)10:18
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto10:18
*** lpotter <lpotter!~quassel@2001:8003:6470:4900:ba27:ebff:febb:59b> has quit IRC10:19
*** lpotter <lpotter!~quassel@2001:8003:6470:4900:ba27:ebff:febb:59b> has joined #yocto10:19
lukmamckoan: I would like to have better understanding of it10:19
lukmahence I'm looking for some documents to read10:19
lukma(probably for some non OE expert)10:19
User__mckoan, I would like my image black please, both sides.10:20
nayfeFabKna: did you read https://www.kernel.org/doc/Documentation/filesystems/overlayfs.txt ?10:21
User__mckoan, while the kernel still moist..10:21
*** morphis <morphis!~morphis@pD9ED759E.dip0.t-ipconnect.de> has quit IRC10:22
*** morphis <morphis!~morphis@pD9ED759E.dip0.t-ipconnect.de> has joined #yocto10:23
LetoThe2ndhas there been a change lately to the yocto ML in terms of moderation?10:23
mckoanlukma: https://wiki.yoctoproject.org/wiki/Enable_sstate_cache#Use_local_sstate_cache10:23
*** hnje <hnje!~hnje@193.106.123.182> has quit IRC10:25
*** hnje <hnje!~hnje@81.216.59.226> has joined #yocto10:26
lukmamckoan: thx10:26
lukma:)10:26
LetoThe2ndmeh, no moderation change, local postmaster tricked me.10:31
* LetoThe2nd manages to look like an idiot on the ML. hooray!10:32
*** sjolley <sjolley!~sjolley@134.134.139.76> has quit IRC10:40
*** sjolley <sjolley!~sjolley@134.134.139.76> has joined #yocto10:40
*** cornel <cornel!~cornel@89.121.200.106> has joined #yocto10:43
*** sjolley <sjolley!~sjolley@134.134.139.76> has quit IRC10:43
cornelhello10:43
cornelis there a way to tell fetch() to produce debug output?10:43
cornelwould -DDD do this ?10:43
*** sjolley <sjolley!~sjolley@134.134.139.76> has joined #yocto10:45
*** egavin <egavin!~egavin@24.red-217-126-80.staticip.rima-tde.net> has quit IRC10:48
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC10:51
*** berndhs <berndhs!~berndhs@xplr-104-249-225-92.xplornet.com> has joined #yocto10:58
rburtonyes, in the logs11:00
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has quit IRC11:07
*** yann <yann!~yann@twenga-100m-os3-176-62.fib.nerim.net> has quit IRC11:13
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has joined #yocto11:22
*** morphis <morphis!~morphis@pD9ED759E.dip0.t-ipconnect.de> has quit IRC11:29
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has joined #yocto11:30
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto11:31
*** morphis <morphis!~morphis@pD9ED759E.dip0.t-ipconnect.de> has joined #yocto11:33
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto11:36
*** morphis <morphis!~morphis@pD9ED759E.dip0.t-ipconnect.de> has quit IRC11:43
cornelthank you rburton11:45
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto11:46
*** User__ <User__!~User@mti-37-145.tm.net.my> has quit IRC11:47
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC11:48
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-mzmdboktnppyoyqe> has joined #yocto11:49
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC11:50
*** luc4 <luc4!~luca@185.43.148.11> has joined #yocto12:01
*** morphis <morphis!~morphis@pD9ED759E.dip0.t-ipconnect.de> has joined #yocto12:01
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto12:09
*** sjolley <sjolley!~sjolley@134.134.139.76> has quit IRC12:15
*** User12345678 <User12345678!~User@175.143.143.97> has joined #yocto12:16
ramcqrburton: soooooooooooooo....12:19
ramcqrburton: all of this rocket science to change gcc and binutils around to use a different target prefix12:19
*** Net147_ <Net147_!~Net147@unaffiliated/net147> has quit IRC12:19
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto12:20
ramcqit doesn't actually work very well, because everything else is still in the old prefix... ;)12:20
*** milindur <milindur!~milindur@deimos.ca-soft.de> has quit IRC12:20
ramcqso gcc can't find libgcc. immediate fail.12:20
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has quit IRC12:21
ramcqI'm actually wondering if it wouldn't have been quicker to just smash TARGET_SYS to the value I wanted and mop up the damage after all12:22
*** milindur <milindur!~milindur@deimos.ca-soft.de> has joined #yocto12:23
*** Sir_Gallantmon <Sir_Gallantmon!King_InuYa@fedora/ngompa> has joined #yocto12:23
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC12:25
*** gtristan <gtristan!~tristanva@221.147.85.171> has quit IRC12:40
*** hnje <hnje!~hnje@81.216.59.226> has quit IRC12:41
*** dfaught <dfaught!~dfaught@163.188.client.vntx.net> has quit IRC12:44
FabKnaI want multiple partitions in my sdcard image. How to do this?12:47
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-kjwbyzeuktwuxbkp> has joined #yocto12:53
*** marka <marka!~masselst@135-23-92-83.cpe.pppoe.ca> has joined #yocto12:55
*** User12345678 <User12345678!~User@175.143.143.97> has quit IRC12:55
*** User12345678 <User12345678!~User@175.143.143.97> has joined #yocto12:56
*** bbarr <bbarr!~bbarr@ip70-188-182-91.ri.ri.cox.net> has joined #yocto13:00
*** User12345678 <User12345678!~User@175.143.143.97> has quit IRC13:00
*** User__ <User__!~User@175.143.143.97> has joined #yocto13:00
*** stefan___ <stefan___!~stefan@ipbcc3cd23.dynamic.kabel-deutschland.de> has quit IRC13:00
*** lamego <lamego!~jose@134.134.139.72> has joined #yocto13:05
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-lmqmdpyaonrgcztz> has joined #yocto13:07
*** rcw <rcw!~rwoolley@128.224.252.2> has joined #yocto13:10
*** rdanter <rdanter!~rad@cpc76236-cosh15-2-0-cust704.6-1.cable.virginm.net> has quit IRC13:12
*** Shurelous <Shurelous!~igor@187.108.42.203> has joined #yocto13:16
*** rdanter <rdanter!~rad@cpc76236-cosh15-2-0-cust704.6-1.cable.virginm.net> has joined #yocto13:17
*** yann <yann!~yann@178.208.16.32> has joined #yocto13:19
*** Shurelous <Shurelous!~igor@187.108.42.203> has quit IRC13:22
*** Sir_Gallantmon is now known as Conan_Kudo13:22
*** Conan_Kudo is now known as Son_Goku13:23
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has quit IRC13:24
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto13:24
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has quit IRC13:26
*** luc4 <luc4!~luca@185.43.148.11> has quit IRC13:29
rburtonramcq: yeah you might be right :/13:30
ramcq:'(13:31
*** Son_Goku <Son_Goku!King_InuYa@fedora/ngompa> has quit IRC13:35
*** peacememories <peacememories!~textual@e235-037.eduroam.tuwien.ac.at> has joined #yocto13:36
*** maxin <maxin!~maxin@134.134.139.73> has quit IRC13:36
*** Shurelous <Shurelous!~igor@187.108.42.203> has joined #yocto13:40
*** luc4 <luc4!~luca@185.43.148.11> has joined #yocto13:41
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC13:42
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto13:44
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC13:49
*** mmaret <mmaret!~mmaret@89.225.239.251> has joined #yocto13:49
TartarusIs Ed Bartosh around?13:50
nayfeFabKna: with wic, you can specify multiple partitions13:55
nayfeexample here: https://community.nxp.com/thread/38981613:55
*** toscalix_ <toscalix_!~toscalix@80.91.95.114> has joined #yocto13:58
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has quit IRC14:00
*** toscalix <toscalix!~toscalix@80.91.95.114> has quit IRC14:00
*** baali <baali!~baali@117.212.18.147> has quit IRC14:04
*** mdnneo <mdnneo!~umaucher@217.89.178.116> has quit IRC14:05
*** jku_ <jku_!~jku@178-75-131-14.bb.dnainternet.fi> has quit IRC14:09
eduardas_mhello, I have run into a strange error after trying a new machine configuration file instead of the vendor one: https://pastebin.com/1Tb7Bmd114:10
eduardas_mhow do I even start debugging this?14:10
eduardas_mthis is my machine configuration: https://pastebin.com/jVRD9sU114:11
*** geoffrey_l <geoffrey_l!~geoffrey_@163.5.220.176> has joined #yocto14:13
*** Sir_Gallantmon <Sir_Gallantmon!King_InuYa@fedora/ngompa> has joined #yocto14:16
*** hmwel <hmwel!~hmw@zimbra.welvaarts.com> has quit IRC14:29
*** toanju <toanju!~toanju@185.27.182.30> has quit IRC14:29
*** Bunio_FH <Bunio_FH!~bunio@62.179.106.250> has quit IRC14:30
*** stephano <stephano!stephano@nat/intel/x-bhtqoeucgttsimet> has joined #yocto14:37
mckoaneduardas_m: looks like you are running on an existing build for a different machine, try the simpler version is you're advised to wipe out tmp and rebuild14:39
*** mihai <mihai!~mihai@unaffiliated/mihai> has quit IRC14:41
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC14:44
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto14:45
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto14:47
FabKnanayfe: Ty!14:54
*** FabKna <FabKna!~Fabian@89.27.146.131> has quit IRC14:54
*** falk0n <falk0n!~falk0n@a109-49-29-216.cpe.netcabo.pt> has joined #yocto14:54
peacememorieshmm, my linux-xlnx build fails with "permission denied" while trying to run `fixdep`14:56
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has left #yocto15:00
*** falk0n <falk0n!~falk0n@a109-49-29-216.cpe.netcabo.pt> has quit IRC15:00
sgwarmpit: around?  I am looking at the morty lsb failure and want to see the AB log itself, do you have a pointer to that one?15:01
*** peacememories <peacememories!~textual@e235-037.eduroam.tuwien.ac.at> has quit IRC15:11
eduardas_mmckoan: thank you for the advice, but even wiping tmp and sstate-cache did not help15:15
eduardas_mgot same error15:16
rburtoneduardas_m: ti-compat-wireless and fod-som-linyx-variscite both have the same files and your build has them both in15:17
rburtoneduardas_m: you need to decide what one you want and how to stop the other being pulled in15:17
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto15:23
eduardas_mrburton: is it because in linux-variscite recipe there is only COMPATIBLE_MACHINE = "(var-som-mx6|imx6ul-var-dart|imx7-var-som)" and that does not include my machine fod-som?15:24
*** frank_878 <frank_878!~frank@78.4.35.102> has quit IRC15:25
eduardas_mI get it that my machine includes ti-compat-wireless via MACHINE_EXTRA_RDEPENDS, however I can not understand where from the same files come15:26
eduardas_mhow do I know what is the second recipe that wants to include the same files?15:27
*** bodangly <bodangly!~bodangly@12.178.87.98> has joined #yocto15:27
rburtonthe message tells you15:27
*** hnje <hnje!~hnje@5.103.133.127> has joined #yocto15:27
rburtonti-compat-wireless-wl18xx and fod-som-linux-variscite15:28
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC15:29
eduardas_mrburton: I somehow missed that, thank you15:30
*** peacememories <peacememories!~textual@e235-037.eduroam.tuwien.ac.at> has joined #yocto15:35
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto15:37
*** stefan___ <stefan___!~stefan@ipbcc3cd23.dynamic.kabel-deutschland.de> has joined #yocto15:37
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has quit IRC15:38
*** bodangly_ <bodangly_!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto15:38
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has quit IRC15:39
*** vdehors <vdehors!~vdehors@meu77-6-78-223-226-44.fbx.proxad.net> has quit IRC15:40
ramcqrburton: thus far every package I've found with ARM_INSTRUCTION_SET="arm" (to disable thumb) has built OK with thumb turned back on (like every Linux distro does for armhf)15:40
*** bodangly <bodangly!~bodangly@12.178.87.98> has quit IRC15:41
ramcqrburton: I think some of this might be from like, gcc 2.9 on armv4 in 2004 or something15:41
*** kmorrow <kmorrow!81c4e2a4@gateway/web/freenode/ip.129.196.226.164> has quit IRC15:42
*** vdehors <vdehors!~vdehors@meu77-6-78-223-226-44.fbx.proxad.net> has joined #yocto15:43
rburtonramcq: some maybe, some were removed and re-added recently15:44
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has joined #yocto15:46
*** mmaret <mmaret!~mmaret@89.225.239.251> has quit IRC15:47
*** clevernickname <clevernickname!cc3624f5@gateway/web/freenode/ip.204.54.36.245> has joined #yocto15:48
clevernicknameDoes Yocto produce any config files as part of the target image that can be viewed?  For example, if I wanted to see how it was config'd on a running system, is any of that info there?  Or is it only available on the host machine that produced the image?15:50
rburtonclevernickname: nothing like that goes onto the target by default, no15:52
kergothdid bitbake's order of operations change recently? I'm adding to BB_HASHBASE_WHITELIST in a ConfigParsed handler. this used to work, the vars there were set by the time SanityCheck ran, but that's not the case anymore15:56
clevernicknamerburton: Thanks.  I know the kernel has the option of including .config... and was wondering if Yocto did anything similar.15:56
kergothoh, wait, i see, nevermind15:58
kergothi'm blind15:58
* kergoth rolls eyes at self, obviously it's BB_ENV_EXTRAWHITE i need. insufficient caffeine15:58
*** geoffrey_l <geoffrey_l!~geoffrey_@163.5.220.176> has quit IRC15:58
*** fl0v0 <fl0v0!~fvo@p4FC0AF41.dip0.t-ipconnect.de> has quit IRC15:59
rburtonclevernickname: iirc we don't ship the config in a package but it should be trivial to do if its not already an option16:00
*** adca <adca!~adca@193.202.22.66> has quit IRC16:03
*** peacememories <peacememories!~textual@e235-037.eduroam.tuwien.ac.at> has quit IRC16:03
*** peacememories <peacememories!~textual@e235-037.eduroam.tuwien.ac.at> has joined #yocto16:04
*** beneth <beneth!~beneth@lxcb.beneth.fr> has quit IRC16:08
*** beneth <beneth!~beneth@lxcb.beneth.fr> has joined #yocto16:09
*** hnje <hnje!~hnje@5.103.133.127> has quit IRC16:12
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-vdncychtmfzaychd> has quit IRC16:22
*** kpo_ <kpo_!~bob@dynamic-78-8-156-50.ssp.dialog.net.pl> has joined #yocto16:27
*** hnje <hnje!~hnje@5.103.133.127> has joined #yocto16:29
*** Sir_Gallantmon <Sir_Gallantmon!King_InuYa@fedora/ngompa> has quit IRC16:31
*** mckoan is now known as mckoan|away16:32
*** peacememories <peacememories!~textual@e235-037.eduroam.tuwien.ac.at> has quit IRC16:36
*** morphis <morphis!~morphis@pD9ED759E.dip0.t-ipconnect.de> has quit IRC16:38
*** diego_r <diego_r!~diego@host57-224-static.7-79-b.business.telecomitalia.it> has quit IRC16:41
*** luc4 <luc4!~luca@185.43.148.11> has quit IRC16:43
rburtonhalstead: are you working on the ABs today?16:44
*** hnje <hnje!~hnje@5.103.133.127> has quit IRC16:45
*** toscalix_ <toscalix_!~toscalix@80.91.95.114> has quit IRC16:46
*** yann <yann!~yann@178.208.16.32> has quit IRC16:47
*** colrack <colrack!~colrack@94.126.8.166> has quit IRC16:50
rburtonhalstead: dinner is ready so i'm off.  if you need to shut down the autobuilder can you restart nightly against ross/rocko and ross/mut please  :)16:51
*** vdehors <vdehors!~vdehors@meu77-6-78-223-226-44.fbx.proxad.net> has quit IRC16:53
*** Bunio_FH <Bunio_FH!~bunio@h187098.upc-h.chello.nl> has joined #yocto16:55
*** top22 <top22!540ed2b2@gateway/web/freenode/ip.84.14.210.178> has quit IRC16:55
*** vdehors <vdehors!~vdehors@meu77-6-78-223-226-44.fbx.proxad.net> has joined #yocto16:58
*** rcwoolley_ <rcwoolley_!~rwoolley@128.224.252.2> has joined #yocto17:00
*** tavish <tavish!~tavish@unaffiliated/tavish> has joined #yocto17:03
*** rcw <rcw!~rwoolley@128.224.252.2> has quit IRC17:04
*** aratiu <aratiu!~adi@80.97.64.55> has quit IRC17:05
*** aratiu <aratiu!~adi@80.97.64.55> has joined #yocto17:07
*** Bunio_FH <Bunio_FH!~bunio@h187098.upc-h.chello.nl> has quit IRC17:11
halsteadSorry I missed you rburton. I snuck in an did updates on Wednesday. There were some urgent ones. So I won't need to interrupt anything.17:15
kergothah, this fc-cache hang only happens on x86_64. wonder if its a qemu or fontconfig bug17:18
kergothanyone else try a qemux86-64 build with fontconfig installed in an image recently?17:18
*** bodangly_ <bodangly_!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has left #yocto17:20
*** bodangly_ <bodangly_!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto17:20
*** bodangly_ is now known as bodangly17:20
*** lukma <lukma!~Thunderbi@89-64-27-66.dynamic.chello.pl> has quit IRC17:21
*** gunnarx <gunnarx!~user@unaffiliated/gan> has quit IRC17:24
*** sachit <sachit!~sbtkd85@ps3mwgproxy10-dmz.us.dell.com> has quit IRC17:26
*** sachit <sachit!~sbtkd85@ps3mwgproxy10-dmz.us.dell.com> has joined #yocto17:27
*** jg <jg!~jg@2601:18f:981:82c5:1815:9fd2:c8cf:5862> has joined #yocto17:31
*** tavish_ <tavish_!~tavish@unaffiliated/tavish> has joined #yocto17:32
*** tavish <tavish!~tavish@unaffiliated/tavish> has quit IRC17:33
*** Son_Goku <Son_Goku!King_InuYa@fedora/ngompa> has joined #yocto17:38
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-mzmdboktnppyoyqe> has quit IRC17:38
*** fray <fray!~fray@kernel.crashing.org> has quit IRC17:40
*** gunnarx <gunnarx!~user@217-211-99-246-no148.bredband.skanova.com> has joined #yocto17:40
*** gunnarx <gunnarx!~user@unaffiliated/gan> has joined #yocto17:40
*** lamego <lamego!~jose@134.134.139.72> has quit IRC17:47
*** fray <fray!~fray@kernel.crashing.org> has joined #yocto17:52
rburtonkergoth: ab, often.17:52
kergothi'm hitting the hang every time, poky distro, qemux86-64, only meta-sourcery added. digging further17:54
rburtonactual hang?17:56
kergothyep, the qemu-x86_64 fc-cache process has been running for an hour, and interrupting the bitbake leaves that process behind. i have a handful i had to kill -917:57
* kergoth removes meta-sourcery and meta-mentor-staging to try fully stock17:58
malinusI'm having trouble with a python recipe I've made. The dependencies are python-future and python-lxml. Both build just fine. However when building my recipe setup.py fails with "No module named future". Even though python-future is in RDEPENDS and has been build with no problems.17:58
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has quit IRC17:58
malinusIt's like the path hasn't been added or something. Am I missing something?17:59
rburtonwell build depends should be DEPENDS not RDEPENDS18:00
kergothand if you want the native python to see them to run the build tools, you'll want to depend on the native variants18:00
rburtonand if its trying to *run* code at build time using future then you need to inherit pythonnative and DEPEND on python-future18:00
rburtonerm, python-future-native18:00
kergoth:)18:00
rburtonhuh, my good for rocko rc2 branch is failing rather badly18:01
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC18:01
rburtonhalstead: WARNING: The free inode of /srv/autobuilder/autobuilder.yoctoproject.org/pub/sstate (systemd-1) is running low (58.453K left)18:01
sgwarmpit: around?18:02
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto18:02
*** FabKna <FabKna!~Fabian@p2003000623F10D90F869DBD187901784.dip0.t-ipconnect.de> has joined #yocto18:02
rburtonphew its the ab dying!18:02
rburtonhalstead: really off now, can you restart those nightlies when the ab is back?18:02
malinusrburton: thanks a bunch18:03
halsteadrburton, Sure.18:03
*** vdehors <vdehors!~vdehors@meu77-6-78-223-226-44.fbx.proxad.net> has quit IRC18:08
halsteadrburton, I'm not sure what's up since there are 4177271K inodes left on that volume not 53K. Looking into the disk space monitor now.18:14
*** SoniaLeon1 <SoniaLeon1!~sleonbau@134.134.139.75> has joined #yocto18:24
*** rcw <rcw!~rwoolley@128.224.252.2> has joined #yocto18:27
*** rcwoolley_ <rcwoolley_!~rwoolley@128.224.252.2> has quit IRC18:30
*** lukma <lukma!~Thunderbi@89-64-27-66.dynamic.chello.pl> has joined #yocto18:31
frayoverflow problem?18:31
halsteadfray, Perhaps. We've had this many inodes available before with no issues. Maybe the used value (47754741) is overflowing? It has certainly grown.18:34
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has joined #yocto18:35
peacememorieshey everyone. is there a structure for multi-layer yocto projects you recommend?18:40
*** stephano <stephano!stephano@nat/intel/x-bhtqoeucgttsimet> has quit IRC18:41
peacememoriesmy ideas so far are git submodules, the google `repo` command and that's about it^^18:41
rburtonpeacememories: both good choices18:46
peacememoriesit still feels kind of brittle in terms of keeping everything in sync18:46
rburtonhow?  submodules etc are designed to keep stuff in sync...18:48
*** paulg <paulg!~paulg@198-84-204-211.cpe.teksavvy.com> has quit IRC18:48
rburtonjust telling your users to grab random SHAs or track a specific branch manually would be brittle18:48
*** paulg <paulg!~paulg@198-84-204-211.cpe.teksavvy.com> has joined #yocto18:49
FabKnaI try to create a not mounted partition with wic (wks) file. How to achieve that?18:51
peacememoriesalso making sure that all layers land in bblayers.conf would probably require duplication18:52
FabKnanot mounter is not correct. It should be empty.18:52
peacememoriesi'm not saying it's not workable, i just wish there was a clear "this is a good way to do this" method18:52
*** yann <yann!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto18:57
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC19:00
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto19:01
clevernicknamerburton: I don't suppose the DISTRO used for a Yocto build is put any where on the target either?19:03
peacememoriesa propos distro. i don't quite get what a distro actually is in yocto, and in which case i would want to create my own19:04
*** JosePerez <JosePerez!~jgperezc@134.134.139.83> has quit IRC19:05
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC19:05
clevernicknamepeacememories: I do NOT have firm grip on things myself, but I believe DISTRO == build policies for the image.19:06
*** bodangly_ <bodangly_!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto19:08
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC19:08
*** stephano <stephano!stephano@nat/intel/x-lsxqrzscvxrymogm> has joined #yocto19:16
*** paulg <paulg!~paulg@198-84-204-211.cpe.teksavvy.com> has quit IRC19:16
*** paulg <paulg!~paulg@198-84-204-211.cpe.teksavvy.com> has joined #yocto19:21
*** bodangly__ <bodangly__!~bodangly@12.178.87.98> has joined #yocto19:22
*** bodangly_ <bodangly_!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC19:24
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC19:25
rburtonpeacememories: we don't mandate a method, you can pick.  some use repo, some use submodules, some combo-layer.  your choice.19:28
*** tavish_ <tavish_!~tavish@unaffiliated/tavish> has quit IRC19:28
rburtonpeacememories: yeah basically policy in the loosest possible sense.  what machines, what image, what configuration, what recipes.19:28
rburtonpeacememories: if you're using yocto for something non-trivial you should make a custom distro. its trivial.19:29
*** Son_Goku <Son_Goku!King_InuYa@fedora/ngompa> has quit IRC19:29
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has quit IRC19:30
*** pohly <pohly!~pohly@p5DE8F4E5.dip0.t-ipconnect.de> has quit IRC19:31
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto19:33
*** rcw <rcw!~rwoolley@128.224.252.2> has quit IRC19:43
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has joined #yocto19:45
*** Son_Goku <Son_Goku!King_InuYa@fedora/ngompa> has joined #yocto19:46
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has quit IRC19:54
*** rcw <rcw!~rwoolley@128.224.252.2> has joined #yocto19:55
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has joined #yocto19:57
*** rcw <rcw!~rwoolley@128.224.252.2> has quit IRC20:01
*** clevernickname <clevernickname!cc3624f5@gateway/web/freenode/ip.204.54.36.245> has quit IRC20:04
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC20:10
*** bodangly__ <bodangly__!~bodangly@12.178.87.98> has quit IRC20:10
kergothlovely. fc-cache hangs under qemu user emulation only when built by the sourcery toolchain. it runs fine under qemu system emulation, or when built by the oe-core toolchain20:16
kergothfun fun20:17
*** bavery_fn <bavery_fn!~bavery@134.134.139.73> has joined #yocto20:18
*** stephano <stephano!stephano@nat/intel/x-lsxqrzscvxrymogm> has quit IRC20:20
*** gtristan <gtristan!~tristanva@110.11.179.89> has joined #yocto20:27
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-lmqmdpyaonrgcztz> has quit IRC20:36
*** stephano <stephano!stephano@nat/intel/x-nttkrkwqmvpwdgao> has joined #yocto20:40
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC20:44
*** marka <marka!~masselst@135-23-92-83.cpe.pppoe.ca> has quit IRC20:47
*** stephano <stephano!stephano@nat/intel/x-nttkrkwqmvpwdgao> has quit IRC20:47
peacememorieshmm, are there any guides on creating a custom distro, (and when it makes sense)? googling seems to only give me results using "distro" in the classical sense (a la "create a custom distro with yocto" ^^)20:49
kergothpoky is a fine example. just copy meta-poky/conf/distro/poky.conf to your own layer with your own distro name and modify however you want20:52
kergothor base on one of the many other distros, really your call20:52
kergothor create a new one, and see defaultsetup.conf for vars that might be of interest20:53
kergotha distro is just a config file that sets variables that control how things are built, what package manager is used, etc20:53
kergothoverarching policy, generally20:53
*** jg <jg!~jg@2601:18f:981:82c5:1815:9fd2:c8cf:5862> has quit IRC20:53
peacememoriesokay, thx20:59
*** jg_ <jg_!~jg@2601:18f:981:82c5:1815:9fd2:c8cf:5862> has joined #yocto21:05
FabKnaI try to configure read only rootfs with overlayfs with https://github.com/pedwo/meta-readonly-rootfs-overlay . However, it does not work. Does somebody has a bit experience with that?21:07
*** FabKna <FabKna!~Fabian@p2003000623F10D90F869DBD187901784.dip0.t-ipconnect.de> has quit IRC21:19
*** Son_Goku <Son_Goku!King_InuYa@fedora/ngompa> has quit IRC21:26
*** jg_ <jg_!~jg@2601:18f:981:82c5:1815:9fd2:c8cf:5862> has quit IRC21:29
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-bjbtexgexpsofobf> has joined #yocto21:29
*** FabKna <FabKna!~Fabian@p2003000623F10D42F869DBD187901784.dip0.t-ipconnect.de> has joined #yocto21:31
*** gtristan <gtristan!~tristanva@110.11.179.89> has quit IRC21:32
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC21:35
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC21:35
*** RP1 <RP1!~richard@host86-165-70-172.range86-165.btcentralplus.com> has joined #yocto21:35
*** RP1 <RP1!~richard@host86-165-70-172.range86-165.btcentralplus.com> has quit IRC21:42
*** RP1 <RP1!~richard@host86-165-70-172.range86-165.btcentralplus.com> has joined #yocto21:44
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto21:49
*** Shurelous <Shurelous!~igor@187.108.42.203> has quit IRC22:00
*** agust <agust!~agust@p4FCB648A.dip0.t-ipconnect.de> has quit IRC22:06
*** RP11 <RP11!~richard@host86-165-70-172.range86-165.btcentralplus.com> has joined #yocto22:30
*** RP1 <RP1!~richard@host86-165-70-172.range86-165.btcentralplus.com> has quit IRC22:32
*** stephano <stephano!stephano@nat/intel/x-aaokqyynfxghqzwc> has joined #yocto22:36
*** kpo_ <kpo_!~bob@dynamic-78-8-156-50.ssp.dialog.net.pl> has quit IRC22:36
*** demonimin <demonimin!~demonimin@unaffiliated/demonimin> has quit IRC22:49
*** FabKna <FabKna!~Fabian@p2003000623F10D42F869DBD187901784.dip0.t-ipconnect.de> has quit IRC22:57
*** ant_home <ant_home!~ant__@host184-216-dynamic.24-79-r.retail.telecomitalia.it> has joined #yocto23:01
*** RP11 <RP11!~richard@host86-165-70-172.range86-165.btcentralplus.com> has quit IRC23:03
*** RP1 <RP1!~richard@host86-165-70-172.range86-165.btcentralplus.com> has joined #yocto23:12
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC23:13
*** RP1 <RP1!~richard@host86-165-70-172.range86-165.btcentralplus.com> has quit IRC23:17
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto23:17
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto23:18
*** gunnarx <gunnarx!~user@unaffiliated/gan> has quit IRC23:20
*** grma <grma!~gruberm@80.93.38.128> has quit IRC23:21
*** SoniaLeon1 <SoniaLeon1!~sleonbau@134.134.139.75> has quit IRC23:23
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto23:30
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC23:54
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has quit IRC23:56
*** ant_home <ant_home!~ant__@host184-216-dynamic.24-79-r.retail.telecomitalia.it> has quit IRC23:56
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC23:56
*** RP1 <RP1!~richard@host86-165-70-172.range86-165.btcentralplus.com> has joined #yocto23:57

Generated by irclog2html.py 2.11.0 by Marius Gedminas - find it at mg.pov.lt!