*** benjamirc <benjamirc!besquive@nat/intel/x-jmsnvpciszoohczk> has quit IRC | 00:00 | |
*** staylor_ <staylor_!~staylor@mail.au-zone.com> has quit IRC | 00:13 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-opiiymoutthwwfwf> has joined #yocto | 00:13 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC | 00:19 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 00:27 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-opiiymoutthwwfwf> has quit IRC | 00:30 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 00:30 | |
*** staylor <staylor!~staylor@S01067426ac686a17.cg.shawcable.net> has joined #yocto | 00:31 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 00:41 | |
*** Guest66854 <Guest66854!~mark@c-50-129-137-132.hsd1.il.comcast.net> has quit IRC | 00:45 | |
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p147.net112139222.tokai.or.jp> has joined #yocto | 00:50 | |
el3 | What should I set default machine in conf/local.conf, to if I build for a pcDuino3? | 00:52 |
---|---|---|
*** alimon <alimon!alimon@nat/intel/x-qjplodexqfsgkivp> has quit IRC | 01:01 | |
*** alimon <alimon!~alimon@134.134.139.72> has joined #yocto | 01:01 | |
*** alimon <alimon!~alimon@134.134.139.72> has quit IRC | 01:04 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC | 01:09 | |
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC | 01:13 | |
*** stryx` <stryx`!~stryx@149.255.110.134> has joined #yocto | 01:23 | |
Matulis | with export LIBUSB_DEBUG=3, I see the following error: libusb: error [op_init] could not find usbfs | 01:27 |
*** zecke <zecke!~ich@ip5b42f21c.dynamic.kabel-deutschland.de> has quit IRC | 01:43 | |
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto | 01:46 | |
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has quit IRC | 01:54 | |
*** rperier <rperier!~quassel@ubuntu/member/rperier> has quit IRC | 01:54 | |
chankit | nrossi: you there? | 01:55 |
*** sjolley <sjolley!~sjolley@134.134.139.70> has joined #yocto | 01:56 | |
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has joined #yocto | 01:58 | |
*** rperier <rperier!~quassel@2001:41d0:52:100::44a> has joined #yocto | 01:58 | |
*** slips <slips!~slips@240.150.34.95.customer.cdi.no> has quit IRC | 02:00 | |
nrossi | chankit: am now ;) | 02:01 |
*** slips <slips!~slips@240.150.34.95.customer.cdi.no> has joined #yocto | 02:02 | |
chankit | nrossi: I have one good news and one bad news. The good news is it all goes well and llvm is well inside yocto. However, the binary generated by this compiler isn't compatible with the target platform. Surprisingly, that binary is compatible with my build machine. | 02:04 |
chankit | nrossi: actually I have been stuck with this problem(binary incompatibility) for some time now | 02:04 |
nrossi | chankit: oooo that is quite an issue, so you built a llvm that runs on the target but builds for your buildhost? | 02:05 |
chankit | I did ldd on that binary on my build machine and here's the result http://pastebin.com/pjLYe3nm | 02:06 |
chankit | note that /lib64 is there which suggests that there is still problem with the cross compiling thingy | 02:06 |
chankit | nrossi: I did that although that's not what I want to do | 02:07 |
nrossi | chankit: ok, but are you still using the multilib configuration? | 02:07 |
chankit | Nope | 02:07 |
nrossi | chankit: are you using your own llvm recipe or have you gone to the one in meta-oe? | 02:08 |
chankit | Using multilib avoids the binary incompatibility problem since they are binary compatible with each other | 02:08 |
chankit | my own | 02:08 |
chankit | coz the one in meta-oe isn't working for me :-( | 02:08 |
nrossi | chankit: have you written any complex recipes like this before? if not i might be a good idea to stick with the meta-oe version. | 02:10 |
nrossi | chankit: hmmm llvm looks like it might build differently than other applications, the one thats in meta-oe looks like it is a native 'host-only' build... not sure what that means. Unfortunately my knowledge of llvm is very limited | 02:13 |
*** alimon <alimon!alimon@nat/intel/x-klzsxitphwwuootc> has joined #yocto | 02:15 | |
nrossi | chankit: my understanding is that you want to build an llvm that runs on your target to build for your target, correct? | 02:15 |
chankit | nrossi: yes | 02:16 |
nrossi | chankit: http://llvm.org/docs/HowToCrossCompileLLVM.html this page looks like it might be very helpful | 02:20 |
nrossi | chankit: it appears you are going to want to set some of those CMake options in order to specify the target | 02:20 |
*** Matulis <Matulis!~Matulis@50.244.33.17> has quit IRC | 02:26 | |
*** alimon <alimon!alimon@nat/intel/x-klzsxitphwwuootc> has quit IRC | 02:27 | |
chankit | nrossi: doing that as we speak...I'm also in LLVM IRC so let's hope something good comes out from that | 02:29 |
nrossi | chankit: hmmm just looking at the recipe in meta-oe, i can see what needs to be changed to get it to work. Firstly the "--enable-targets=host-only" -> "--enable-targets=all" | 02:30 |
nrossi | chankit: i will have a play with it here, see what i get going | 02:30 |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 02:41 | |
*** r23s <r23s!d0b90c36@gateway/web/freenode/ip.208.185.12.54> has quit IRC | 02:49 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto | 02:50 | |
*** aehs29 <aehs29!~aehernan@134.134.139.74> has quit IRC | 02:59 | |
chankit | nrossi: thanks..I just added DCMAKE_LLVM_DEFAULT_TARGET_TRIPLE variable | 03:03 |
chankit | let's see what develops from there | 03:03 |
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC | 03:03 | |
-YoctoAutoBuilder- build #206 of nightly is complete: Failure [failed] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly/builds/206 | 03:07 | |
*** dtm <dtm!~dtm@v2.smuckola.org> has left #yocto | 03:08 | |
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto | 03:09 | |
*** nicktick1 <nicktick1!~john@202.103.95.194> has joined #yocto | 03:45 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 03:48 | |
*** zerus_ <zerus_!c0b0015c@gateway/web/freenode/ip.192.176.1.92> has quit IRC | 03:55 | |
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-92.ericsson.net> has quit IRC | 03:57 | |
*** zerus <zerus!~epetmab@81-229-90-163-no67.tbcn.telia.com> has joined #yocto | 03:58 | |
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p147.net112139222.tokai.or.jp> has quit IRC | 04:22 | |
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p147.net112139222.tokai.or.jp> has joined #yocto | 04:24 | |
*** sarahsharp <sarahsharp!~sarah@192.55.55.37> has joined #yocto | 04:39 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 04:50 | |
*** nicktick1 <nicktick1!~john@202.103.95.194> has quit IRC | 04:52 | |
*** tismith <tismith!~toby@203.62.184.110> has quit IRC | 04:55 | |
*** sarahsharp <sarahsharp!~sarah@192.55.55.37> has quit IRC | 05:02 | |
*** tismith <tismith!~toby@203.62.184.110> has joined #yocto | 05:04 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 05:04 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 05:09 | |
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC | 05:19 | |
*** agust <agust!~agust@pD9E2F5CF.dip0.t-ipconnect.de> has joined #yocto | 05:23 | |
*** nicktick1 <nicktick1!~john@113.240.206.230> has joined #yocto | 05:43 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 05:46 | |
*** vignatti <vignatti!~vignatti@annarchy.freedesktop.org> has quit IRC | 05:50 | |
*** vignatti <vignatti!~vignatti@annarchy.freedesktop.org> has joined #yocto | 05:51 | |
*** sujith_h <sujith_h!~sharidas@kde/developers/sujithh> has left #yocto | 05:54 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto | 06:22 | |
*** mago|away is now known as mago_ | 06:36 | |
*** zecke <zecke!~ich@ip5b42f21c.dynamic.kabel-deutschland.de> has joined #yocto | 06:42 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 06:46 | |
*** stryx` <stryx`!~stryx@149.255.110.134> has quit IRC | 06:51 | |
*** zecke <zecke!~ich@ip5b42f21c.dynamic.kabel-deutschland.de> has quit IRC | 06:59 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 07:01 | |
*** nicktick1 <nicktick1!~john@113.240.206.230> has quit IRC | 07:04 | |
*** sujith_h <sujith_h!~sharidas@kde/developers/sujithh> has joined #yocto | 07:08 | |
*** FrankSansC <FrankSansC!~frank@LVelizy-156-45-9-168.w80-11.abo.wanadoo.fr> has joined #yocto | 07:12 | |
FrankSansC | Hi | 07:12 |
*** wadim_ <wadim_!~egorov@mail.visioncatalog.com> has joined #yocto | 07:15 | |
*** stryx`_ <stryx`_!~stryx@149.255.110.134> has joined #yocto | 07:24 | |
bachp | Hello. What is the best way to add staging to the localstatedir (/var) in a recipe? I would like to hava a package that stages additional .js files to /var/www so that application can use them at build time from a tool like grunt. Any hints how to best accomplish this? | 07:37 |
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has joined #yocto | 07:55 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-jnbjwprbeldgrygc> has joined #yocto | 07:57 | |
*** jbrianceau_away is now known as jbrianceau | 07:57 | |
*** patrickz <patrickz!~Thunderbi@212.118.209.82> has joined #yocto | 07:58 | |
*** luyu_ <luyu_!luyu@nat/intel/x-ntowhcpiaetkpwlr> has joined #yocto | 08:05 | |
*** rperier <rperier!~quassel@2001:41d0:52:100::44a> has quit IRC | 08:08 | |
*** rperier <rperier!~quassel@ubuntu/member/rperier> has joined #yocto | 08:08 | |
*** zerus <zerus!~epetmab@81-229-90-163-no67.tbcn.telia.com> has quit IRC | 08:11 | |
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-89.ericsson.net> has joined #yocto | 08:13 | |
*** mckoan|away <mckoan|away!~marco@host56-7-static.30-87-b.business.telecomitalia.it> has joined #yocto | 08:17 | |
*** mckoan|away is now known as mckoan | 08:17 | |
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has joined #yocto | 08:22 | |
mckoan | good morning | 08:24 |
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 08:29 | |
*** egavin <egavin!~egavin_at@43.Red-2-139-180.staticIP.rima-tde.net> has joined #yocto | 08:30 | |
*** florian_kc is now known as florian | 08:31 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 08:32 | |
*** zecke <zecke!~ich@ip5b42f21c.dynamic.kabel-deutschland.de> has joined #yocto | 08:39 | |
*** bluelightning <bluelightning!~paul@83.217.123.106> has joined #yocto | 08:58 | |
*** bluelightning <bluelightning!~paul@83.217.123.106> has quit IRC | 08:58 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 08:58 | |
bluelightning | morning all | 09:10 |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 09:20 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 09:21 | |
*** zecke <zecke!~ich@ip5b42f21c.dynamic.kabel-deutschland.de> has quit IRC | 09:29 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto | 09:43 | |
*** tmpsantos <tmpsantos!~tmpsantos@192.198.151.43> has joined #yocto | 09:44 | |
*** [Sno]_ <[Sno]_!~Sno]@p578b540c.dip0.t-ipconnect.de> has quit IRC | 09:59 | |
*** miandonmenmian <miandonmenmian!~jose@210.22.153.182> has joined #yocto | 10:00 | |
miandonmenmian | where should i add changes to makefile for a downloaded source | 10:01 |
*** belen <belen!Adium@nat/intel/x-pggetduhhilisgwf> has joined #yocto | 10:06 | |
*** alexlarsson <alexlarsson!~alexl@h234n20-mael-a12.ias.bredband.telia.com> has joined #yocto | 10:16 | |
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-bmhkmjufeovljlwz> has joined #yocto | 10:16 | |
alexlarsson | My yocto build has a libpng16-config that just does "exit 1" | 10:17 |
alexlarsson | is this expected? | 10:17 |
*** FrankSansC <FrankSansC!~frank@LVelizy-156-45-9-168.w80-11.abo.wanadoo.fr> has quit IRC | 10:18 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 10:23 | |
*** zecke <zecke!~ich@ip5b406386.dynamic.kabel-deutschland.de> has joined #yocto | 10:24 | |
*** nicktick1 <nicktick1!~john@42.49.142.16> has joined #yocto | 10:26 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 10:29 | |
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has joined #yocto | 10:36 | |
*** miandonmenmian <miandonmenmian!~jose@210.22.153.182> has quit IRC | 10:37 | |
*** pohly <pohly!~pohly@p5DE8D050.dip0.t-ipconnect.de> has joined #yocto | 10:48 | |
bluelightning | alexlarsson: yes: http://www.yoctoproject.org/docs/current/ref-manual/ref-manual.html#migration-1.7-binary-configuration-scripts-disabled | 10:51 |
*** FrankSansC <FrankSansC!~frank@LVelizy-156-45-9-168.w80-11.abo.wanadoo.fr> has joined #yocto | 10:53 | |
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has quit IRC | 10:58 | |
alexlarsson | bluelightning: couldn't it be replaced with a script that calls pkg-config instead? | 11:00 |
*** pev <pev!~pev@2.31.93.81> has joined #yocto | 11:01 | |
*** zecke <zecke!~ich@ip5b406386.dynamic.kabel-deutschland.de> has quit IRC | 11:01 | |
bluelightning | alexlarsson: you'd have to ask RP why we didn't do it that way, I'm assuming it wasn't practical | 11:01 |
pev | Anyone played much with readonly rootfs? Having an odd problem with net-snmp that makes no sense... | 11:02 |
RP | alexlarsson: the idea was to try and kill these things off, there is only a tiny fraction of the system using them now | 11:02 |
RP | alexlarsson: if you put layers of compatibility in, people will just keep using them :( | 11:03 |
alexlarsson | RP: better to not have them then? rather than some makefile getting empty cflags somewhere | 11:05 |
alexlarsson | i guess if exit 1 doesn't break the build then a not-exists won't either | 11:05 |
*** mckoan <mckoan!~marco@host56-7-static.30-87-b.business.telecomitalia.it> has quit IRC | 11:06 | |
*** mckoan <mckoan!~marco@unaffiliated/mckoan> has joined #yocto | 11:06 | |
*** nicktick1 <nicktick1!~john@42.49.142.16> has quit IRC | 11:10 | |
RP | alexlarsson: if used to not exist, people complained so we exit 1 now | 11:13 |
RP | alexlarsson: I suspect we can't win | 11:13 |
alexlarsson | yeah... | 11:13 |
*** zecke <zecke!~ich@ip5b406386.dynamic.kabel-deutschland.de> has joined #yocto | 11:24 | |
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has quit IRC | 11:42 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC | 11:43 | |
*** bobdog555 <bobdog555!~bobdog555@64.128.162.147> has joined #yocto | 11:44 | |
*** [Sno] <[Sno]!~Sno]@p578b540c.dip0.t-ipconnect.de> has joined #yocto | 11:48 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto | 12:00 | |
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto | 12:02 | |
*** dv__ <dv__!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto | 12:03 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC | 12:03 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC | 12:06 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto | 12:19 | |
*** warthog9 <warthog9!~warthog9@149.20.54.19> has quit IRC | 12:21 | |
j105rob | I need a favor..... can someone other than me try to build the meta-virtualization's xen-image-minimal? I am stuck with an error and want to make sure that it is my problem and not an issue with the layer. | 12:25 |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 12:31 | |
*** Nilesh_ <Nilesh_!~minda@114.143.135.194> has quit IRC | 12:37 | |
pev | j105rob: if you have a cut/paste example and tell me what codebase you're using | 12:39 |
j105rob | pev I can pastebin my bblayers and local confs. I'm using poky dizzy | 12:39 |
j105rob | bblayers http://pastebin.com/F1JW7PWE | 12:40 |
j105rob | only change to local is the machine is set to MACHINE ??= "genericx86-64" | 12:41 |
j105rob | the error I am getting is http://pastebin.com/V137AiQ2 | 12:43 |
*** JaMa <JaMa!~martin@ip-89-176-104-3.net.upcbroadband.cz> has joined #yocto | 12:50 | |
*** belen <belen!Adium@nat/intel/x-pggetduhhilisgwf> has quit IRC | 12:56 | |
*** belen <belen!Adium@nat/intel/x-vkejqqyqdqknbabm> has joined #yocto | 12:57 | |
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto | 13:03 | |
*** warthog9 <warthog9!~warthog9@149.20.54.19> has joined #yocto | 13:20 | |
*** warthog9 <warthog9!~warthog9@149.20.54.19> has quit IRC | 13:25 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has quit IRC | 13:26 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has joined #yocto | 13:28 | |
pev | j105rob: Will set off now | 13:32 |
*** Crofton <Crofton!~balister@pool-108-44-84-240.ronkva.east.verizon.net> has quit IRC | 13:32 | |
*** tomz <tomz!~trz@134.134.139.74> has quit IRC | 13:43 | |
*** warthog9 <warthog9!~warthog9@149.20.54.19> has joined #yocto | 13:44 | |
pev | j105rob: Do I need the other non poky layers and what image are you building to test? | 13:44 |
pev | j105rob: If I set up bblayers as http://pastebin.com/5jFrx8Vy is that OK for you? | 13:45 |
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC | 13:47 | |
*** tmpsantos <tmpsantos!~tmpsantos@192.198.151.43> has quit IRC | 13:49 | |
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC | 13:52 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC | 13:52 | |
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto | 13:55 | |
*** tomz <tomz!~trz@134.134.137.71> has joined #yocto | 14:02 | |
*** Matulis <Matulis!~Matulis@50.244.33.17> has joined #yocto | 14:09 | |
*** melio_cc <melio_cc!~melio_cc@static-194-113-26-69.axsne.net> has joined #yocto | 14:22 | |
*** pev <pev!~pev@2.31.93.81> has quit IRC | 14:25 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 14:25 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 14:29 | |
bobdog555 | (from j105rob's earlier request; I need it also)--if you have a cut/paste example and tell me what codebase you're using | 14:29 |
bobdog555 | <j105rob> pev I can pastebin my bblayers and local confs. I'm using poky dizzy | 14:29 |
bobdog555 | <j105rob> bblayers http://pastebin.com/F1JW7PWE | 14:29 |
bobdog555 | <j105rob> only change to local is the machine is set to MACHINE ??= "genericx86-64" | 14:29 |
bobdog555 | <j105rob> the error I am getting is http://pastebin.com/V137AiQ2 | 14:29 |
bobdog555 | <j105rob> I need a favor..... can someone other than me try to build the meta-virtualization's xen-image-minimal? I am stuck with an error and want to make sure that it is my problem and not an issue with the layer. | 14:30 |
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p147.net112139222.tokai.or.jp> has quit IRC | 14:31 | |
*** benjamirc <benjamirc!~besquive@134.134.139.74> has joined #yocto | 14:32 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC | 14:34 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 14:36 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 14:37 | |
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC | 14:38 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 14:42 | |
*** bluelightning <bluelightning!~paul@83.217.123.106> has joined #yocto | 14:42 | |
*** bluelightning <bluelightning!~paul@83.217.123.106> has quit IRC | 14:42 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 14:42 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto | 14:43 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC | 14:56 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 15:03 | |
*** dlan <dlan!~dennis@116.228.88.131> has joined #yocto | 15:04 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 15:04 | |
*** pev <pev!~pev@2.31.93.81> has joined #yocto | 15:09 | |
*** JustasMika <JustasMika!3e3d82e9@gateway/web/freenode/ip.62.61.130.233> has joined #yocto | 15:10 | |
JustasMika | Hi. I want to build an image based on Meta-TI for beaglebone black. I want/need sitara-ti-linux.3.14 kernel (recipe already is on meta-ti) However I get an error saying that the wanted revision was not found even from upstream. How can that be? | 15:12 |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 15:21 | |
*** wadim_ <wadim_!~egorov@mail.visioncatalog.com> has quit IRC | 15:23 | |
-YoctoAutoBuilder- build #191 of nightly-x32 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x32/builds/191 | 15:29 | |
*** Crofton <Crofton!~balister@pool-108-44-84-240.ronkva.east.verizon.net> has joined #yocto | 15:33 | |
JaMa | RP: your last patches went to wrong ML | 15:37 |
*** dguthrie <dguthrie!~dguthrie@212.17.57.102> has joined #yocto | 15:38 | |
dguthrie | I am using lttng userspace library but I am trying to auto generate the code from a .tp file. Is lttng-gen-tp deployed natively in Yocto | 15:40 |
*** alimon <alimon!~alimon@134.134.139.70> has joined #yocto | 15:46 | |
*** sujith_h <sujith_h!~sharidas@kde/developers/sujithh> has left #yocto | 15:56 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 15:57 | |
*** JustasMika <JustasMika!3e3d82e9@gateway/web/freenode/ip.62.61.130.233> has quit IRC | 16:01 | |
-YoctoAutoBuilder- build #192 of nightly-fsl-ppc-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-ppc-lsb/builds/192 | 16:01 | |
*** munch_ <munch_!~mark@c-50-129-137-132.hsd1.il.comcast.net> has joined #yocto | 16:03 | |
*** munch_ is now known as Guest41615 | 16:04 | |
*** benjamirc <benjamirc!~besquive@134.134.139.74> has quit IRC | 16:04 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-nxhjcsaghsfmreql> has joined #yocto | 16:04 | |
*** acidfoo <acidfoo!~nib@unaffiliated/acidmen> has quit IRC | 16:06 | |
dgm816 | anyone know how i can force libstdc++ into my image? its in the SDK but not populating into the image.. DEPENDS/RDEPENDS with "libstdc++" doesnt seem to help.. | 16:12 |
*** FrankSansC <FrankSansC!~frank@LVelizy-156-45-9-168.w80-11.abo.wanadoo.fr> has quit IRC | 16:16 | |
RP | JaMa: so I see, sorry about that. Not sure what happened there! :/ | 16:17 |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has joined #yocto | 16:22 | |
JaMa | no problem | 16:22 |
*** sjolley <sjolley!~sjolley@134.134.139.70> has quit IRC | 16:25 | |
*** sjolley <sjolley!~sjolley@134.134.139.70> has joined #yocto | 16:27 | |
*** sjolley <sjolley!~sjolley@134.134.139.70> has quit IRC | 16:32 | |
-YoctoAutoBuilder- build #195 of nightly-world is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world/builds/195 | 16:33 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 16:40 | |
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has quit IRC | 16:41 | |
*** sgw_ <sgw_!~sgw_@c-67-171-230-40.hsd1.wa.comcast.net> has quit IRC | 16:46 | |
ulf` | khem :) | 16:50 |
*** sgw_ <sgw_!~sgw_@c-67-171-230-40.hsd1.wa.comcast.net> has joined #yocto | 16:51 | |
ulf` | Hi sgw_ | 16:51 |
sgw_ | ulf`: good morning | 16:52 |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has quit IRC | 16:54 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 16:55 | |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has joined #yocto | 16:57 | |
*** sjolley <sjolley!sjolley@nat/intel/x-svnutgoljbnqokfr> has joined #yocto | 17:00 | |
*** dvhart <dvhart!dvhart@nat/intel/x-krykhyywbolvwwup> has quit IRC | 17:02 | |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has quit IRC | 17:05 | |
*** dvhart <dvhart!dvhart@nat/intel/x-cnlhqdxjmluhgzgm> has joined #yocto | 17:10 | |
*** Aethenelle <Aethenelle!~Aethenell@166.175.189.181> has joined #yocto | 17:11 | |
*** dguthrie <dguthrie!~dguthrie@212.17.57.102> has quit IRC | 17:13 | |
*** mckoan is now known as mckoan|away | 17:13 | |
*** Aethenelle <Aethenelle!~Aethenell@166.175.189.181> has quit IRC | 17:14 | |
*** hirata <hirata!~hirata@187-072-184-065.static.ctbctelecom.com.br> has quit IRC | 17:15 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-nxhjcsaghsfmreql> has quit IRC | 17:15 | |
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has joined #yocto | 17:16 | |
*** dvhart <dvhart!dvhart@nat/intel/x-cnlhqdxjmluhgzgm> has quit IRC | 17:26 | |
*** jbrianceau is now known as jbrianceau_away | 17:27 | |
*** dvhart <dvhart!~dvhart@134.134.137.73> has joined #yocto | 17:27 | |
bobdog555 | Can anyone tell me how to fix this error???? From log: "DEBUG Executing shell function do_compile ; NOTE: make -j 24 ; make: ***No targets specified and no makefile found. Stop. ; ERROR: oe_runmake failed " | 17:28 |
*** tminchev <tminchev!todor@nat/intel/x-cequompdvrkcvizf> has joined #yocto | 17:30 | |
*** luyu__ <luyu__!luyu@nat/intel/x-irqixbqzoxfqsmfm> has joined #yocto | 17:30 | |
*** blitz00_ <blitz00_!~stefans@192.198.151.43> has joined #yocto | 17:31 | |
*** arfoll_ <arfoll_!bl73@nat/intel/x-lbszpiekzpowznbb> has joined #yocto | 17:31 | |
*** belen1 <belen1!Adium@nat/intel/x-wzjvuecjuidihqpa> has joined #yocto | 17:31 | |
*** dvhart <dvhart!~dvhart@134.134.137.73> has quit IRC | 17:32 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-rxrqocsbqkatnabg> has joined #yocto | 17:32 | |
*** arfoll <arfoll!bl73@nat/intel/x-ybifudccitfbcjaz> has quit IRC | 17:33 | |
*** todor <todor!todor@nat/intel/x-lkukgwkjtycoxner> has quit IRC | 17:33 | |
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has quit IRC | 17:33 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-rxrqocsbqkatnabg> has quit IRC | 17:33 | |
*** belen <belen!Adium@nat/intel/x-vkejqqyqdqknbabm> has quit IRC | 17:33 | |
*** luyu_ <luyu_!luyu@nat/intel/x-ntowhcpiaetkpwlr> has quit IRC | 17:34 | |
*** DarkKnight_ <DarkKnight_!~quassel@HSI-KBW-46-223-47-206.hsi.kabel-badenwuerttemberg.de> has joined #yocto | 17:38 | |
*** DarkKnight <DarkKnight!~quassel@HSI-KBW-46-223-47-206.hsi.kabel-badenwuerttemberg.de> has quit IRC | 17:38 | |
*** jmd <jmd!~user@de.cellform.com> has joined #yocto | 17:40 | |
*** LocutusOfBorg1 <LocutusOfBorg1!~Gianfranc@93-32-200-251.ip35.fastwebnet.it> has quit IRC | 17:44 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto | 17:45 | |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has joined #yocto | 17:45 | |
*** dvhart <dvhart!~dvhart@134.134.137.73> has joined #yocto | 17:47 | |
*** sarahsharp <sarahsharp!~sarah@134.134.137.75> has joined #yocto | 17:47 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 17:48 | |
rburton | otavio: http://errors.yoctoproject.org/Errors/Details/8625/ | 17:48 |
rburton | otavio: you're missing the magic depends to get the kernel sources | 17:48 |
otavio | rburton: ack; I fix it today | 17:49 |
-YoctoAutoBuilder- build #192 of nightly-arm is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm/builds/192 | 17:49 | |
rburton | otavio: thanks! | 17:49 |
rburton | \o/ | 17:49 |
-YoctoAutoBuilder- build #189 of nightly-fsl-arm is complete: Failure [failed BuildImages Building Toolchain Images Building Toolchain Images_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm/builds/189 | 17:54 | |
*** Matulis <Matulis!~Matulis@50.244.33.17> has quit IRC | 17:55 | |
*** dvhart <dvhart!~dvhart@134.134.137.73> has quit IRC | 17:57 | |
*** benjamirc <benjamirc!~besquive@134.134.139.72> has joined #yocto | 17:57 | |
*** dvhart <dvhart!dvhart@nat/intel/x-zodncxggzsbnfyat> has joined #yocto | 17:58 | |
*** dvhart <dvhart!dvhart@nat/intel/x-zodncxggzsbnfyat> has quit IRC | 17:59 | |
*** dvhart <dvhart!~dvhart@134.134.137.73> has joined #yocto | 18:00 | |
*** Matulis <Matulis!~Matulis@50.244.33.17> has joined #yocto | 18:02 | |
ulf` | Hi rburton :) | 18:09 |
*** dvhart <dvhart!~dvhart@134.134.137.73> has quit IRC | 18:12 | |
-YoctoAutoBuilder- build #190 of nightly-fsl-arm-lsb is complete: Failure [failed BuildImages SendErrorReport] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm-lsb/builds/190 | 18:12 | |
*** _jmleo <_jmleo!~jmleo@LDijon-156-64-30-180.w80-15.abo.wanadoo.fr> has joined #yocto | 18:20 | |
*** jmleo <jmleo!~jmleo@105-197-190-109.dsl.ovh.fr> has quit IRC | 18:22 | |
*** _jmleo is now known as jmleo | 18:23 | |
*** benjamirc <benjamirc!~besquive@134.134.139.72> has quit IRC | 18:29 | |
*** bluelightning <bluelightning!~paul@2001:8b0:258:7d7a:2ad2:44ff:fe40:9209> has joined #yocto | 18:31 | |
*** bluelightning <bluelightning!~paul@2001:8b0:258:7d7a:2ad2:44ff:fe40:9209> has quit IRC | 18:31 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 18:31 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC | 18:32 | |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has quit IRC | 18:34 | |
*** dvhart <dvhart!~dvhart@134.134.137.75> has joined #yocto | 18:34 | |
*** aehs29 <aehs29!~aehernan@134.134.139.74> has joined #yocto | 18:35 | |
*** dvhart <dvhart!~dvhart@134.134.137.75> has quit IRC | 18:39 | |
*** belen1 <belen1!Adium@nat/intel/x-wzjvuecjuidihqpa> has quit IRC | 18:53 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-bhgpakcnifxvskfr> has joined #yocto | 18:54 | |
*** sarahsharp <sarahsharp!~sarah@134.134.137.75> has quit IRC | 19:07 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto | 19:08 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-bhgpakcnifxvskfr> has quit IRC | 19:10 | |
*** volker_123456 <volker_123456!~quassel@host-80-81-19-29.customer.m-online.net> has quit IRC | 19:14 | |
*** blitz00_ <blitz00_!~stefans@192.198.151.43> has quit IRC | 19:27 | |
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto | 19:32 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-jnbjwprbeldgrygc> has quit IRC | 19:33 | |
*** bobdog555 <bobdog555!~bobdog555@64.128.162.147> has quit IRC | 19:45 | |
*** jmd <jmd!~user@de.cellform.com> has quit IRC | 19:48 | |
*** zecke <zecke!~ich@ip5b406386.dynamic.kabel-deutschland.de> has quit IRC | 19:50 | |
*** sarahsharp <sarahsharp!sarah@nat/intel/x-djwesajblycvyouh> has joined #yocto | 19:50 | |
*** benjamirc <benjamirc!~besquive@134.134.139.74> has joined #yocto | 20:09 | |
*** pev <pev!~pev@2.31.93.81> has quit IRC | 20:13 | |
*** rdenicol <rdenicol!~rdenicol@187-072-184-065.static.ctbctelecom.com.br> has quit IRC | 20:14 | |
*** r23s <r23s!d0b90c36@gateway/web/freenode/ip.208.185.12.54> has joined #yocto | 20:16 | |
r23s | Hi all, I'm interested in running a QEMU .ext3 image in VirtualBox so that I can emulate some peripherals. Can anyone advise on how to convert the .ext3 file to something that I can mount or image onto a virtual hard disk? | 20:20 |
kergoth | possibly qemu-img may be of use, but its unlikely the emulated ahrdware is the same between virtualbox and qemu | 20:22 |
*** melonipoika <melonipoika!~quassel@91-158-69-143.elisa-laajakaista.fi> has quit IRC | 20:24 | |
*** angolini <angolini!uid62003@gateway/web/irccloud.com/x-pqpkekmvkjknicuc> has quit IRC | 20:24 | |
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has quit IRC | 20:24 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC | 20:24 | |
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has joined #yocto | 20:25 | |
*** alexlarsson <alexlarsson!~alexl@h234n20-mael-a12.ias.bredband.telia.com> has quit IRC | 20:30 | |
*** sjolley <sjolley!sjolley@nat/intel/x-svnutgoljbnqokfr> has quit IRC | 20:38 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto | 20:43 | |
*** dvhart <dvhart!~dvhart@134.134.139.70> has joined #yocto | 21:02 | |
*** realBigfoot <realBigfoot!~realBigfo@134.191.220.71> has quit IRC | 21:15 | |
*** melio_cc_ <melio_cc_!~melio_cc@static-194-113-26-69.axsne.net> has joined #yocto | 21:23 | |
*** sjolley <sjolley!sjolley@nat/intel/x-tfncwertefadmucd> has joined #yocto | 21:25 | |
*** melio_cc <melio_cc!~melio_cc@static-194-113-26-69.axsne.net> has quit IRC | 21:26 | |
*** melio_cc_ <melio_cc_!~melio_cc@static-194-113-26-69.axsne.net> has quit IRC | 21:27 | |
*** melio_cc <melio_cc!~melio_cc@static-194-113-26-69.axsne.net> has joined #yocto | 21:27 | |
r23s | kergoth, looks like you were right. I built a vmdk image but it crashes during boot. Instead I'm going to just use qemu to do some basic tests with virtualized peripherals, since it can take up to 4 IDE devices. | 21:42 |
r23s | Which brings me to my next question. I'm trying to set up RAID5 across 3 drives using mdadm, but there is no 'personality' for supporting it. The only options are linear, raid[0/1/10], multipath, and faulty. Has anyone encountered this, and how can I rebuild to add raid5 support? | 21:44 |
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto | 21:46 | |
bluelightning | r23s: did you try using a SATA disk controller in the Virtualbox configuration | 21:58 |
bluelightning | ? | 21:58 |
bluelightning | apparently, using IDE does result in a crash, that issue is known: https://bugzilla.yoctoproject.org/show_bug.cgi?id=1971 | 21:58 |
yocti | Bug 1971: enhancement, Low, 1.8 M3, juro.bystricky, IN PROGRESS DESIGN , Enhance BA to run in VirtualBox | 21:58 |
r23s | Let me give it a try. | 22:00 |
r23s | It works! That was easy. Thanks bluelightning! | 22:00 |
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-89.ericsson.net> has quit IRC | 22:03 | |
r23s | I'm still seeing the same condition for mdadm where raid5 isn't available. I'm scouring the web but not finding anything. I'm on version 3.3.1 for what it's worth. | 22:03 |
bluelightning | I wonder if that's controlled by a kernel config option | 22:04 |
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-bmhkmjufeovljlwz> has quit IRC | 22:10 | |
Matulis | hey all, I am trying to build a kernel and I am getting the following error: | make[1]: *** No rule to make target '/home/chief/yocto/poky/logicpd_build/tmp/work/omap3logic-poky-linux-gnueabi/linux-logicpd/3.0-r0/image/lib/firmware/./', needed by '/home/chief/yocto/poky/logicpd_build/tmp/work/omap3logic-poky-linux-gnueabi/linux-logicpd/3.0-r0/image/lib/firmware/Logic_TIInit_10.6.15.bts'. Stop. | 22:12 |
Matulis | any ideas? not sure where to start, the do_install log doesnt seem very helpful | 22:14 |
r23s | bluelightning, I think you're right. Let me see if I can find where that option lives. Do you know if those configs are mapped into Yocto or any distro versions? | 22:16 |
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has quit IRC | 22:17 | |
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto | 22:19 | |
*** benjamirc <benjamirc!~besquive@134.134.139.74> has quit IRC | 22:23 | |
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has quit IRC | 22:25 | |
*** dvhart <dvhart!~dvhart@134.134.139.70> has quit IRC | 22:30 | |
*** dvhart <dvhart!dvhart@nat/intel/x-kbrrqriqxknrulvc> has joined #yocto | 22:30 | |
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto | 22:36 | |
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has quit IRC | 22:36 | |
*** _jmleo <_jmleo!~jmleo@LDijon-156-64-30-180.w80-15.abo.wanadoo.fr> has joined #yocto | 22:36 | |
*** jmleo <jmleo!~jmleo@LDijon-156-64-30-180.w80-15.abo.wanadoo.fr> has quit IRC | 22:37 | |
*** _jmleo is now known as jmleo | 22:37 | |
*** dvhart <dvhart!dvhart@nat/intel/x-kbrrqriqxknrulvc> has quit IRC | 22:38 | |
*** dvhart <dvhart!dvhart@nat/intel/x-dwklselaeqnsefqf> has joined #yocto | 22:38 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 22:43 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-lwzxxljcftyyhdqc> has joined #yocto | 22:50 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 23:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 23:01 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 23:01 | |
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has quit IRC | 23:07 | |
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto | 23:09 | |
*** agust <agust!~agust@pD9E2F5CF.dip0.t-ipconnect.de> has quit IRC | 23:13 | |
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has quit IRC | 23:13 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-lwzxxljcftyyhdqc> has quit IRC | 23:13 | |
Matulis | can anyone help me out with bitbake a kernel and the modules not loading? | 23:20 |
*** sgw_ <sgw_!~sgw_@c-67-171-230-40.hsd1.wa.comcast.net> has quit IRC | 23:27 | |
*** benjamirc <benjamirc!~besquive@134.134.139.74> has joined #yocto | 23:27 | |
ulf` | How do I point gcc to include header files in a bitbake recipe if the path for the header file I need to include is /data/yocto/poky/build/tmp/work/corei7-64-poky-linux/libxml2/2.9.1-r0/sysroot-destdir/usr/include/libxml2/libxml/parser.h | 23:28 |
ulf` | I tried EXTRA_OECONF += "CFLAGS="$CFLAGS -Iinclude/libxml2/libxml"" | 23:29 |
ulf` | Which doesn't work | 23:29 |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 23:29 | |
ulf` | What's the variable for sysroot-destdir? | 23:29 |
*** sarahsharp <sarahsharp!sarah@nat/intel/x-djwesajblycvyouh> has quit IRC | 23:30 | |
*** benjamirc <benjamirc!~besquive@134.134.139.74> has quit IRC | 23:36 | |
*** melio_cc_ <melio_cc_!~melio_cc@static-194-113-26-69.axsne.net> has joined #yocto | 23:39 | |
*** _jmleo <_jmleo!~jmleo@LDijon-156-64-30-180.w80-15.abo.wanadoo.fr> has joined #yocto | 23:41 | |
*** jmleo <jmleo!~jmleo@LDijon-156-64-30-180.w80-15.abo.wanadoo.fr> has quit IRC | 23:41 | |
*** _jmleo is now known as jmleo | 23:41 | |
*** melio_cc <melio_cc!~melio_cc@static-194-113-26-69.axsne.net> has quit IRC | 23:42 | |
*** melio_cc_ <melio_cc_!~melio_cc@static-194-113-26-69.axsne.net> has quit IRC | 23:44 | |
*** alimon <alimon!~alimon@134.134.139.70> has quit IRC | 23:49 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!