*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 00:04 | |
*** behanw <behanw!~behanw@167.220.23.56> has quit IRC | 00:06 | |
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC | 00:18 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 00:31 | |
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has joined #yocto | 00:36 | |
*** paulg_ <paulg_!~paulg@72.1.195.9> has quit IRC | 00:43 | |
*** sarahsharp <sarahsharp!~sarah@192.55.54.40> has joined #yocto | 00:47 | |
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC | 01:04 | |
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto | 01:04 | |
*** sarahsharp <sarahsharp!~sarah@192.55.54.40> has quit IRC | 01:06 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-bztibpgckhchdipv> has left #yocto | 01:13 | |
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has joined #yocto | 01:21 | |
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has quit IRC | 01:23 | |
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has joined #yocto | 01:23 | |
-YoctoAutoBuilder- build #267 of nightly-ppc-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc-lsb/builds/267 | 01:30 | |
-YoctoAutoBuilder- build #270 of nightly-multilib is complete: Failure [failed BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/270 | 01:30 | |
chankit | hello..my bitbake process shows warning rdepends on libgl-mesa. I then added libgl-mesa to DEPENDS variable in my recipe but now it says nothing provides libgl-mesa...any idea? | 01:34 |
---|---|---|
khem` | add it to RDEPENDS_${PN} = "libgl-mesa" | 01:41 |
chankit | never mind..I added them to RDEPENDS_${PN} instead and all is well | 01:41 |
chankit | I wonder why can't I add it to DEPENDS variable? | 01:41 |
kergoth | DEPENDS is for recipes, not binary packages | 01:42 |
kergoth | RDEPENDS is runtime, binary packages | 01:42 |
khem` | DEPENDS is build time | 01:42 |
khem` | RDEPENDS is for runtime | 01:42 |
khem` | so DEPENDS = "recipe-name" and RDEPENDS = "ipk name" | 01:42 |
khem` | kergoth: I build sstate using externalsrc and then try to use it elsewhere | 01:43 |
khem` | and it invalidates it because ${S} changed | 01:43 |
khem` | any remedies | 01:43 |
kergoth | externalsrc explicitly disables use of sstate. see the bb.build.deltask() | 01:43 |
khem` | hmm | 01:44 |
kergoth | but yes, you could use vardepsexclude on all the tasks using it, or globally add to BB_HASHBASE_WHITELIST, but that's across everything, not per recipe, so would invalidate all current checksums | 01:44 |
kergoth | probably don't want to do the latter | 01:44 |
kergoth | but yeah, unless you kill the bits disabling sstate, it won't do much anyway | 01:44 |
khem` | so big issue for folks who has the flat tree dev | 01:45 |
khem` | like android | 01:45 |
khem` | all tooling is around that kind of development | 01:45 |
khem` | for platform work | 01:45 |
kergoth | yeah. i've often thought it'd be fun to try a complete oe-core build with everything using local git sources and versions extracted from the git repos | 01:46 |
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has quit IRC | 01:46 | |
khem` | kergoth: yes | 01:47 |
chankit | kergoth: khem`: So what I understand now is DEPENDS is recipe dependency, and RDEPENDS is runtime dependency. Is that right? | 01:48 |
khem` | chankit: yes | 01:48 |
khem` | kergoth: http://bazel.io/ | 01:49 |
khem` | have you seen it | 01:49 |
kergoth | nope | 01:49 |
kergoth | oh i remember seeing it linked on hacker news or something | 01:49 |
kergoth | didn't look very closely yet | 01:49 |
khem` | it looks promising | 01:49 |
khem` | build from source | 01:50 |
khem` | the kind of thing we are talking | 01:50 |
chankit | khem`: So is it true that there are binary packages that are not provided by any recipe? | 01:50 |
kergoth | chankit: that doesn't really make sense. | 01:51 |
khem` | chankit: yes e.g. if they are empty then packager will optimize them out | 01:51 |
chankit | kergoth: I'm afraid I'm just confused here. | 01:51 |
khem` | so you might have to add ALLOW_EMPTY_<ipk> | 01:51 |
kergoth | every recipe emits multiple binary packages | 01:52 |
kergoth | the main package might not be emitted if the recipe doesn't install any files, as khem points out | 01:52 |
khem` | kergoth: I have been looking at gradle too | 01:52 |
khem` | and cmake | 01:52 |
khem` | as alternatives | 01:53 |
kergoth | I'd like to play with something whose primary output is the binary package(s). local sources -> packages, deal with both fetching and feed/image construction as separate steps | 01:53 |
kergoth | construct sysroots from the packages | 01:54 |
kergoth | no separate task level scheduling and task acceleration via sstate | 01:54 |
kergoth | just as an experiment to see how it goes | 01:54 |
khem` | kergoth: BUILD_IMAGES_FROM_FEEDS | 01:55 |
khem` | you can stay in bb world | 01:55 |
chankit | kergoth: khem`: I think I'm starting to get some sense here....so suppose that a recipe foo spawns binary packages spam and egg, and another recipe bar has a runtime dependency on spam, then I should do RDEPENDS_{"bar"}=spam ? | 01:55 |
kergoth | RDEPENDS_${PN} += "spam", yes | 01:56 |
kergoth | but 90% of the time the runtime dependency is due to shared library linking, and those you don't have to do manually. if A links against a library in B, A will automatically rdepend on B | 01:56 |
chankit | so rdepends variable can have libraries, binaries and what else? | 01:59 |
khem` | kergoth: BUILD_IMAGES_FROM_FEEDS is something we can use ? | 01:59 |
khem` | also should accelarate | 01:59 |
khem` | right ? | 01:59 |
kergoth | chankit: again, doens't really make sense. rdepends lists binary packages. | 01:59 |
kergoth | chankit: what gets put in those packages is up to the recipe | 01:59 |
kergoth | the recipe that created them, that is | 01:59 |
kergoth | khem`: i think so, never actually tried it myself. would be interesting to play with | 01:59 |
kergoth | meh, meta-sourcery has problems with multilibs again, no preferences are specified for the multilib variants.. maybe i need some ${MLPREFIX}'s | 02:00 |
kergoth | either that or i need to stop handling the preferences this way | 02:01 |
khem` | multilib should die | 02:01 |
chankit | kergoth: let me try again...erm...so rdepends can only contain packages? | 02:01 |
kergoth | as we said earlier, DPEENDS contains build time dependencies, which are recipes, and RDEPENDS contains runtime dependencies, which are packages | 02:01 |
chankit | kergoth: ok...got it..thanks | 02:03 |
khem` | kergoth: I wonder how will BUILD_IMAGES_FROM_FEEDS interact with sstate | 02:14 |
khem` | is it a addition | 02:14 |
*** kscherer <kscherer!~kscherer@128.224.252.2> has quit IRC | 02:24 | |
*** kscherer <kscherer!~kscherer@128.224.252.2> has joined #yocto | 02:25 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC | 02:25 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto | 02:26 | |
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto | 02:28 | |
*** evanp <evanp!~evan@192.55.54.40> has joined #yocto | 02:52 | |
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC | 03:03 | |
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto | 03:13 | |
*** behanw <behanw!~behanw@12.10.73.130> has joined #yocto | 03:24 | |
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC | 03:41 | |
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto | 03:44 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto | 04:23 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC | 04:24 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto | 04:33 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC | 04:36 | |
*** agust <agust!~agust@p4FDE6F74.dip0.t-ipconnect.de> has joined #yocto | 04:58 | |
*** aehs29 <aehs29!~aehernan@134.134.139.76> has joined #yocto | 05:03 | |
*** aehs29 <aehs29!~aehernan@134.134.139.76> has left #yocto | 05:06 | |
*** smustafa <smustafa!~mustafa@39.42.58.142> has joined #yocto | 05:13 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 05:16 | |
-YoctoAutoBuilder- build #293 of nightly is complete: Failure [failed BuildImages_9] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly/builds/293 | 05:18 | |
*** behanw <behanw!~behanw@12.10.73.130> has quit IRC | 05:32 | |
*** behanw <behanw!~behanw@12.10.73.130> has joined #yocto | 05:32 | |
*** sjolley <sjolley!sjolley@nat/intel/x-iifbmopcgmspjakb> has joined #yocto | 05:52 | |
*** silviof <silviof!~silviof@unaffiliated/silviof> has quit IRC | 05:57 | |
*** nicktick1 <nicktick1!~john@113.240.206.185> has joined #yocto | 06:01 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 06:02 | |
*** silviof <silviof!~silviof@unaffiliated/silviof> has joined #yocto | 06:06 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-mdvcffolysybtcma> has joined #yocto | 06:08 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-mdvcffolysybtcma> has left #yocto | 06:12 | |
*** wadim_ <wadim_!~egorov@mail.rapiddevelopmentkit.de> has joined #yocto | 06:14 | |
*** mustafa__ <mustafa__!~mustafa@39.42.58.142> has joined #yocto | 06:15 | |
*** nicktick1 is now known as nicktick | 06:15 | |
*** e8johan_ <e8johan_!~quassel@83.218.80.242> has joined #yocto | 06:25 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC | 06:26 | |
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has joined #yocto | 06:26 | |
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC | 06:27 | |
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto | 06:27 | |
*** hitlin37 <hitlin37!uid16371@gateway/web/irccloud.com/x-ftpachbrtotpdedh> has joined #yocto | 06:32 | |
*** OutOfNoWhere <OutOfNoWhere!~rpb@199.68.195.102> has quit IRC | 06:36 | |
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has joined #yocto | 06:42 | |
*** patrickz <patrickz!~Thunderbi@212.118.209.82> has quit IRC | 06:45 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has joined #yocto | 06:52 | |
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC | 07:01 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 07:03 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-zcpptgoezgktviee> has joined #yocto | 07:05 | |
*** volker_123456 <volker_123456!~quassel@host-188-174-253-51.customer.m-online.net> has quit IRC | 07:07 | |
*** volker_123456 <volker_123456!~quassel@host-80-81-19-29.customer.m-online.net> has joined #yocto | 07:09 | |
*** jbrianceau_away is now known as jbrianceau | 07:11 | |
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto | 07:14 | |
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has quit IRC | 07:21 | |
*** behanw <behanw!~behanw@12.10.73.130> has quit IRC | 07:22 | |
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has joined #yocto | 07:22 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has quit IRC | 07:24 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has joined #yocto | 07:26 | |
*** Cubi_ <Cubi_!~cubi@b2b-94-79-174-114.unitymedia.biz> has joined #yocto | 07:28 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 07:32 | |
*** TobSnyder <TobSnyder!~schneider@ip92341b76.dynamic.kabel-deutschland.de> has joined #yocto | 07:40 | |
*** mranostay <mranostay!~mranostay@c-76-105-208-73.hsd1.or.comcast.net> has joined #yocto | 07:40 | |
*** mranostay <mranostay!~mranostay@c-76-105-208-73.hsd1.or.comcast.net> has quit IRC | 07:42 | |
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has joined #yocto | 07:42 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 07:49 | |
*** jku <jku!jku@nat/intel/x-cntwruywdigvbwzi> has joined #yocto | 07:57 | |
*** rich_b__ <rich_b__!~rich@212.183.140.92> has joined #yocto | 07:58 | |
*** e8johan_ <e8johan_!~quassel@83.218.80.242> has quit IRC | 08:13 | |
*** bluelightning <bluelightning!~paul@83.217.123.106> has joined #yocto | 08:17 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 08:17 | |
bluelightning | morning all | 08:18 |
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto | 08:21 | |
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto | 08:44 | |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 08:59 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 08:59 | |
*** bluelightning_ is now known as bluelightning | 08:59 | |
*** _dv_ is now known as dv_ | 09:14 | |
*** nicktick <nicktick!~john@113.240.206.185> has quit IRC | 09:15 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC | 09:22 | |
*** DatGizmo <DatGizmo!~mogwai@ip1886d814.dynamic.kabel-deutschland.de> has joined #yocto | 09:22 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto | 09:23 | |
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has joined #yocto | 09:23 | |
diego_r | morning bluelightning | 09:24 |
bluelightning | hi diego_r | 09:24 |
*** tsramos <tsramos!~tsramos@192.55.54.36> has joined #yocto | 09:28 | |
*** tsramos <tsramos!~tsramos@134.134.137.75> has joined #yocto | 09:28 | |
*** belen <belen!Adium@nat/intel/x-vvjrpyycbkmvkxfi> has joined #yocto | 09:49 | |
*** ant_work <ant_work!~ant__@host222-188-static.61-79-b.business.telecomitalia.it> has quit IRC | 09:54 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC | 09:55 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto | 10:01 | |
*** belen <belen!Adium@nat/intel/x-vvjrpyycbkmvkxfi> has quit IRC | 10:07 | |
*** belen <belen!Adium@nat/intel/x-mjubigjlvxhsesky> has joined #yocto | 10:08 | |
*** belen <belen!Adium@nat/intel/x-mjubigjlvxhsesky> has quit IRC | 10:14 | |
*** JaMae <JaMae!~martin@ip-86-49-34-37.net.upcbroadband.cz> has joined #yocto | 10:21 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 10:22 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 10:49 | |
*** belen <belen!Adium@nat/intel/x-clgcodnofhaoypuf> has joined #yocto | 10:53 | |
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto | 10:54 | |
*** lpapp <lpapp!~lpapp@kde/lpapp> has joined #yocto | 10:56 | |
lpapp | is there a simple way to turn make VERBOSE=1 on for some software built by Yocto, e.g. the kernel, or would I need to create a do_compile function for achieving this? | 10:56 |
bluelightning | lpapp: wouldn't you just pass that via EXTRA_OEMAKE ? | 10:57 |
lpapp | faor enough, thanks. | 10:58 |
lpapp | fair* | 10:58 |
*** belen <belen!Adium@nat/intel/x-clgcodnofhaoypuf> has quit IRC | 11:00 | |
*** phantoneD <phantoneD!destroy@a89-152-21-144.cpe.netcabo.pt> has joined #yocto | 11:05 | |
*** phantoxeD <phantoxeD!destroy@a89-152-21-144.cpe.netcabo.pt> has quit IRC | 11:06 | |
lpapp | bluelightning: something went really wrong... https://paste.kde.org/p9i3d7mgc Can no longer clean. | 11:31 |
*** chankit11 <chankit11!~oneam@203.106.195.178> has joined #yocto | 11:31 | |
lpapp | and I have not changed anything as far as I am aware. Git diff does not show any output either. | 11:32 |
lpapp | bluelightning: and I am getting that now for any package that I am just trying. | 11:44 |
*** ddom <ddom!~ddom@p4FFD869E.dip0.t-ipconnect.de> has joined #yocto | 11:46 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has quit IRC | 11:48 | |
*** belen <belen!Adium@nat/intel/x-lcgcekytuvlbrvhf> has joined #yocto | 11:48 | |
*** timsche <timsche!~quassel@port-92-192-13-162.dynamic.qsc.de> has joined #yocto | 11:49 | |
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has quit IRC | 11:52 | |
*** belen <belen!Adium@nat/intel/x-lcgcekytuvlbrvhf> has quit IRC | 11:54 | |
*** dshwang <dshwang!~dshwang@134.134.139.76> has quit IRC | 12:00 | |
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has quit IRC | 12:01 | |
*** manuel____ <manuel____!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto | 12:04 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has quit IRC | 12:14 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has joined #yocto | 12:15 | |
*** smustafa <smustafa!~mustafa@39.42.58.142> has quit IRC | 12:18 | |
*** bradfa <bradfa!~andrew@173.225.52.242> has quit IRC | 12:22 | |
*** dshwang <dshwang!~dshwang@192.55.55.37> has joined #yocto | 12:23 | |
bluelightning | lpapp: something must have changed... | 12:25 |
lpapp | yeah, but how can I fix this and what exactly is it about? | 12:27 |
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC | 12:28 | |
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto | 12:29 | |
*** mustafa__ <mustafa__!~mustafa@39.42.58.142> has quit IRC | 12:38 | |
*** mustafa__ <mustafa__!~mustafa@39.42.58.142> has joined #yocto | 12:39 | |
acidfu | erm, that suck : http://mirror.stshosting.co.uk/mariadb/mariadb-5.5.39/ | 12:40 |
acidfu | 404 not found :| | 12:40 |
bluelightning | lpapp: not sure, haven't seen an error like this before | 12:43 |
bluelightning | I can see that something is going very wrong with event handling | 12:43 |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has joined #yocto | 12:47 | |
*** dshwang <dshwang!~dshwang@192.55.55.37> has quit IRC | 12:51 | |
*** realBigfoot <realBigfoot!~realBigfo@134.191.220.74> has quit IRC | 13:02 | |
*** melio_cc_ <melio_cc_!~melio_cc@static-194-113-26-69.axsne.net> has quit IRC | 13:08 | |
*** JaMae is now known as JaMa | 13:09 | |
*** belen <belen!Adium@nat/intel/x-igruifzefzvfcygf> has joined #yocto | 13:10 | |
*** bradfa <bradfa!~andrew@173.225.52.242> has joined #yocto | 13:22 | |
*** belen <belen!Adium@nat/intel/x-igruifzefzvfcygf> has quit IRC | 13:24 | |
*** manuel____ <manuel____!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC | 13:35 | |
*** Aethenelle <Aethenelle!~Aethenell@166.175.62.70> has joined #yocto | 13:42 | |
*** dshwang <dshwang!~dshwang@134.134.139.76> has joined #yocto | 13:50 | |
*** mrsan_ <mrsan_!~stefan@h217-27-188-82.cust.tyfon.se> has joined #yocto | 13:52 | |
lpapp | bluelightning: ok, btw, what is the reason why I cannot find config.gz under the ./tmp/work hierarchy? I thought it was supposed to be part of the generated filesystem? I would like to double check whether my kernel configuration got in with bitbake -c menuconfig virtual/kernel. | 13:53 |
mrsan_ | /home/stefan/yocto/poky/build/tmp/work/armv6-vfp-poky-linux-gnueabi/domoticz/2365-r0/trunk | 13:53 |
mrsan_ | how can i make a directory use right folder for compile, in my case /yocto/poky/build/tmp/work/armv6-vfp-poky-linux-gnueabi/domoticz/2365-r0/domoticz-2365 is used while source is located in | 13:53 |
*** Cubi_ <Cubi_!~cubi@b2b-94-79-174-114.unitymedia.biz> has quit IRC | 13:54 | |
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto | 13:55 | |
bluelightning | lpapp: IIRC config.gz generation is a kernel config option, I assume you don't have that turned on | 13:58 |
bluelightning | lpapp: but if you want to look at the final .config you can see that in the build directory for the kernel recipe | 13:59 |
bluelightning | bitbake -e virtual/kernel | grep ^B= will show that | 13:59 |
bluelightning | mrsan_: set S = "${WORKDIR}/trunk" in the recipe | 14:00 |
mrsan_ | bluelightning: as its own row? | 14:01 |
bluelightning | mrsan_: yes | 14:01 |
mrsan_ | bluelightning: thx:) | 14:01 |
lpapp | bluelightning: yes, IKCONFIG_PROC, but it is enabled | 14:04 |
lpapp | yet, I cannot find config.gz | 14:04 |
lpapp | perhaps it is automatically created on boot as it is in /proc? | 14:04 |
bluelightning | oh, right.. yes that's only in /proc at runtime | 14:04 |
lpapp | and so it should not be part of the Yocto directory hierarchy? | 14:04 |
bluelightning | so I wouldn't expect a config.gz no | 14:05 |
lpapp | the thing is that my kernel still does not boot | 14:05 |
bluelightning | but .config, you will find that | 14:05 |
lpapp | I tried to enable some debug options, but I am not getting more | 14:05 |
lpapp | and I would like to validate somehow that my flashed image comes with those enabled options. | 14:05 |
mrsan_ | 1 more question. can i from my bb file set EXTRACONFIG for boost package,so it includes PACKAGECONFIG_pn-boost = "python" | 14:06 |
bluelightning | mrsan_: you cannot set a variable in one recipe from another if that's what you are asking, no | 14:08 |
bluelightning | mrsan_: you'll need to set that at the configuration level, i.e. local.conf or a custom distro config | 14:08 |
mrsan_ | bluelightning: thx | 14:08 |
lpapp | bluelightning: hmm, thanks. | 14:10 |
lpapp | bluelightning: what am I supposed to run after bitbake -c menuconfig virtual/kernel? | 14:12 |
lpapp | is it ok to run bitbake linux-foo? | 14:12 |
bluelightning | yes | 14:12 |
lpapp | strange | 14:12 |
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has joined #yocto | 14:13 | |
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has quit IRC | 14:16 | |
lpapp | bluelightning: hmm, probably I should remove rm_work | 14:17 |
lpapp | to see that it actually remained the same after bitbake linux-foo? | 14:17 |
bluelightning | yes, or set RM_WORK_EXCLUDE to exclude that recipe | 14:18 |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 14:19 | |
*** wadim_ <wadim_!~egorov@mail.rapiddevelopmentkit.de> has quit IRC | 14:21 | |
mrsan_ | bluelightning: doesnt HOB read the local.con? | 14:22 |
mrsan_ | or is this line wrong? | 14:22 |
mrsan_ | PACKAGECONFIG_pn-boost = "python" | 14:22 |
mrsan_ | *conf | 14:22 |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has quit IRC | 14:23 | |
bluelightning | mrsan_: it should be reading it yes | 14:24 |
bluelightning | mrsan_: is "python" the only value you want in there, or do you want to add python to the default value? because at the moment that line would be setting it, not adding to it | 14:25 |
*** jku <jku!jku@nat/intel/x-cntwruywdigvbwzi> has quit IRC | 14:25 | |
mrsan_ | i want to add it | 14:26 |
mrsan_ | but it still doesnt get set | 14:26 |
mrsan_ | i know it should be += | 14:26 |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 14:28 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto | 14:28 | |
DatGizmo | mrsan_: To append it, you need to use PACKAGECONFIG_append_pn-boos. The += only appends a space before the string. | 14:28 |
*** nicktick1 <nicktick1!~john@119.39.71.37> has joined #yocto | 14:29 | |
mrsan_ | DatGizmo: Doh. thx | 14:29 |
DatGizmo | mrsan_: np | 14:29 |
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has joined #yocto | 14:30 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 14:30 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has quit IRC | 14:31 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto | 14:31 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 14:32 | |
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC | 14:33 | |
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto | 14:33 | |
*** Aethenelle <Aethenelle!~Aethenell@166.175.62.70> has quit IRC | 14:33 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has joined #yocto | 14:34 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC | 14:34 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.98> has joined #yocto | 14:36 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.98> has quit IRC | 14:39 | |
*** nicktick1 <nicktick1!~john@119.39.71.37> has quit IRC | 14:41 | |
*** tsramos <tsramos!~tsramos@134.134.137.75> has quit IRC | 14:43 | |
*** manuel____ <manuel____!~manuel@209.6.175.242> has joined #yocto | 14:43 | |
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC | 14:44 | |
*** tsramos <tsramos!tsramos@nat/intel/x-aeyhqvnmplbzdbzx> has joined #yocto | 14:44 | |
*** manuel____ <manuel____!~manuel@209.6.175.242> has quit IRC | 14:46 | |
*** tsramos <tsramos!tsramos@nat/intel/x-aeyhqvnmplbzdbzx> has quit IRC | 14:49 | |
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto | 14:50 | |
*** timsche <timsche!~quassel@port-92-192-13-162.dynamic.qsc.de> has quit IRC | 14:53 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-yicqlfxrvsgmpjeb> has joined #yocto | 14:55 | |
*** Sona <Sona!4e527628@gateway/web/freenode/ip.78.82.118.40> has joined #yocto | 14:55 | |
*** kanavin__ <kanavin__!~ak@192.55.54.40> has quit IRC | 14:56 | |
sjolley | YPTM: Ready-Access Number: 8007302996 Access Code: 2705751 | 14:56 |
sjolley | YPTM: Stephen Joined | 14:56 |
Sona | YPTM: Sona joined, hi | 14:58 |
*** kanavin <kanavin!ak@nat/intel/x-fnisoxfnogzeexjj> has joined #yocto | 14:58 | |
bluelightning | YPTM: Paul Eggleton joined | 15:00 |
*** STYOON <STYOON!081c9646@gateway/web/freenode/ip.8.28.150.70> has joined #yocto | 15:02 | |
halstead | YPTM: Michael here. | 15:02 |
*** lamego <lamego!~jalamego@134.134.139.76> has joined #yocto | 15:03 | |
*** mrsan_ <mrsan_!~stefan@h217-27-188-82.cust.tyfon.se> has quit IRC | 15:05 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto | 15:06 | |
*** cristianiorga <cristianiorga!~cristiani@134.134.139.76> has joined #yocto | 15:07 | |
cristianiorga | YPTM: cristian joined | 15:07 |
Sona | YPTM: We decided in the OEDAM meeting to create a CVE list to have track of CVE addressed in different branches, I said I could do this ,I have just started, I am still working on it. please have a look at this and let me know what you think. https://docs.google.com/spreadsheets/d/13o4IPsCQ42aR2CCGzYOHdmpIEHkHUwDWlF4QqgI6emQ/edit#gid=0 | 15:08 |
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto | 15:08 | |
*** belen1 <belen1!Adium@nat/intel/x-fnhbeqrydnqttgsm> has joined #yocto | 15:13 | |
*** marquiz <marquiz!~marquiz@134.134.137.71> has quit IRC | 15:13 | |
*** STYOON <STYOON!081c9646@gateway/web/freenode/ip.8.28.150.70> has quit IRC | 15:15 | |
*** tsramos <tsramos!tsramos@nat/intel/x-ggbposbqduqgvvgl> has joined #yocto | 15:15 | |
sjolley | YPTM is done. | 15:15 |
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC | 15:17 | |
*** sjolley <sjolley!sjolley@nat/intel/x-iifbmopcgmspjakb> has quit IRC | 15:19 | |
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has quit IRC | 15:27 | |
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has quit IRC | 15:27 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 15:27 | |
*** sjolley <sjolley!~sjolley@134.134.139.76> has joined #yocto | 15:27 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC | 15:27 | |
*** Sona <Sona!4e527628@gateway/web/freenode/ip.78.82.118.40> has quit IRC | 15:28 | |
-YoctoAutoBuilder- build #269 of nightly-qa-systemd is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-systemd/builds/269 | 15:28 | |
*** sjolley <sjolley!~sjolley@134.134.139.76> has quit IRC | 15:29 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 15:32 | |
*** khem` is now known as khem[away] | 15:32 | |
*** khem[away] is now known as khem` | 15:32 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-yicqlfxrvsgmpjeb> has left #yocto | 15:33 | |
*** khem` is now known as khem[away] | 15:33 | |
*** khem[away] is now known as khem` | 15:33 | |
*** khem` is now known as khem[away] | 15:33 | |
*** khem[away] is now known as khem` | 15:33 | |
*** khem` is now known as khem[away] | 15:34 | |
*** khem[away] is now known as khem` | 15:34 | |
*** khem` is now known as khem[away] | 15:34 | |
*** khem[away] is now known as khem` | 15:34 | |
*** patrickz <patrickz!~Thunderbi@212.118.209.82> has joined #yocto | 15:37 | |
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC | 15:38 | |
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has joined #yocto | 15:38 | |
*** hitlin37 <hitlin37!uid16371@gateway/web/irccloud.com/x-ftpachbrtotpdedh> has quit IRC | 15:42 | |
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto | 15:43 | |
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC | 15:46 | |
*** marquiz <marquiz!marquiz@nat/intel/x-vbatignrxqirqbar> has joined #yocto | 15:48 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto | 15:48 | |
*** adelcast <adelcast!~adelcast@130.164.62.224> has left #yocto | 15:50 | |
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto | 15:51 | |
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has quit IRC | 15:56 | |
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has joined #yocto | 15:58 | |
-YoctoAutoBuilder- build #271 of nightly-multilib is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/271 | 15:59 | |
*** lamego <lamego!~jalamego@134.134.139.76> has quit IRC | 16:01 | |
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has quit IRC | 16:03 | |
*** behanw <behanw!~behanw@167.220.23.56> has joined #yocto | 16:05 | |
*** lamego <lamego!~jalamego@134.134.139.76> has joined #yocto | 16:08 | |
*** paulg_ <paulg_!~paulg@72.1.195.9> has joined #yocto | 16:12 | |
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto | 16:14 | |
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has joined #yocto | 16:16 | |
*** ddom <ddom!~ddom@p4FFD869E.dip0.t-ipconnect.de> has quit IRC | 16:19 | |
*** tsramos <tsramos!tsramos@nat/intel/x-ggbposbqduqgvvgl> has quit IRC | 16:20 | |
*** tsramos <tsramos!~tsramos@134.134.137.75> has joined #yocto | 16:21 | |
*** belen1 <belen1!Adium@nat/intel/x-fnhbeqrydnqttgsm> has quit IRC | 16:24 | |
*** tsramos <tsramos!~tsramos@134.134.137.75> has quit IRC | 16:25 | |
*** belen1 <belen1!Adium@nat/intel/x-spoebqarydugcdjw> has joined #yocto | 16:27 | |
*** tsramos <tsramos!~tsramos@192.55.54.36> has joined #yocto | 16:27 | |
*** tsramos <tsramos!~tsramos@192.55.54.36> has quit IRC | 16:31 | |
*** tsramos <tsramos!tsramos@nat/intel/x-kveedbxnbutwuata> has joined #yocto | 16:31 | |
*** tsramos <tsramos!tsramos@nat/intel/x-kveedbxnbutwuata> has quit IRC | 16:36 | |
*** panto <panto!~panto@195.97.110.117> has joined #yocto | 16:39 | |
*** AndersD <AndersD!~anders@212.214.9.162> has joined #yocto | 16:39 | |
panto | hey there | 16:39 |
panto | got any idea why pulling meta-oe into a poky yocto build gets me this: "ERROR: ParseError at /home/panto/winstron/poky/layers/meta-oe/recipes-core/packagegroups/packagegroup-basic.bb:12: Could not inherit file classes/bluetooth.bbclass" | 16:40 |
JaMa | you're mixing incompatible branches | 16:41 |
panto | ok, how to figure out which branches are compatible and what not? | 16:42 |
*** AndersD <AndersD!~anders@212.214.9.162> has quit IRC | 16:44 | |
*** chankit11 <chankit11!~oneam@203.106.195.178> has quit IRC | 16:44 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto | 16:45 | |
*** TobSnyder <TobSnyder!~schneider@ip92341b76.dynamic.kabel-deutschland.de> has quit IRC | 16:46 | |
kergoth | the ones that are exactly the same. | 16:48 |
kergoth | master with master, daisy with daisy, etc | 16:48 |
panto | ok, let me rephrase that | 16:50 |
panto | how do I use recipes from meta-oe in my poky build? | 16:50 |
bluelightning | panto: what version of poky are you building with? | 16:51 |
panto | dizzy | 16:51 |
bluelightning | ok, then you want the dizzy branch of meta-oe to match up with that | 16:51 |
panto | hmm, ok, let me try that | 16:51 |
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC | 16:52 | |
panto | that did the trick | 16:52 |
panto | thanks | 16:52 |
panto | see, it's the easy stuff that throw you off | 16:53 |
bluelightning | it's a common mistake and one I can certainly understand | 16:54 |
bluelightning | FWIW, as of the upcoming release we do have a mechanism that should be able to be used to produce a more obvious error when you're in that situation | 16:54 |
panto | I would throw a big fat warning at layers.openembedded.org | 16:54 |
bluelightning | hmm, that might be a good idea yes | 16:55 |
panto | or even a warning in the parse step about mismatching branches | 16:55 |
panto | dunno, it could help another poor slob that runs into it | 16:56 |
bluelightning | the latter is what the mechanism I'm alluding to should enable | 16:56 |
panto | the problem is detecting missmathed branches | 16:59 |
panto | *mismatched | 16:59 |
*** aehs29 <aehs29!aehernan@nat/intel/x-hkogieuuhwzpjrhg> has joined #yocto | 17:02 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-hkogieuuhwzpjrhg> has left #yocto | 17:02 | |
*** jbrianceau is now known as jbrianceau_away | 17:08 | |
*** khem` is now known as khem[away] | 17:14 | |
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto | 17:14 | |
*** khem[away] is now known as khem` | 17:20 | |
*** ddom <ddom!~ddom@ip-37-24-103-185.hsi14.unitymediagroup.de> has joined #yocto | 17:22 | |
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has quit IRC | 17:23 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 17:28 | |
*** fitzsim <fitzsim!~user@2001:420:284a:1300:6e0b:84ff:fe09:4e9f> has joined #yocto | 17:30 | |
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has quit IRC | 17:33 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto | 17:41 | |
*** Crofton|work <Crofton|work!~balister@pool-108-44-115-55.ronkva.east.verizon.net> has quit IRC | 17:47 | |
*** Crofton|work <Crofton|work!~balister@pool-108-44-118-46.ronkva.east.verizon.net> has joined #yocto | 17:49 | |
*** phantoxeD <phantoxeD!destroy@a89-152-21-144.cpe.netcabo.pt> has joined #yocto | 17:54 | |
*** phantoneD <phantoneD!destroy@a89-152-21-144.cpe.netcabo.pt> has quit IRC | 17:58 | |
*** phantoxeD <phantoxeD!destroy@a89-152-21-144.cpe.netcabo.pt> has quit IRC | 18:03 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC | 18:05 | |
*** phantoxeD <phantoxeD!destroy@a89-152-21-144.cpe.netcabo.pt> has joined #yocto | 18:06 | |
lpapp | has anything changed in daisy with regards to the ubifs creation? | 18:06 |
*** belen1 <belen1!Adium@nat/intel/x-spoebqarydugcdjw> has quit IRC | 18:07 | |
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC | 18:13 | |
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC | 18:19 | |
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC | 18:23 | |
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto | 18:30 | |
lpapp | if I remove a package from an image's packagegroup, should bitbake myimage recreate the reduced the image? | 18:37 |
lpapp | or I need to do a bit more cleanup? | 18:37 |
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto | 18:40 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto | 18:41 | |
*** lamego <lamego!~jalamego@134.134.139.76> has quit IRC | 18:41 | |
kergoth | should rebuild the packagegruop and then rebuild the image | 18:42 |
kergoth | it will, that is, you shoudlnt have to do anything else | 18:42 |
lpapp | thanks | 18:47 |
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto | 18:50 | |
*** lpapp <lpapp!~lpapp@kde/lpapp> has quit IRC | 18:53 | |
*** lamego <lamego!~jalamego@134.134.139.76> has joined #yocto | 18:57 | |
*** sjolley <sjolley!sjolley@nat/intel/x-idpsqnhikivbpngm> has joined #yocto | 19:01 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC | 19:03 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto | 19:05 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-zcpptgoezgktviee> has quit IRC | 19:08 | |
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has quit IRC | 19:11 | |
*** sjolley <sjolley!sjolley@nat/intel/x-idpsqnhikivbpngm> has quit IRC | 19:18 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 19:19 | |
*** Crofton <Crofton!~balister@pool-108-44-118-46.ronkva.east.verizon.net> has joined #yocto | 19:22 | |
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has quit IRC | 19:26 | |
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has quit IRC | 19:29 | |
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC | 19:37 | |
*** sjolley <sjolley!sjolley@nat/intel/x-thcrdbdzlebfifiz> has joined #yocto | 19:40 | |
*** sjolley <sjolley!sjolley@nat/intel/x-thcrdbdzlebfifiz> has quit IRC | 19:45 | |
*** patrickz <patrickz!~Thunderbi@212.118.209.82> has quit IRC | 19:46 | |
*** rich_b__ <rich_b__!~rich@212.183.140.92> has quit IRC | 19:46 | |
*** patrickz <patrickz!~Thunderbi@212.118.209.82> has joined #yocto | 19:46 | |
*** tobiash <tobiash!~quassel@mail.bmw-carit.de> has joined #yocto | 19:47 | |
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has quit IRC | 19:47 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto | 19:48 | |
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has quit IRC | 19:50 | |
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has joined #yocto | 19:56 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC | 19:58 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC | 20:04 | |
*** sjolley <sjolley!sjolley@nat/intel/x-oxsozgyjtlbpeori> has joined #yocto | 20:06 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 20:11 | |
*** sjolley <sjolley!sjolley@nat/intel/x-oxsozgyjtlbpeori> has quit IRC | 20:12 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto | 20:13 | |
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto | 20:17 | |
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC | 20:20 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC | 20:21 | |
*** sjolley <sjolley!sjolley@nat/intel/x-xbyxmrbtmkwuwqwj> has joined #yocto | 20:23 | |
*** sjolley <sjolley!sjolley@nat/intel/x-xbyxmrbtmkwuwqwj> has quit IRC | 20:27 | |
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC | 20:29 | |
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto | 20:29 | |
*** lamego <lamego!~jalamego@134.134.139.76> has quit IRC | 20:31 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto | 20:43 | |
*** ant_home <ant_home!~ant__@host220-62-dynamic.24-79-r.retail.telecomitalia.it> has joined #yocto | 20:46 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto | 21:02 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 21:15 | |
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has joined #yocto | 21:18 | |
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has joined #yocto | 21:19 | |
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has quit IRC | 21:27 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 21:30 | |
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC | 21:32 | |
*** ant_home <ant_home!~ant__@host220-62-dynamic.24-79-r.retail.telecomitalia.it> has quit IRC | 21:32 | |
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has joined #yocto | 21:35 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 21:38 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 21:42 | |
*** sjolley <sjolley!sjolley@nat/intel/x-gtnqmrslcgmqboyh> has joined #yocto | 21:51 | |
*** paulg_ <paulg_!~paulg@72.1.195.9> has quit IRC | 21:52 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has quit IRC | 21:54 | |
*** sjolley <sjolley!sjolley@nat/intel/x-gtnqmrslcgmqboyh> has quit IRC | 21:56 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 22:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 22:01 | |
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC | 22:02 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 22:03 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has joined #yocto | 22:12 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC | 22:15 | |
*** agust <agust!~agust@p4FDE6F74.dip0.t-ipconnect.de> has quit IRC | 22:18 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto | 22:24 | |
*** sjolley <sjolley!sjolley@nat/intel/x-knmuficlstsaplui> has joined #yocto | 22:25 | |
*** sjolley <sjolley!sjolley@nat/intel/x-knmuficlstsaplui> has quit IRC | 22:27 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto | 22:38 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC | 22:43 | |
*** paulg_ <paulg_!~paulg@71-19-175-186.dedicated.allstream.net> has joined #yocto | 22:44 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto | 22:45 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC | 22:48 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 22:48 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 22:49 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto | 22:51 | |
*** fabo <fabo!~fabo@linaro/fabo> has quit IRC | 22:53 | |
*** xulfer <xulfer!~xulfer@2001:41d0:2:5ee0::> has quit IRC | 22:57 | |
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has quit IRC | 22:58 | |
*** xulfer <xulfer!~xulfer@2001:41d0:2:5ee0::> has joined #yocto | 23:00 | |
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC | 23:04 | |
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has quit IRC | 23:33 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 23:36 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-hgbiixdwnsjkieso> has joined #yocto | 23:38 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 23:40 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto | 23:41 | |
*** sjolley1 <sjolley1!sjolley@nat/intel/x-uemfshsyiqggrelm> has joined #yocto | 23:42 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC | 23:42 | |
*** fabo <fabo!~fabo@linaro/fabo> has joined #yocto | 23:49 | |
*** sjolley1 <sjolley1!sjolley@nat/intel/x-uemfshsyiqggrelm> has quit IRC | 23:50 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 23:52 | |
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC | 23:58 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!