khem | to build your component | 00:00 |
---|---|---|
freach42 | the bb build only shows libc.so.6 | 00:00 |
freach42 | I'm using Makefiles | 00:00 |
khem | OK you need to show the code | 00:00 |
freach42 | I know.... :) Hold on I need to sanitize it.... | 00:00 |
freach42 | while I'm doing that, how do I get fully verbose compile/link command lines from bb? | 00:01 |
kergoth | bb just calls make. the output of the commands run inthe task is in the task log | 00:02 |
freach42 | Bitbake "exe" | 00:03 |
freach42 | Dynamic Section: | 00:03 |
freach42 | NEEDED libc.so.6 | 00:03 |
freach42 | INIT 0x0000157c | 00:03 |
freach42 | FINI 0x00003a2c | 00:03 |
freach42 | INIT_ARRAY 0x00016000 | 00:03 |
freach42 | Makefile "exe" | 00:03 |
freach42 | Dynamic Section: | 00:03 |
freach42 | NEEDED libMYLIB_tx.so | 00:03 |
freach42 | NEEDED libMYLIB_rx.so | 00:03 |
freach42 | NEEDED librt.so.1 | 00:03 |
freach42 | NEEDED libpthread.so.0 | 00:03 |
freach42 | NEEDED libgcc_s.so.1 | 00:03 |
freach42 | NEEDED libc.so.6 | 00:03 |
freach42 | NEEDED ld-linux.so.3 | 00:03 |
freach42 | is the task log a file? | 00:03 |
kergoth | don't spam the channel | 00:04 |
khem | post log.do_compile | 00:04 |
khem | to some pastebin place | 00:04 |
freach42 | sorry, thought you wanted it pasted | 00:04 |
freach42 | will do next time | 00:04 |
khem | the logs are in build tree | 00:05 |
khem | cd tmp*/work/*/work/<yourpackage>/<version>/temp | 00:05 |
freach42 | ok, so if it's just calling make with the new Makefiles another dev added I just need to make sure -his- make is getting the proper $(LD) -lMYLIB_tx -lMYLIB_rx | 00:06 |
freach42 | (I'm about two hours into bitbake) | 00:07 |
khem | no worries everything starts with first step | 00:08 |
freach42 | or first stumble | 00:08 |
khem | so did you write a recipe for your packages ? | 00:08 |
freach42 | another dev did that | 00:08 |
khem | OK then paste your makefiles and recipes somewhere | 00:09 |
freach42 | I had written Makefiles, he added new recipes. The project isn't open-source (yet) can't disclose | 00:09 |
freach42 | but the /temp/ directory was helpful, I see all of the run. files | 00:10 |
khem | I would recommend a lot of reading start with getting started to Developer manual | 00:11 |
freach42 | agreed, I was hoping to avoid that.... :P | 00:11 |
khem | kergoth: have you worked with extendible SDK | 00:12 |
khem | kergoth: My devs are not happy with build times | 00:12 |
freach42 | log.do_compile has most of the info I need for now. what's funny is my exes built for a different platform (but same CPU) run on this box | 00:12 |
freach42 | build times are bad | 00:13 |
freach42 | _really_bad. | 00:13 |
khem | they are not bad if you set up right | 00:13 |
khem | are you using sstate ? | 00:13 |
freach42 | existing build system is very parallel, 16-30 simultaneous GCC | 00:13 |
freach42 | depending on build machine. | 00:13 |
freach42 | It looks like bb is going to take at least 4x as log | 00:14 |
khem | OE has dual parallism | 00:14 |
freach42 | long | 00:14 |
khem | it runs several tasks and each task can have its own -j | 00:14 |
freach42 | I'd love to exploit that, or this dev is going to get shivved. | 00:14 |
*** obsrwr <obsrwr!~kinga@catv-188-142-165-239.catv.broadband.hu> has quit IRC | 00:14 | |
khem | my usecase is something uncommon | 00:14 |
khem | so dont get the notion that build times are bad | 00:15 |
freach42 | we benchmark our build all the time. | 00:15 |
khem | build times are subjective | 00:15 |
freach42 | down to 19 minutes for kernel/libs/app | 00:15 |
freach42 | but poor incremental build implementation | 00:15 |
khem | e.g. with yocto/oe we brought down our effective build time to less than 20 mins | 00:16 |
khem | from over 2.5 hrs | 00:16 |
freach42 | I'd love to know your secret | 00:16 |
khem | yes incremental build is where yocto will help | 00:16 |
khem | my developers are spoilt | 00:16 |
freach42 | as I said this guys gonna get it if he quadruples the build times. | 00:16 |
freach42 | We need it where I am because we cross-compile for multiple platforms. | 00:17 |
khem | same as me. | 00:17 |
khem | I cross compile 14 machines | 00:17 |
khem | we do over 2500 builds each day | 00:17 |
freach42 | about the same here | 00:17 |
freach42 | yikes | 00:17 |
freach42 | so, parallelism in "global" build is done how? | 00:17 |
khem | we use precommit verification | 00:18 |
khem | and Continuous integration | 00:18 |
khem | so our turnaround time for a bad commit is important | 00:18 |
freach42 | so most devs are just pulling version N or N+1 of libraries? | 00:18 |
khem | so far its about 30 min to 1hr | 00:18 |
freach42 | compiled | 00:18 |
khem | yes | 00:19 |
khem | thats the bad part | 00:19 |
freach42 | yep, we end up having to tinker with the kernel a lot to work around silicon bugs | 00:19 |
khem | but we use BB_SRCREV_POLICY = "cache" | 00:19 |
khem | so it does not fetch new changes everytime underneath a build | 00:19 |
freach42 | where is that stored, or is in an env variable? | 00:19 |
khem | local.conf | 00:20 |
khem | we use AUTOREVs in recipes | 00:20 |
khem | so that infact will be quite disruptive | 00:20 |
khem | since every commit will start affecting all devs | 00:20 |
khem | and most of the time they dont want to change things like this behind the scenes | 00:20 |
freach42 | what about explicit parallelism to make? | 00:21 |
khem | although I would prefer them to act as integrator :) | 00:21 |
khem | parallism is calculated at start | 00:21 |
khem | based on build machine config | 00:21 |
khem | you can also lock it to something static if you like | 00:21 |
freach42 | we just do chrt -b 0 nice ionice make -j10 -l10 <top-Makefile> | 00:23 |
khem | BB_NUMBER_THREADS | 00:24 |
khem | and PARALLEL_MAKE | 00:24 |
freach42 | so I echo BB_NUMBER_THREADS=10 >> local.conf ? | 00:24 |
khem | which release are u using | 00:26 |
freach42 | 1.28.0 | 00:27 |
khem | yocto 2.0 ? | 00:27 |
freach42 | that was from bitbake --version | 00:27 |
freach42 | I don't believe yocto is installed | 00:27 |
*** dreyna4529 <dreyna4529!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto | 00:27 | |
freach42 | BitBake Build Tool Core version 1.28.0 | 00:28 |
freach42 | regarding my concern about the final exe that's build against the libraries... The shared libraries look to have the right dependencies amongst them, just not the final exe | 00:30 |
*** belen1 <belen1!~Adium@192.198.151.45> has quit IRC | 00:31 | |
*** belen1 <belen1!~Adium@192.198.151.43> has joined #yocto | 00:32 | |
*** belen1 <belen1!~Adium@192.198.151.43> has quit IRC | 00:34 | |
*** belen1 <belen1!~Adium@192.198.151.43> has joined #yocto | 00:34 | |
*** belen1 <belen1!~Adium@192.198.151.43> has quit IRC | 00:39 | |
*** manuel__ <manuel__!~manuel@pD9FDD5BE.dip0.t-ipconnect.de> has joined #yocto | 00:40 | |
*** manuel_ <manuel_!~manuel@p5792091F.dip0.t-ipconnect.de> has quit IRC | 00:42 | |
*** manuel__ is now known as manuel_ | 00:42 | |
*** soderstrom <soderstrom!~soderstro@81-234-127-205-no26.tbcn.telia.com> has quit IRC | 01:13 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:609e:9d9e:187a:2488> has quit IRC | 01:18 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has joined #yocto | 01:31 | |
*** bananadev <bananadev!~bananadev@118.70.128.150> has joined #yocto | 02:12 | |
*** bananadev <bananadev!~bananadev@118.70.128.150> has quit IRC | 02:35 | |
*** Bjurr <Bjurr!4a3b9507@gateway/web/freenode/ip.74.59.149.7> has joined #yocto | 02:39 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has quit IRC | 02:46 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has joined #yocto | 02:48 | |
*** smferris <smferris!~smferris@192.95.10.156> has quit IRC | 03:24 | |
*** rdnt <rdnt!~rdnt@c-107-5-134-201.hsd1.mi.comcast.net> has joined #yocto | 03:38 | |
*** mattsm <mattsm!uid128834@gateway/web/irccloud.com/x-ihgrxctywgrkfebm> has joined #yocto | 03:54 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has quit IRC | 03:57 | |
*** dreyna4529 <dreyna4529!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC | 04:03 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has joined #yocto | 04:05 | |
Bjurr | Quick Q about a genericx86 build. I'm trying to boot the latest jethro core-image-minimal on a celeron (Asus eeepc 701) and am getting stuck in the init script. The script searches for a rootfs image in /run/media/xxx , but there is nothing in there. That seems to be the udisks2 scheme, but that doesn't seem to be packaged in the image. Anyone knows what's supposed to populate this folder? | 04:07 |
Bjurr | Booting from a usb key btw (tried with the internal drive and an sdcard with the same result). I managed to get it up by modifying the script and explicitely mount /dev/sda on /run/media/sda, but I'm trying to understand how that was supposed to work in the first place. | 04:09 |
ryansturmer | Yoctonauts: | 04:12 |
ryansturmer | What is the best way to manage the LICENSE in a recipe, if you're not actually pulling from source | 04:12 |
ryansturmer | (ie the recipe is just a couple of files that are included in the recipe itself, and not coming from an external source, where there would be a license file) | 04:12 |
ryansturmer | I say "best" way when I mean "easiest" way - I really just want my recipe to build at this stage | 04:13 |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has quit IRC | 04:17 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has joined #yocto | 04:22 | |
Bjurr | Thinks the code that *should* run is in the automount function in /meta/recipes-core/udev/udev-extraconf/mount.sh .... udev fun. | 04:23 |
Bjurr | ryansturmer: Are the files yours? | 04:24 |
*** rdnt <rdnt!~rdnt@c-107-5-134-201.hsd1.mi.comcast.net> has quit IRC | 04:38 | |
*** rdnt <rdnt!~rdnt@c-107-5-134-201.hsd1.mi.comcast.net> has joined #yocto | 04:38 | |
*** Bjurr <Bjurr!4a3b9507@gateway/web/freenode/ip.74.59.149.7> has quit IRC | 04:57 | |
*** jchonig <jchonig!~quassel@firewall.honig.net> has quit IRC | 05:17 | |
*** jchonig <jchonig!~quassel@firewall.honig.net> has joined #yocto | 05:18 | |
*** Aethenelle <Aethenelle!~Aethenell@107.138.98.226> has quit IRC | 05:21 | |
*** Calchan <Calchan!~calchan@gentoo/developer/calchan> has quit IRC | 05:33 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has joined #yocto | 05:34 | |
*** niteshnarayanlal <niteshnarayanlal!~niteshnar@fedora/niteshnarayanlal> has joined #yocto | 05:35 | |
*** Calchan <Calchan!~calchan@gentoo/developer/calchan> has joined #yocto | 05:35 | |
*** manuel_ <manuel_!~manuel@pD9FDD5BE.dip0.t-ipconnect.de> has quit IRC | 05:37 | |
*** mattsm <mattsm!uid128834@gateway/web/irccloud.com/x-ihgrxctywgrkfebm> has quit IRC | 06:11 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 06:35 | |
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has quit IRC | 06:47 | |
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has joined #yocto | 06:58 | |
*** pohly <pohly!~pohly@dyndsl-091-096-032-119.ewe-ip-backbone.de> has joined #yocto | 07:43 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-pwipfkrdkuqwmazy> has joined #yocto | 07:56 | |
*** jbrianceau_away is now known as jbrianceau | 07:56 | |
*** pohly <pohly!~pohly@dyndsl-091-096-032-119.ewe-ip-backbone.de> has quit IRC | 08:01 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto | 08:03 | |
*** kinga <kinga!~kinga@catv-188-142-165-239.catv.broadband.hu> has joined #yocto | 08:28 | |
*** edbart <edbart!~ebartosh@192.198.151.43> has joined #yocto | 08:33 | |
*** manuel_ <manuel_!~manuel@pD9FDD5BE.dip0.t-ipconnect.de> has joined #yocto | 09:04 | |
*** townxelliot <townxelliot!~ell@176.250.112.17> has joined #yocto | 09:08 | |
*** kinga is now known as obsrwr | 09:11 | |
*** obsrwr is now known as kinga__ | 09:11 | |
*** kinga__ is now known as kinga_ | 09:11 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 09:18 | |
*** manuel_ <manuel_!~manuel@pD9FDD5BE.dip0.t-ipconnect.de> has joined #yocto | 09:25 | |
*** townxelliot <townxelliot!~ell@176.250.112.17> has quit IRC | 09:49 | |
*** matteo <matteo!~matteo@openwrt/developer/matteo> has joined #yocto | 10:13 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 10:29 | |
*** soderstrom <soderstrom!~soderstro@81-234-127-205-no26.tbcn.telia.com> has joined #yocto | 10:41 | |
*** kinga_ is now known as obsrwr | 10:41 | |
*** LocutusOfBorg1 <LocutusOfBorg1!~LocutusOf@79.31.213.131> has quit IRC | 10:59 | |
*** belen <belen!Adium@nat/intel/x-tkokhttsrnqhwwfn> has joined #yocto | 11:00 | |
*** LocutusOfBorg1 <LocutusOfBorg1!~LocutusOf@host131-213-dynamic.31-79-r.retail.telecomitalia.it> has joined #yocto | 11:01 | |
*** edbart <edbart!~ebartosh@192.198.151.43> has quit IRC | 11:15 | |
*** belen <belen!Adium@nat/intel/x-tkokhttsrnqhwwfn> has quit IRC | 11:15 | |
*** edbart <edbart!~ebartosh@192.198.151.43> has joined #yocto | 11:17 | |
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has joined #yocto | 11:18 | |
*** soderstrom <soderstrom!~soderstro@81-234-127-205-no26.tbcn.telia.com> has quit IRC | 11:30 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has quit IRC | 11:38 | |
*** edbart <edbart!~ebartosh@192.198.151.43> has quit IRC | 11:50 | |
*** edbart <edbart!~ebartosh@192.198.151.43> has joined #yocto | 11:55 | |
*** matteo <matteo!~matteo@openwrt/developer/matteo> has quit IRC | 12:20 | |
*** manuel_ <manuel_!~manuel@pD9FDD5BE.dip0.t-ipconnect.de> has quit IRC | 12:24 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 12:28 | |
*** niteshnarayanlal <niteshnarayanlal!~niteshnar@fedora/niteshnarayanlal> has quit IRC | 12:31 | |
*** manuel_ <manuel_!~manuel@pD9FDD5BE.dip0.t-ipconnect.de> has joined #yocto | 12:38 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 12:42 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 12:49 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 12:49 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 13:10 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 13:10 | |
*** jbrianceau is now known as jbrianceau_away | 13:16 | |
*** edbart <edbart!~ebartosh@192.198.151.43> has quit IRC | 13:24 | |
*** edbart <edbart!~ebartosh@192.198.151.43> has joined #yocto | 13:26 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 13:38 | |
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has quit IRC | 13:38 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 13:45 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 13:50 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 13:51 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 13:58 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 13:59 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 14:03 | |
*** soderstrom <soderstrom!~soderstro@81-234-127-205-no26.tbcn.telia.com> has joined #yocto | 14:05 | |
*** demonimin <demonimin!~demonimin@unaffiliated/demonimin> has quit IRC | 14:10 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 14:19 | |
*** Aethenelle <Aethenelle!~Aethenell@166.175.189.43> has joined #yocto | 14:20 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 14:25 | |
*** edbart <edbart!~ebartosh@192.198.151.43> has quit IRC | 14:25 | |
*** tf_ <tf_!~tomas@r-finger.com> has joined #yocto | 14:25 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has quit IRC | 14:27 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 14:34 | |
*** tf_ <tf_!~tomas@r-finger.com> has quit IRC | 14:41 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 14:49 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 14:57 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 14:58 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 15:22 | |
*** yann|work <yann|work!~yann@LFbn-1-1026-146.w86-247.abo.wanadoo.fr> has quit IRC | 15:22 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 15:23 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-pwipfkrdkuqwmazy> has quit IRC | 15:25 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 15:37 | |
*** sa2ajj <sa2ajj!~quassel@dsl-espbrasgw1-54f9d7-184.dhcp.inet.fi> has quit IRC | 15:40 | |
*** sa2ajj <sa2ajj!~quassel@dsl-espbrasgw1-54f9d7-184.dhcp.inet.fi> has joined #yocto | 15:42 | |
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has quit IRC | 15:44 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 15:49 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has quit IRC | 15:51 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has joined #yocto | 15:58 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 16:06 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 16:11 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 16:28 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 16:35 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 16:37 | |
*** fledermaus <fledermaus!~vivek@78.32.176.249> has joined #yocto | 16:41 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 16:51 | |
*** tf <tf!~tomas@178.79.160.5> has joined #yocto | 16:58 | |
*** psadro <psadro!~Thunderbi@2620:0:ed0:800a:72f3:95ff:fe1d:9866> has quit IRC | 17:12 | |
*** psadro <psadro!~Thunderbi@2620:0:ed0:800a:72f3:95ff:fe1d:9866> has joined #yocto | 17:13 | |
*** tf <tf!~tomas@178.79.160.5> has quit IRC | 17:13 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 17:13 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 17:19 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 17:23 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 17:24 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 17:32 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 17:32 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 17:33 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 17:56 | |
*** edbart <edbart!~ebartosh@192.198.151.45> has joined #yocto | 17:56 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 18:05 | |
*** tf <tf!~tomas@r-finger.com> has quit IRC | 18:07 | |
*** Aethenelle <Aethenelle!~Aethenell@166.175.189.43> has quit IRC | 18:11 | |
*** tf <tf!~tomas@r-finger.com> has joined #yocto | 18:20 | |
*** jjmb <jjmb!~jjmb@50.153.148.146> has joined #yocto | 18:22 | |
*** RP <RP!~richard@5751ab90.skybroadband.com> has joined #yocto | 18:25 | |
*** RP <RP!~richard@5751ab90.skybroadband.com> has quit IRC | 19:15 | |
*** fledermaus <fledermaus!~vivek@78.32.176.249> has quit IRC | 19:24 | |
*** edbart <edbart!~ebartosh@192.198.151.45> has quit IRC | 19:26 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has quit IRC | 19:29 | |
*** pohly <pohly!~pohly@dyndsl-091-096-032-119.ewe-ip-backbone.de> has joined #yocto | 19:43 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:b944:f83b:4f68:658c> has joined #yocto | 19:53 | |
*** pohly <pohly!~pohly@dyndsl-091-096-032-119.ewe-ip-backbone.de> has quit IRC | 20:21 | |
*** RP <RP!~richard@5751ab90.skybroadband.com> has joined #yocto | 20:39 | |
*** DriverCoder <DriverCoder!~mdrustad@134.134.139.76> has joined #yocto | 21:34 | |
*** DriverCoder <DriverCoder!~mdrustad@134.134.139.76> has quit IRC | 21:37 | |
*** jjmb <jjmb!~jjmb@50.153.148.146> has quit IRC | 22:22 | |
*** jjmb <jjmb!~jjmb@50.153.148.146> has joined #yocto | 22:24 | |
*** pohly <pohly!~pohly@p5DE8FBEF.dip0.t-ipconnect.de> has joined #yocto | 22:42 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 22:43 | |
*** RP <RP!~richard@5751ab90.skybroadband.com> has quit IRC | 22:58 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC | 23:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 23:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 23:01 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto | 23:01 | |
*** manuel_ <manuel_!~manuel@pD9FDD5BE.dip0.t-ipconnect.de> has quit IRC | 23:03 | |
*** RP <RP!~richard@5751ab90.skybroadband.com> has joined #yocto | 23:05 | |
*** evanp <evanp!~evan@134.134.139.77> has quit IRC | 23:09 | |
*** jjmb <jjmb!~jjmb@50.153.148.146> has quit IRC | 23:12 | |
*** RP <RP!~richard@5751ab90.skybroadband.com> has quit IRC | 23:14 | |
*** jjmb <jjmb!~jjmb@50.153.148.146> has joined #yocto | 23:15 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 23:20 | |
*** pohly <pohly!~pohly@p5DE8FBEF.dip0.t-ipconnect.de> has quit IRC | 23:34 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!