Tuesday, 2014-07-15

maxtothemaxso ${sysconfdir} is usually just /etc, and you prepend ${D} to get the proper path in your recipes00:02
maxtothemaxbut with -native recipes, ${sysconfdir} is actually a complete path, and ${D}${sysconfdir} is invalid00:02
maxtothemaxwhat's up with that?00:02
maxtothemaxfrankly, it doesn't matter, because the files in /etc/ will be ignored in the -native version, I can just suppress them from being installed00:04
maxtothemaxbut I don't want to add extra code for it to my recipe if I don't have to00:04
kergothit's not invalid00:05
kergothit'll be a crazy deep path, but it doesn't matter, the code which installs it into the sysroot should be compensating00:05
kergoth(and does)00:05
maxtothemaxI'm getting sysconfdir = "/home/maxtothemax/poky-bootchart2/build/tmp/sysroots/x86_64-linux/etc" for -native00:06
maxtothemaxinstead of just /etc00:06
maxtothemaxso ${D}${sysconfdir} is /home/maxtothemax/poky-bootchart2/build/tmp/work/x86_64-linux/bootchart2-native/0.14.6+gitAUTOINC+f1bd345036-r0/image/home/maxtothemax/poky-bootchart2/build/tmp/sysroots/x86_64-linux/etc00:07
maxtothemaxseems a little odd to me?00:07
kergoththat's fine, and expected00:10
kergothprefix is set to the sysroot for native recipes to avoid issues with relocation00:10
maxtothemaxI figured out the problem00:10
maxtothemaxI was calling update-rc.d ${D}00:10
*** mkeeter <mkeeter!~mkeeter@2601:6:b80:5a:90b0:1fb6:4761:90f4> has quit IRC00:11
*** mkeeter <mkeeter!~mkeeter@2601:6:b80:5a:90b0:1fb6:4761:90f4> has joined #yocto00:11
maxtothemaxwhich I don't need to do anyway for -native00:11
kergothyou should be inheriting the bbclass, not calling it directly, which will work fine for native or non-native00:11
kergothas its called in the postinst, which isn't run for native00:12
maxtothemaxwill look into that thanks00:12
*** kroon <kroon!~kroon@89-253-118-72.customers.ownit.se> has quit IRC00:13
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC00:21
Marexuh meh, Yocto 1.6.1 meta-toolchain-qte is somewhat strange00:22
MarexI built this one, then I tried to do a debug build of a simple Qt application and for some reason, even during debug build, the Qt application uses optimization flags contained in regular CFLAGS00:23
Marexand also, during 'release' build, the result is still containing debugging symbols00:24
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto00:24
Marexah ... so the environment-setup-armv5te-linux-gnueabi script puts $CFLAGS into OE_QMAKE_CFLAGS and therefore they are included in both release and debug builds of the Qt project00:26
Marexbut as CFLAGS contains both -g and -O2 , those also leak into both release and debug build, so I always have debug symbols in the resulting binary00:26
Marexurmmmmm00:27
Marexaha ... looks like the meta/recipes-qt/meta/meta-toolchain-qt.inc will need to do some preprocessing by stripping the -Ox and -g flags from CFLAGS and LDFLAGS and leave that to the Qmake to configure those00:30
Marexis that right ?00:39
Marexhttps://lists.yoctoproject.org/pipermail/yocto/2013-June/014502.html someone actually complained about this before, hm00:44
*** mkeeter <mkeeter!~mkeeter@2601:6:b80:5a:90b0:1fb6:4761:90f4> has quit IRC00:54
*** Squix <Squix!~Squix__@p231.net112139207.tokai.or.jp> has joined #yocto01:06
khemMarex: from OEs POV its ok since debug info will be stripped out into packages of its own01:10
khemit doesnt rely on components ( qt here ) buildsystem to do that01:11
khemdarknighte: you got through the problem or still muddling ?01:11
Marexkhem: I am just looking into it01:15
Marexkhem: the problem is noticable when you build the SDK (the meta-toolchain-qte) and use it outside of yocto01:15
Marexkhem: even in debug build, the -O2 optimization is enabled , which probably is not something you want in a debug build01:16
Marexkhem: if I were to remove SELECTED_OPTIMIZATION from the SDK OE_QMAKE_CFLAGS and OE_QMAKE_CXXFLAGS, then that'd probably solve part of the problem ... LDFLAGS would still be troublesome01:16
Marexstill ... it's not like I am confident in what I am talking about , sorry01:17
Marexbtw this changed between Denzil and Danny , in Denzil (7.0) the env setup script still worked correctly, but in Danny (8.0) I am getting this leaking of flags01:20
khemone should debug the final code01:22
khemusing different O level01:22
khemis a wrong preset01:22
khemyou test and debug the code that you wont ship01:23
Marexkhem: during debug, I don't want my code to be optimized so I can inspect it proper01:24
Marexkhem: during release, I want for the code to be optimized01:24
Marexkhem: btw. that's how it worked in 7.0 , in 8.0 the behavior changed so the flags are now leaking into both builds01:24
khembelieve me you dont want that01:25
khembesides that01:25
Marexok, so I do want to debug code which is optimized ... where symbols are "(optimized out)", so it's impossible to tell etc.01:25
khemusually -g -O201:25
khemis most common development option01:26
Marexok, so when I do "qmake CONFIG += release ", I should expect the resulting build to contain debugging symbols ?01:27
khemit should not01:28
Marexit does01:28
Marexbecause the CFLAGS , which contain -O2 and -g do go also into QE_QMAKE_CFLAGS , which in turn get included no matter what in the build flags of this Qt project01:28
khemit could but image will not01:29
MarexI am talking about using the SDK, outside of the yocto01:29
khemunless you include debug packages01:29
Marexkhem: I do ". /opt/poky.../environment-setup...." , then qmake CONFIG+=release , then "make"01:30
khemgenerally SDKs are used for development and then you include your app in OE/yocto proper01:30
Marexkhem: is that the reason why the behavior changed between 7.0 and 8.0 then ?01:30
khemare you planning to ship your app built outside yocto too ?01:31
Marexkhem: no, I'd like to understand why the behavior changed01:31
Marexkhem: I'd actually like to test both debug and release builds with the toolchain though01:31
khemI dont think thats the reason it might be a indesired chnage01:31
Marexkhem: I think that's pretty much it, a sideeffect of some plumbing in bitbake.conf01:32
Marexkhem: but you do agree that I should be able to do debug and release build of a Qt application, outside of yocto with just the SDK and avoid having debugging symbols in the "release" build, right ?01:33
Marex(that's the old behavior from 7.0)01:33
khemits nice to have but I dont think its a must01:33
Marexkhem: my understanding is that this is exactly how it's supposed to work -- have debug symbols in the debug build only01:34
Marexkhem: esp. since the qmake adds those -g flags on it's own accord from those g++-unix.conf files01:34
*** Squix <Squix!~Squix__@p231.net112139207.tokai.or.jp> has quit IRC01:35
khemI would think for a QT developer's POV its fine to have I guess01:36
Marexkhem: I think I found the culprit for this01:38
Marexkhem: if you compare denzil-7.0:meta/classes/toolchain-scripts.bbclass and danny-8.0:meta/classes/toolchain-scripts.bbclass , you will see the assignment of CFLAGS changed01:39
Marexkhem: so even the toolchains' CFLAGS were different in 7.0 and 8.0 ...01:40
khemsure it does change01:40
khembut I would suggest you to see if daisy or master has same issue too01:41
Marexkhem: I see it in 1.6 still01:41
khemok01:41
*** maxtothemax <maxtothemax!maxtothema@nat/intel/x-vnpzvxcwnedcxobf> has quit IRC01:41
khemfile a bug that way it doesnt get lost01:42
Marexkhem: I will experiment a little more so I understand what's wrong, then I will file a bug01:42
Marexkhem: I also have a patch for the Qt here so that the CFLAGS do not contain uselessly duplicated flags01:43
Marex(that was a simple removal of assignments from the g++-unix.conf shipped with yocto, there were remaining flags which in the meantime moved elsewhere so a duplication happened)01:43
Marexkhem: is there anyone digging in the QtE I can poke here maybe ?01:44
khemlot of folks do with QT501:44
khemQT4 not so many01:44
MarexI can imagine01:45
Marexkhem: thanks, I will file those two this week01:47
khemnp01:47
nerdboyhttp://cacm.acm.org/  <=  "killer" quake app01:58
Marexkhem: oh wait, but do I actually want the toolchain I generated to contain any predefined optimization flags in CFLAGS/CXXFLAGS/LDFLAGS ?02:02
Marexkhem: or do I want to control those myself ?02:02
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has quit IRC02:05
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC02:11
khemMarex: usually its best to use whatever yocto selects as defaults02:11
khemfor SDK02:11
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto02:12
Marexkhem: uh, so I should actually be OK with Yocto preconfiguring random optimization flags _for_ me ?02:19
Marexthat's a little strange, isn't it ?02:19
MarexI'd expect for the projects I compile with the toolchain to configure their CFLAGS themselves instead02:20
Marexhttps://lists.yoctoproject.org/pipermail/yocto/2013-January/011588.html ... and the best defaults Yocto actually selects for me do break build of various things02:22
Marex(like U-Boot , kernel ... and this in turn makes the toolchain unusable for some usecases)02:23
Marexthe -Wl,-O1 in LDFLAGS will likely break anything which doesn't link using gcc , but with plain LD02:23
*** JDuke128 <JDuke128!~textual@178.233.48.89> has quit IRC02:37
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC02:42
*** dvhart <dvhart!dvhart@nat/intel/x-iqogthppsgvonypf> has quit IRC02:42
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has quit IRC02:42
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC02:42
*** warthog9 <warthog9!~warthog9@149.20.54.19> has quit IRC02:42
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has quit IRC02:42
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has quit IRC02:42
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has quit IRC02:42
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has quit IRC02:42
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has quit IRC02:42
*** Gintaro_ <Gintaro_!~gintaro@geertswei.nl> has quit IRC02:42
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC02:42
*** dca <dca!~dca@146.185.164.188> has quit IRC02:42
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has joined #yocto02:42
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto02:42
*** dlan <dlan!~dennis@116.228.88.131> has joined #yocto02:42
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto02:42
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has joined #yocto02:42
*** warthog9 <warthog9!~warthog9@149.20.54.19> has joined #yocto02:42
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has joined #yocto02:42
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto02:42
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has joined #yocto02:42
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has joined #yocto02:43
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has joined #yocto02:43
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto02:44
*** dca <dca!~dca@146.185.164.188> has joined #yocto02:44
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has joined #yocto02:45
darknightekhem: gotten farther.  I needed to make sure that the qtbase-plugins package was installed to the rootfs.02:47
darknightekhem: now I'm working to get the app to connect correctly to the x11 server02:48
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC02:50
*** dlan <dlan!~dennis@116.228.88.131> has joined #yocto02:52
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto02:52
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto03:00
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC03:03
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has quit IRC03:12
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC03:12
*** dca <dca!~dca@146.185.164.188> has quit IRC03:12
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC03:12
*** dl9pf_ <dl9pf_!~quassel@static.88-198-106-157.clients.your-server.de> has quit IRC03:12
*** Jay7 <Jay7!jay@176.15.149.182> has quit IRC03:12
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has quit IRC03:12
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has quit IRC03:12
*** behanw <behanw!~behanw@S0106dc9fdb80cffd.gv.shawcable.net> has quit IRC03:12
*** reanguia1o <reanguia1o!~devnull@ricardoanguiano.com> has quit IRC03:12
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has quit IRC03:12
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has quit IRC03:12
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has quit IRC03:12
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has quit IRC03:12
*** acidx <acidx!~leandro@hadron.lhc.net.br> has quit IRC03:12
*** mcweigel <mcweigel!~b46258@gate-tx3.freescale.com> has quit IRC03:12
*** ripperD <ripperD!~dean@c-24-118-104-28.hsd1.mn.comcast.net> has quit IRC03:12
*** bunk <bunk!~bunk@cs185055.pp.htv.fi> has quit IRC03:12
*** EsbenAFK <EsbenAFK!~esben@hugin.dotsrc.org> has quit IRC03:12
*** nslu2-log <nslu2-log!~nslu2-log@140.211.169.184> has quit IRC03:12
*** th <th!~th@unaffiliated/th> has quit IRC03:12
*** Noor <Noor!~quassel@110.93.212.98> has quit IRC03:12
*** AlexVaduva <AlexVaduva!c1ca1642@gateway/web/freenode/ip.193.202.22.66> has quit IRC03:12
*** Ricko__ <Ricko__!5a509091@gateway/web/freenode/ip.90.80.144.145> has quit IRC03:12
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC03:12
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has quit IRC03:12
*** sjolley <sjolley!~sjolley@134.134.139.72> has quit IRC03:12
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC03:12
*** msm` <msm`!~msm@cpe-72-182-100-192.austin.res.rr.com> has quit IRC03:12
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has quit IRC03:12
*** seezer_ <seezer_!quassel@quassel/developer/seezer> has quit IRC03:12
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has quit IRC03:12
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC03:12
*** lyang0 <lyang0!~lyang001@1.202.252.122> has quit IRC03:12
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC03:12
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has quit IRC03:12
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has quit IRC03:12
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has quit IRC03:12
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC03:12
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC03:12
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has quit IRC03:12
*** sgw_ <sgw_!~sgw@c-50-186-0-160.hsd1.or.comcast.net> has quit IRC03:12
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has quit IRC03:12
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC03:12
*** lexano <lexano!~lexano@99.245.144.244> has quit IRC03:12
*** FunkyPenguin <FunkyPenguin!~quassel@opensuse/member/FunkyPenguin> has quit IRC03:12
*** kevin_t <kevin_t!~Thunderbi@46.18.96.46> has quit IRC03:12
*** ionte <ionte!~jonatan@85.224.69.51> has quit IRC03:12
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has quit IRC03:12
*** zibri <zibri!zibri@rfc1459.se> has quit IRC03:12
*** proximus <proximus!~esamgab@lmcpra.ericsson.ca> has quit IRC03:12
*** erbo <erbo!~erbo@194-237-7-146.customer.telia.com> has quit IRC03:12
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has quit IRC03:12
*** khem <khem!~khem@c-98-207-177-218.hsd1.ca.comcast.net> has quit IRC03:12
*** Marex <Marex!~Marex@195.140.253.167> has quit IRC03:12
*** jmpdelos <jmpdelos!~polk@75-173-232-37.clsp.qwest.net> has quit IRC03:12
*** JaMa <JaMa!~martin@ip-89-176-104-3.net.upcbroadband.cz> has quit IRC03:12
*** Saur <Saur!pkj@nat/axis/x-ujhanbfeksprklpj> has quit IRC03:12
*** freanux <freanux!~freanux@unaffiliated/freanux> has quit IRC03:12
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC03:12
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has quit IRC03:12
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC03:12
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has quit IRC03:12
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has quit IRC03:12
*** ddalex <ddalex!~ddalex@83.217.123.106> has quit IRC03:12
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-luzcwxeaobwduqxl> has quit IRC03:12
*** kimrhh <kimrhh!~kimrhh@exherbo/developer/kimrhh> has quit IRC03:12
*** adelcast <adelcast!~adelcast@130.164.62.224> has quit IRC03:12
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has quit IRC03:12
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has quit IRC03:12
*** fabo <fabo!~fabo@linaro/fabo> has quit IRC03:12
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has quit IRC03:12
*** ccube <ccube!ccube@nx.mindrunner.de> has quit IRC03:12
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has quit IRC03:12
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has quit IRC03:12
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC03:12
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has quit IRC03:12
*** scot <scot!~scot@130.164.62.160> has quit IRC03:12
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has quit IRC03:12
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has quit IRC03:12
*** else58_1 <else58_1!~swarthou@gate-tx3.freescale.com> has quit IRC03:12
*** volker- <volker-!~volker@unaffiliated/volker-> has quit IRC03:12
*** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has quit IRC03:12
*** edsiper <edsiper!edsiper@monkeyhttpd.osuosl.org> has quit IRC03:12
*** Xz <Xz!kmsywula@nat/intel/x-pdfrlyzijsuvcnsy> has quit IRC03:12
*** radhus <radhus!~radhus@evpsnl.radhuset.org> has quit IRC03:12
*** akbennett <akbennett!akbennett@linaro/akbennett> has quit IRC03:12
*** kscherer_ <kscherer_!~kscherer@128.224.252.2> has joined #yocto03:16
*** kscherer <kscherer!~kscherer@128.224.252.2> has quit IRC03:18
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto03:20
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto03:20
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has joined #yocto03:20
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto03:20
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has joined #yocto03:20
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has joined #yocto03:20
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto03:20
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has joined #yocto03:20
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto03:20
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto03:20
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has joined #yocto03:20
*** sjolley <sjolley!~sjolley@134.134.139.72> has joined #yocto03:20
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has joined #yocto03:20
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto03:20
*** scot <scot!~scot@130.164.62.160> has joined #yocto03:20
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has joined #yocto03:20
*** sgw_ <sgw_!~sgw@c-50-186-0-160.hsd1.or.comcast.net> has joined #yocto03:20
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has joined #yocto03:20
*** mcweigel <mcweigel!~b46258@gate-tx3.freescale.com> has joined #yocto03:20
*** msm` <msm`!~msm@cpe-72-182-100-192.austin.res.rr.com> has joined #yocto03:20
*** AlexVaduva <AlexVaduva!c1ca1642@gateway/web/freenode/ip.193.202.22.66> has joined #yocto03:20
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has joined #yocto03:20
*** ddalex <ddalex!~ddalex@83.217.123.106> has joined #yocto03:20
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has joined #yocto03:20
*** seezer_ <seezer_!quassel@quassel/developer/seezer> has joined #yocto03:20
*** dl9pf_ <dl9pf_!~quassel@static.88-198-106-157.clients.your-server.de> has joined #yocto03:20
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-luzcwxeaobwduqxl> has joined #yocto03:20
*** Jay7 <Jay7!jay@176.15.149.182> has joined #yocto03:20
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has joined #yocto03:20
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has joined #yocto03:20
*** Noor <Noor!~quassel@110.93.212.98> has joined #yocto03:20
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto03:20
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has joined #yocto03:20
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has joined #yocto03:20
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto03:20
*** lyang0 <lyang0!~lyang001@1.202.252.122> has joined #yocto03:20
*** behanw <behanw!~behanw@S0106dc9fdb80cffd.gv.shawcable.net> has joined #yocto03:20
*** reanguia1o <reanguia1o!~devnull@ricardoanguiano.com> has joined #yocto03:20
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has joined #yocto03:20
*** else58_1 <else58_1!~swarthou@gate-tx3.freescale.com> has joined #yocto03:20
*** kimrhh <kimrhh!~kimrhh@exherbo/developer/kimrhh> has joined #yocto03:20
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has joined #yocto03:20
*** lexano <lexano!~lexano@99.245.144.244> has joined #yocto03:20
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has joined #yocto03:20
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has joined #yocto03:20
*** volker- <volker-!~volker@unaffiliated/volker-> has joined #yocto03:20
*** FunkyPenguin <FunkyPenguin!~quassel@opensuse/member/FunkyPenguin> has joined #yocto03:20
*** Ricko__ <Ricko__!5a509091@gateway/web/freenode/ip.90.80.144.145> has joined #yocto03:20
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has joined #yocto03:20
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has joined #yocto03:20
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto03:20
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has joined #yocto03:20
*** ionte <ionte!~jonatan@85.224.69.51> has joined #yocto03:20
*** kevin_t <kevin_t!~Thunderbi@46.18.96.46> has joined #yocto03:20
*** erbo <erbo!~erbo@194-237-7-146.customer.telia.com> has joined #yocto03:20
*** proximus <proximus!~esamgab@lmcpra.ericsson.ca> has joined #yocto03:20
*** zibri <zibri!zibri@rfc1459.se> has joined #yocto03:20
*** freanux <freanux!~freanux@unaffiliated/freanux> has joined #yocto03:20
*** Saur <Saur!pkj@nat/axis/x-ujhanbfeksprklpj> has joined #yocto03:20
*** JaMa <JaMa!~martin@ip-89-176-104-3.net.upcbroadband.cz> has joined #yocto03:20
*** jmpdelos <jmpdelos!~polk@75-173-232-37.clsp.qwest.net> has joined #yocto03:20
*** Marex <Marex!~Marex@195.140.253.167> has joined #yocto03:20
*** khem <khem!~khem@c-98-207-177-218.hsd1.ca.comcast.net> has joined #yocto03:20
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has joined #yocto03:20
*** fabo <fabo!~fabo@linaro/fabo> has joined #yocto03:20
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has joined #yocto03:20
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has joined #yocto03:20
*** adelcast <adelcast!~adelcast@130.164.62.224> has joined #yocto03:20
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto03:20
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has joined #yocto03:20
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has joined #yocto03:20
*** ccube <ccube!ccube@nx.mindrunner.de> has joined #yocto03:20
*** akbennett <akbennett!akbennett@linaro/akbennett> has joined #yocto03:20
*** radhus <radhus!~radhus@evpsnl.radhuset.org> has joined #yocto03:20
*** Xz <Xz!kmsywula@nat/intel/x-pdfrlyzijsuvcnsy> has joined #yocto03:20
*** edsiper <edsiper!edsiper@monkeyhttpd.osuosl.org> has joined #yocto03:20
*** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has joined #yocto03:20
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has joined #yocto03:20
*** acidx <acidx!~leandro@hadron.lhc.net.br> has joined #yocto03:20
*** ripperD <ripperD!~dean@c-24-118-104-28.hsd1.mn.comcast.net> has joined #yocto03:20
*** bunk <bunk!~bunk@cs185055.pp.htv.fi> has joined #yocto03:20
*** EsbenAFK <EsbenAFK!~esben@hugin.dotsrc.org> has joined #yocto03:20
*** nslu2-log <nslu2-log!~nslu2-log@140.211.169.184> has joined #yocto03:20
*** th <th!~th@unaffiliated/th> has joined #yocto03:20
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has joined #yocto03:22
*** dca <dca!~dca@146.185.164.188> has joined #yocto03:22
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto03:22
* nerdboy thinks darknighte left the door open03:36
Marex... and everyone was sucked into the vast darkness of space ?03:41
Marexkhem: it's 5ed19a40f407efa1e6a2043bd8e36d729968c446 in yocto which introduced the different behavior03:50
*** [Sno] <[Sno]!~Sno]@p578b540c.dip0.t-ipconnect.de> has quit IRC04:21
*** JDuke128 <JDuke128!~textual@178.233.48.89> has joined #yocto04:33
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto04:38
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC04:39
*** melonipoika <melonipoika!~melonipoi@91-158-65-146.elisa-laajakaista.fi> has joined #yocto04:47
*** zecke <zecke!~ich@91-64-81-99-dynip.superkabel.de> has joined #yocto05:21
*** zecke <zecke!~ich@91-64-81-99-dynip.superkabel.de> has quit IRC05:37
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has joined #yocto05:43
*** JDuke128 <JDuke128!~textual@178.233.48.89> has quit IRC05:43
*** danielki <danielki!~danielki@188-192-101-69-dynip.superkabel.de> has joined #yocto05:44
*** [Sno] <[Sno]!~Sno]@pd956d8ef.dip0.t-ipconnect.de> has joined #yocto05:47
*** msm <msm!~msm@cpe-72-182-100-192.austin.res.rr.com> has joined #yocto06:01
*** msm` <msm`!~msm@cpe-72-182-100-192.austin.res.rr.com> has quit IRC06:04
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has joined #yocto06:14
*** JDuke128 <JDuke128!~textual@178.233.48.89> has joined #yocto06:41
*** akS_ <akS_!d44db44a@gateway/web/freenode/ip.212.77.180.74> has joined #yocto06:54
akS_morning all06:54
*** danielki <danielki!~danielki@188-192-101-69-dynip.superkabel.de> has quit IRC06:55
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has joined #yocto06:56
*** abelloni <abelloni!~abelloni@128-79-216-6.hfc.dyn.abo.bbox.fr> has joined #yocto07:06
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has joined #yocto07:07
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has joined #yocto07:09
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto07:22
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto07:25
*** danielki <danielki!~danielki@188.111.54.34> has joined #yocto07:33
*** mckoan|away is now known as mckoan07:38
mckoangood morning07:38
bluelightningmorning all07:45
*** florian_kc is now known as florian07:54
kbouharaHi all, Im getting stuck with the issue "opkg_install_cmd: Cannot install package mypackage-dev" , how can I resolve this ?07:55
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has joined #yocto08:07
*** sameo <sameo!samuel@nat/intel/x-vyqitcjubalfurti> has joined #yocto08:08
JaMadarknighte: I do, but I have never tried cinematic experience08:25
*** melonipoika <melonipoika!~melonipoi@91-158-65-146.elisa-laajakaista.fi> has quit IRC08:37
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto09:00
*** JDuke128 <JDuke128!~textual@178.233.48.89> has quit IRC09:03
*** belen <belen!~Adium@192.198.151.44> has joined #yocto09:04
TuTizzmorning all, what should I do to compress my kernel in lzo?09:05
danielkiotavio: hi; what's the state of sdk support in meta-qt5? is it supposed to work now or still in progress?09:12
mckoandanielki: with daisy it works09:40
mckoandanielki: which problems have you?09:40
danielkimckoan: bitbake -c populate_sdk <image-name> completes, but the resulting tarball doesn't contain any qt libs (even though the corresponding image does)09:41
danielkiis there some extra config needed to get packages into the sdk?09:42
*** kroon <kroon!~kroon@89-253-118-72.customers.ownit.se> has joined #yocto09:45
*** kroon <kroon!~kroon@89-253-118-72.customers.ownit.se> has quit IRC09:55
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has quit IRC09:55
*** dca <dca!~dca@146.185.164.188> has quit IRC09:55
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC09:55
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has quit IRC09:55
*** msm <msm!~msm@cpe-72-182-100-192.austin.res.rr.com> has quit IRC09:55
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC09:55
*** dl9pf_ <dl9pf_!~quassel@static.88-198-106-157.clients.your-server.de> has quit IRC09:55
*** Jay7 <Jay7!jay@176.15.149.182> has quit IRC09:55
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has quit IRC09:55
*** mckoan <mckoan!~marco@unaffiliated/mckoan> has quit IRC09:55
*** behanw <behanw!~behanw@S0106dc9fdb80cffd.gv.shawcable.net> has quit IRC09:55
*** reanguia1o <reanguia1o!~devnull@ricardoanguiano.com> has quit IRC09:55
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has quit IRC09:55
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has quit IRC09:55
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has quit IRC09:55
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has quit IRC09:55
*** acidx <acidx!~leandro@hadron.lhc.net.br> has quit IRC09:55
*** mcweigel <mcweigel!~b46258@gate-tx3.freescale.com> has quit IRC09:56
*** ripperD <ripperD!~dean@c-24-118-104-28.hsd1.mn.comcast.net> has quit IRC09:56
*** bunk <bunk!~bunk@cs185055.pp.htv.fi> has quit IRC09:56
*** EsbenAFK <EsbenAFK!~esben@hugin.dotsrc.org> has quit IRC09:56
*** nslu2-log <nslu2-log!~nslu2-log@140.211.169.184> has quit IRC09:56
*** th <th!~th@unaffiliated/th> has quit IRC09:56
*** Noor <Noor!~quassel@110.93.212.98> has quit IRC09:56
*** akS_ <akS_!d44db44a@gateway/web/freenode/ip.212.77.180.74> has quit IRC09:56
*** AlexVaduva <AlexVaduva!c1ca1642@gateway/web/freenode/ip.193.202.22.66> has quit IRC09:56
*** Ricko__ <Ricko__!5a509091@gateway/web/freenode/ip.90.80.144.145> has quit IRC09:56
*** danielki <danielki!~danielki@188.111.54.34> has quit IRC09:56
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has quit IRC09:56
*** [Sno] <[Sno]!~Sno]@pd956d8ef.dip0.t-ipconnect.de> has quit IRC09:56
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC09:56
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has quit IRC09:56
*** sjolley <sjolley!~sjolley@134.134.139.72> has quit IRC09:56
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC09:56
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has quit IRC09:56
*** seezer_ <seezer_!quassel@quassel/developer/seezer> has quit IRC09:56
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has quit IRC09:56
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC09:56
*** lyang0 <lyang0!~lyang001@1.202.252.122> has quit IRC09:56
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC09:56
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has quit IRC09:56
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has quit IRC09:56
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has quit IRC09:56
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC09:56
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC09:56
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has quit IRC09:56
*** sgw_ <sgw_!~sgw@c-50-186-0-160.hsd1.or.comcast.net> has quit IRC09:56
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has quit IRC09:56
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC09:56
*** lexano <lexano!~lexano@99.245.144.244> has quit IRC09:56
*** FunkyPenguin <FunkyPenguin!~quassel@opensuse/member/FunkyPenguin> has quit IRC09:56
*** kevin_t <kevin_t!~Thunderbi@46.18.96.46> has quit IRC09:56
*** ionte <ionte!~jonatan@85.224.69.51> has quit IRC09:56
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has quit IRC09:56
*** zibri <zibri!zibri@rfc1459.se> has quit IRC09:56
*** proximus <proximus!~esamgab@lmcpra.ericsson.ca> has quit IRC09:56
*** erbo <erbo!~erbo@194-237-7-146.customer.telia.com> has quit IRC09:56
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has quit IRC09:56
*** khem <khem!~khem@c-98-207-177-218.hsd1.ca.comcast.net> has quit IRC09:56
*** Marex <Marex!~Marex@195.140.253.167> has quit IRC09:56
*** jmpdelos <jmpdelos!~polk@75-173-232-37.clsp.qwest.net> has quit IRC09:56
*** JaMa <JaMa!~martin@ip-89-176-104-3.net.upcbroadband.cz> has quit IRC09:56
*** Saur <Saur!pkj@nat/axis/x-ujhanbfeksprklpj> has quit IRC09:56
*** freanux <freanux!~freanux@unaffiliated/freanux> has quit IRC09:56
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC09:56
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC09:56
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has quit IRC09:56
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC09:56
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has quit IRC09:56
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has quit IRC09:56
*** ddalex <ddalex!~ddalex@83.217.123.106> has quit IRC09:56
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-luzcwxeaobwduqxl> has quit IRC09:56
*** kimrhh <kimrhh!~kimrhh@exherbo/developer/kimrhh> has quit IRC09:56
*** adelcast <adelcast!~adelcast@130.164.62.224> has quit IRC09:56
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has quit IRC09:56
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has quit IRC09:56
*** fabo <fabo!~fabo@linaro/fabo> has quit IRC09:56
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has quit IRC09:56
*** ccube <ccube!ccube@nx.mindrunner.de> has quit IRC09:56
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has quit IRC09:56
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has quit IRC09:56
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC09:56
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has quit IRC09:56
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has quit IRC09:56
*** scot <scot!~scot@130.164.62.160> has quit IRC09:56
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has quit IRC09:56
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has quit IRC09:56
*** else58_1 <else58_1!~swarthou@gate-tx3.freescale.com> has quit IRC09:56
*** volker- <volker-!~volker@unaffiliated/volker-> has quit IRC09:56
*** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has quit IRC09:56
*** edsiper <edsiper!edsiper@monkeyhttpd.osuosl.org> has quit IRC09:56
*** Xz <Xz!kmsywula@nat/intel/x-pdfrlyzijsuvcnsy> has quit IRC09:56
*** radhus <radhus!~radhus@evpsnl.radhuset.org> has quit IRC09:56
*** akbennett <akbennett!akbennett@linaro/akbennett> has quit IRC09:56
*** sameo <sameo!samuel@nat/intel/x-vyqitcjubalfurti> has quit IRC09:56
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has quit IRC09:56
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC09:56
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has quit IRC09:56
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has quit IRC09:56
*** tomz <tomz!tomz@nat/intel/x-upwqmxdfuvmqxfwu> has quit IRC09:56
*** Crofton|work <Crofton|work!~balister@pool-71-171-48-208.ronkva.east.verizon.net> has quit IRC09:56
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC09:56
*** vmeson <vmeson!~quassel@128.224.252.2> has quit IRC09:56
*** Letothe2nd <Letothe2nd!~jd@unaffiliated/letothe2nd> has quit IRC09:56
*** ccaione <ccaione!~ccaione@unaffiliated/ccaione> has quit IRC09:56
*** abelloni <abelloni!~abelloni@128-79-216-6.hfc.dyn.abo.bbox.fr> has quit IRC09:56
*** kscherer_ <kscherer_!~kscherer@128.224.252.2> has quit IRC09:56
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has quit IRC09:56
*** warthog9 <warthog9!~warthog9@149.20.54.19> has quit IRC09:56
*** Crofton <Crofton!~balister@pool-71-171-48-208.ronkva.east.verizon.net> has quit IRC09:56
*** rink_ <rink_!~rink@gloom.codethulu.net> has quit IRC09:56
*** Sput <Sput!~sputnick@quassel/developer/sput> has quit IRC09:56
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC09:56
*** rperier <rperier!~quassel@ubuntu/member/rperier> has quit IRC09:56
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC09:56
*** dzoe <dzoe!joe@pdpc/supporter/active/dzoe> has quit IRC09:56
*** eliza411 <eliza411!~eliza411@crown.incitedev.com> has quit IRC09:56
*** gagi_ <gagi_!~quassel@vpn.pelagicore.de> has quit IRC09:56
*** halstead <halstead!~halstead@drupal.org/user/301087/view> has quit IRC09:56
*** captainigloo <captainigloo!~captainig@2001:41d0:8:114b::1> has quit IRC09:56
*** ajtag <ajtag!~ajtag@cpc10-lee211-2-0-cust124.7-1.cable.virginm.net> has quit IRC09:56
*** otavio <otavio!~otavio@debian/developer/otavio> has quit IRC09:56
*** awafaa <awafaa!sid716@gateway/web/irccloud.com/x-vnsranvsgzkgffye> has quit IRC09:56
*** DarkKnight_ <DarkKnight_!~quassel@HSI-KBW-095-208-008-143.hsi5.kabel-badenwuerttemberg.de> has quit IRC09:56
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC09:56
*** SorenHolm <SorenHolm!~quassel@5634f347.rev.stofanet.dk> has quit IRC09:56
*** maxin <maxin!~majo@sestofw01.enea.se> has quit IRC09:56
*** wgao <wgao!~wgao@1.202.252.122> has quit IRC09:56
*** rtollert_ <rtollert_!~rtollert@130.164.62.31> has quit IRC09:56
*** mankku <mankku!~mankku@projects.sse.fi> has quit IRC09:56
*** rodgort <rodgort!~rodgort@192.241.198.49> has quit IRC09:56
*** iggy <iggy!~iggy@theiggy.com> has quit IRC09:56
*** jero- <jero-!~boo@2001:41d0:52:100::3b1> has quit IRC09:56
*** rakuco <rakuco!rakuco@kde/developer/rkcosta> has quit IRC09:56
*** zenlinux <zenlinux!zenlinux@2600:3c00::f03c:91ff:fedb:c91> has quit IRC09:56
*** belen <belen!~Adium@192.198.151.44> has quit IRC09:56
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has quit IRC09:56
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has quit IRC09:56
*** phantoxeD <phantoxeD!destroy@a89-154-119-158.cpe.netcabo.pt> has quit IRC09:56
*** joeythesaint <joeythesaint!~joe@209.141.56.162> has quit IRC09:56
*** fusman <fusman!~fahad@110.93.212.98> has quit IRC09:56
*** mago_ <mago_!~mago@c193-14-123-186.cust.tele2.se> has quit IRC09:56
*** zarul <zarul!~zarul@ubuntu/member/zarul> has quit IRC09:56
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto10:03
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto10:03
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has joined #yocto10:03
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto10:03
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has joined #yocto10:03
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has joined #yocto10:03
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto10:03
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has joined #yocto10:03
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto10:03
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto10:03
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has joined #yocto10:03
*** sjolley <sjolley!~sjolley@134.134.139.72> has joined #yocto10:03
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has joined #yocto10:03
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto10:03
*** scot <scot!~scot@130.164.62.160> has joined #yocto10:03
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has joined #yocto10:03
*** sgw_ <sgw_!~sgw@c-50-186-0-160.hsd1.or.comcast.net> has joined #yocto10:03
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has joined #yocto10:03
*** mcweigel <mcweigel!~b46258@gate-tx3.freescale.com> has joined #yocto10:03
*** AlexVaduva <AlexVaduva!c1ca1642@gateway/web/freenode/ip.193.202.22.66> has joined #yocto10:03
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has joined #yocto10:03
*** ddalex <ddalex!~ddalex@83.217.123.106> has joined #yocto10:03
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has joined #yocto10:03
*** seezer_ <seezer_!quassel@quassel/developer/seezer> has joined #yocto10:03
*** dl9pf_ <dl9pf_!~quassel@static.88-198-106-157.clients.your-server.de> has joined #yocto10:03
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-luzcwxeaobwduqxl> has joined #yocto10:03
*** Jay7 <Jay7!jay@176.15.149.182> has joined #yocto10:03
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has joined #yocto10:03
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has joined #yocto10:03
*** Noor <Noor!~quassel@110.93.212.98> has joined #yocto10:03
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto10:03
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has joined #yocto10:03
*** mckoan <mckoan!~marco@unaffiliated/mckoan> has joined #yocto10:03
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto10:03
*** lyang0 <lyang0!~lyang001@1.202.252.122> has joined #yocto10:03
*** behanw <behanw!~behanw@S0106dc9fdb80cffd.gv.shawcable.net> has joined #yocto10:03
*** reanguia1o <reanguia1o!~devnull@ricardoanguiano.com> has joined #yocto10:03
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has joined #yocto10:03
*** else58_1 <else58_1!~swarthou@gate-tx3.freescale.com> has joined #yocto10:03
*** kimrhh <kimrhh!~kimrhh@exherbo/developer/kimrhh> has joined #yocto10:03
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has joined #yocto10:03
*** lexano <lexano!~lexano@99.245.144.244> has joined #yocto10:03
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has joined #yocto10:03
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has joined #yocto10:03
*** volker- <volker-!~volker@unaffiliated/volker-> has joined #yocto10:03
*** FunkyPenguin <FunkyPenguin!~quassel@opensuse/member/FunkyPenguin> has joined #yocto10:03
*** Ricko__ <Ricko__!5a509091@gateway/web/freenode/ip.90.80.144.145> has joined #yocto10:03
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has joined #yocto10:03
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has joined #yocto10:03
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto10:03
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has joined #yocto10:03
*** ionte <ionte!~jonatan@85.224.69.51> has joined #yocto10:03
*** kevin_t <kevin_t!~Thunderbi@46.18.96.46> has joined #yocto10:03
*** erbo <erbo!~erbo@194-237-7-146.customer.telia.com> has joined #yocto10:03
*** proximus <proximus!~esamgab@lmcpra.ericsson.ca> has joined #yocto10:03
*** zibri <zibri!zibri@rfc1459.se> has joined #yocto10:03
*** freanux <freanux!~freanux@unaffiliated/freanux> has joined #yocto10:03
*** Saur <Saur!pkj@nat/axis/x-ujhanbfeksprklpj> has joined #yocto10:03
*** JaMa <JaMa!~martin@ip-89-176-104-3.net.upcbroadband.cz> has joined #yocto10:03
*** jmpdelos <jmpdelos!~polk@75-173-232-37.clsp.qwest.net> has joined #yocto10:03
*** Marex <Marex!~Marex@195.140.253.167> has joined #yocto10:03
*** khem <khem!~khem@c-98-207-177-218.hsd1.ca.comcast.net> has joined #yocto10:03
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has joined #yocto10:03
*** fabo <fabo!~fabo@linaro/fabo> has joined #yocto10:03
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has joined #yocto10:03
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has joined #yocto10:03
*** adelcast <adelcast!~adelcast@130.164.62.224> has joined #yocto10:03
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto10:03
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has joined #yocto10:03
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has joined #yocto10:03
*** ccube <ccube!ccube@nx.mindrunner.de> has joined #yocto10:03
*** akbennett <akbennett!akbennett@linaro/akbennett> has joined #yocto10:03
*** radhus <radhus!~radhus@evpsnl.radhuset.org> has joined #yocto10:03
*** Xz <Xz!kmsywula@nat/intel/x-pdfrlyzijsuvcnsy> has joined #yocto10:03
*** edsiper <edsiper!edsiper@monkeyhttpd.osuosl.org> has joined #yocto10:03
*** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has joined #yocto10:03
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has joined #yocto10:03
*** acidx <acidx!~leandro@hadron.lhc.net.br> has joined #yocto10:03
*** ripperD <ripperD!~dean@c-24-118-104-28.hsd1.mn.comcast.net> has joined #yocto10:03
*** bunk <bunk!~bunk@cs185055.pp.htv.fi> has joined #yocto10:03
*** EsbenAFK <EsbenAFK!~esben@hugin.dotsrc.org> has joined #yocto10:03
*** nslu2-log <nslu2-log!~nslu2-log@140.211.169.184> has joined #yocto10:03
*** th <th!~th@unaffiliated/th> has joined #yocto10:03
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has joined #yocto10:03
*** dca <dca!~dca@146.185.164.188> has joined #yocto10:03
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto10:03
*** [Sno] <[Sno]!~Sno]@pd956d8ef.dip0.t-ipconnect.de> has joined #yocto10:03
*** msm <msm!~msm@cpe-72-182-100-192.austin.res.rr.com> has joined #yocto10:03
*** akS_ <akS_!d44db44a@gateway/web/freenode/ip.212.77.180.74> has joined #yocto10:03
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has joined #yocto10:03
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has joined #yocto10:03
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto10:04
*** danielki <danielki!~danielki@188.111.54.34> has joined #yocto10:04
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto10:04
*** kroon <kroon!~kroon@89-253-118-72.customers.ownit.se> has joined #yocto10:04
*** sameo <sameo!samuel@nat/intel/x-vyqitcjubalfurti> has joined #yocto10:04
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has joined #yocto10:04
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto10:04
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has joined #yocto10:04
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has joined #yocto10:04
*** tomz <tomz!tomz@nat/intel/x-upwqmxdfuvmqxfwu> has joined #yocto10:04
*** Crofton|work <Crofton|work!~balister@pool-71-171-48-208.ronkva.east.verizon.net> has joined #yocto10:04
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto10:04
*** vmeson <vmeson!~quassel@128.224.252.2> has joined #yocto10:04
*** Letothe2nd <Letothe2nd!~jd@unaffiliated/letothe2nd> has joined #yocto10:04
*** ccaione <ccaione!~ccaione@unaffiliated/ccaione> has joined #yocto10:04
*** abelloni <abelloni!~abelloni@128-79-216-6.hfc.dyn.abo.bbox.fr> has joined #yocto10:04
*** kscherer_ <kscherer_!~kscherer@128.224.252.2> has joined #yocto10:04
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has joined #yocto10:04
*** warthog9 <warthog9!~warthog9@149.20.54.19> has joined #yocto10:04
*** Crofton <Crofton!~balister@pool-71-171-48-208.ronkva.east.verizon.net> has joined #yocto10:04
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto10:04
*** rink_ <rink_!~rink@gloom.codethulu.net> has joined #yocto10:04
*** Sput <Sput!~sputnick@quassel/developer/sput> has joined #yocto10:04
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto10:04
*** rperier <rperier!~quassel@ubuntu/member/rperier> has joined #yocto10:04
*** dzoe <dzoe!joe@pdpc/supporter/active/dzoe> has joined #yocto10:04
*** eliza411 <eliza411!~eliza411@crown.incitedev.com> has joined #yocto10:04
*** gagi_ <gagi_!~quassel@vpn.pelagicore.de> has joined #yocto10:04
*** halstead <halstead!~halstead@drupal.org/user/301087/view> has joined #yocto10:04
*** captainigloo <captainigloo!~captainig@2001:41d0:8:114b::1> has joined #yocto10:04
*** ajtag <ajtag!~ajtag@cpc10-lee211-2-0-cust124.7-1.cable.virginm.net> has joined #yocto10:04
*** otavio <otavio!~otavio@debian/developer/otavio> has joined #yocto10:04
*** awafaa <awafaa!sid716@gateway/web/irccloud.com/x-vnsranvsgzkgffye> has joined #yocto10:04
*** DarkKnight_ <DarkKnight_!~quassel@HSI-KBW-095-208-008-143.hsi5.kabel-badenwuerttemberg.de> has joined #yocto10:04
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto10:04
*** SorenHolm <SorenHolm!~quassel@5634f347.rev.stofanet.dk> has joined #yocto10:04
*** maxin <maxin!~majo@sestofw01.enea.se> has joined #yocto10:04
*** wgao <wgao!~wgao@1.202.252.122> has joined #yocto10:04
*** rtollert_ <rtollert_!~rtollert@130.164.62.31> has joined #yocto10:04
*** mankku <mankku!~mankku@projects.sse.fi> has joined #yocto10:04
*** rodgort <rodgort!~rodgort@192.241.198.49> has joined #yocto10:04
*** iggy <iggy!~iggy@theiggy.com> has joined #yocto10:04
*** jero- <jero-!~boo@2001:41d0:52:100::3b1> has joined #yocto10:04
*** rakuco <rakuco!rakuco@kde/developer/rkcosta> has joined #yocto10:04
*** zenlinux <zenlinux!zenlinux@2600:3c00::f03c:91ff:fedb:c91> has joined #yocto10:04
*** phantom <phantom!destroy@a89-154-119-158.cpe.netcabo.pt> has joined #yocto10:04
*** phantom is now known as 6A4AAENQF10:07
*** belen <belen!~Adium@192.198.151.44> has joined #yocto10:08
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has joined #yocto10:08
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has joined #yocto10:08
*** joeythesaint <joeythesaint!~joe@209.141.56.162> has joined #yocto10:08
*** fusman <fusman!~fahad@110.93.212.98> has joined #yocto10:08
*** mago_ <mago_!~mago@c193-14-123-186.cust.tele2.se> has joined #yocto10:08
*** zarul <zarul!~zarul@ubuntu/member/zarul> has joined #yocto10:08
*** melonipoika <melonipoika!~quassel@91-158-65-146.elisa-laajakaista.fi> has joined #yocto10:18
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC10:42
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto10:45
*** pev <pev!~pev@2.31.101.16> has joined #yocto11:22
danielkimckoan: ok, we tried this too, but apparently the included makespecs are not rewritten at install time. I'm trying to recreate this build right now to give you more details, but I'm having problems due to failing qtwayland build... can I exclude this from the sdk somehow?11:32
TuTizzIf I want to compress my kernel with lzo, should I do it manualy or is there a way to do that with yocto?12:05
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has joined #yocto12:21
*** reallife <reallife!~reallife@ool-4b7ff55a.static.optonline.net> has joined #yocto12:31
*** belen1 <belen1!Adium@nat/intel/x-wpwigplceybuoveg> has joined #yocto12:55
*** belen <belen!~Adium@192.198.151.44> has quit IRC12:57
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has quit IRC12:58
mckoandanielki: DISTRO_FEATURES_remove = "x11 wayland"13:17
danielkimckoan: thanks -- weird though that the image build worked13:17
*** sjolley <sjolley!~sjolley@134.134.139.72> has quit IRC13:23
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC13:24
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto13:26
*** paulg <paulg!~paulg@128.224.252.2> has joined #yocto13:27
*** belen <belen!Adium@nat/intel/x-rnyvgfanojnszcng> has joined #yocto13:30
*** belen1 <belen1!Adium@nat/intel/x-wpwigplceybuoveg> has quit IRC13:31
*** sjolley <sjolley!~sjolley@134.134.139.70> has joined #yocto13:47
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has quit IRC13:55
*** [Sno] <[Sno]!~Sno]@pd956d8ef.dip0.t-ipconnect.de> has quit IRC13:57
*** belen <belen!Adium@nat/intel/x-rnyvgfanojnszcng> has quit IRC14:02
*** belen <belen!~Adium@192.198.151.43> has joined #yocto14:03
*** DougB <DougB!c0373628@gateway/web/freenode/ip.192.55.54.40> has joined #yocto14:04
*** munch <munch!~mark@c-67-184-166-69.hsd1.il.comcast.net> has joined #yocto14:17
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has quit IRC14:18
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has quit IRC14:22
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has quit IRC14:22
*** nitink <nitink!nitink@nat/intel/x-zrwytayuzgquwuoj> has joined #yocto14:22
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has joined #yocto14:23
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has joined #yocto14:26
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has quit IRC14:27
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has joined #yocto14:32
*** akS_ <akS_!d44db44a@gateway/web/freenode/ip.212.77.180.74> has quit IRC14:34
*** alimon <alimon!~alimon@189-212-76-162.static.axtel.net> has joined #yocto14:42
*** mckoan is now known as mckoan|away14:44
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto14:48
*** armpit <armpit!~akuster@c-98-239-95-55.hsd1.ca.comcast.net> has joined #yocto14:51
AlexVaduvaYPTM: Alexandru Vaduva, would today be the technical meeting?14:56
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has quit IRC14:57
rburtonAlexVaduva: next week, iirc14:57
*** mranostay <mranostay!~mranostay@c-50-186-57-56.hsd1.or.comcast.net> has joined #yocto14:57
AlexVaduvaok14:57
*** mranostay <mranostay!~mranostay@c-50-186-57-56.hsd1.or.comcast.net> has quit IRC14:57
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has joined #yocto14:57
AlexVaduvabecaus a mail with the technical meeting was sent today14:58
rburtonhang around for another five minutes just in case I'm wrong ;)14:58
AlexVaduvaand it was kind of confussing14:58
AlexVaduvaalso14:58
AlexVaduvawhen will the change took place14:58
mcweigelI thought there would be a meeting today, and this would be the new schedule14:58
AlexVaduvabecause in the last meeting the schedule changed14:59
AlexVaduva:D14:59
mcweigelStephen's emailed agenda also said July 15, which I'm pretty sure is today.14:59
*** zhenhua <zhenhua!7b97c301@gateway/web/freenode/ip.123.151.195.1> has joined #yocto14:59
sjolleyYPTM:   Ready-Access Number: 8007302996/9139049836  Access Code:     270575114:59
*** belen <belen!~Adium@192.198.151.43> has quit IRC14:59
AlexVaduvaIt is today14:59
armpitYPTM: armin is on14:59
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has quit IRC15:00
zeddiiYPTM: Bruce is on the call.15:00
* Jefro is on YPTM15:00
* armpit is easily confused at my age so waits15:00
*** denix <denix!~denix@pool-71-191-205-189.washdc.fios.verizon.net> has joined #yocto15:00
sjolleyYPTM: Stephen Joined15:00
rburtonhm ok.  my calendar is lying.15:00
AlexVaduvaYPTM: Alexandru Vaduva is on15:00
*** belen <belen!Adium@nat/intel/x-ylqwxaqmcebpdvnz> has joined #yocto15:00
Jefrodiggin the hold music15:00
mcweigelYPTM: Matthew is on the call15:00
halsteadYPTM: Michael on.15:00
tomzYPTM: Tom Z on the call15:00
denixYPTM: Denys is here15:00
zhenhuaZhenhua is on the call15:00
mcweigelrburton: yes I did get calendar removal emails, so it isn't on my calendar any more15:01
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has quit IRC15:01
belenYPTM: Belen is on the call15:01
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has joined #yocto15:01
*** mebrown <mebrown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has joined #yocto15:01
RPYPTM: Richard is present15:01
sgw_YPTM: Saul is on15:01
*** mebrown <mebrown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has quit IRC15:01
michael_e_brown_YPTM: hi all15:02
rburtonYPTM: ross on15:02
RPsjolley: meta-cgl15:03
Jefrometa-cgl is carrier grade linux15:03
*** ddalex_ <ddalex_!~androirc@83.217.123.106> has joined #yocto15:03
ddalex_alex d here15:03
mcweigelsjolley: new invites for the meeting?15:04
* nitink is on the YPTM call15:04
mcweigelYPTM: yes please15:08
mcweigelI got the meeting update, followed by a cancellation.15:08
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has joined #yocto15:09
*** staylor <staylor!~staylor@mail.au-zone.com> has joined #yocto15:10
*** t0vig <t0vig!081c964f@gateway/web/freenode/ip.8.28.150.79> has joined #yocto15:10
otaviodanielki: I use it with some customers15:14
halsteadhttps://www.yoctoproject.org/downloads15:15
RPhalstead: The work you and Melissa have done on that is much appreciated, a vast improvement15:15
AlexVaduvahalstead: thanks15:16
halsteadhttps://wiki.yoctoproject.org/charts/perf_milestone/performance_test.html15:16
halsteadThank you for your help RP.15:16
*** rreynolds <rreynolds!6b070daa@gateway/web/freenode/ip.107.7.13.170> has joined #yocto15:18
AlexVaduvahalstead: the performance tests are aplicable only from inside toaster or it can be done for other things to15:18
sjolleyYPTM is done!15:19
*** t0vig <t0vig!081c964f@gateway/web/freenode/ip.8.28.150.79> has left #yocto15:19
*** ddalex_ <ddalex_!~androirc@83.217.123.106> has quit IRC15:19
*** belen1 <belen1!~Adium@192.198.151.43> has joined #yocto15:21
*** belen <belen!Adium@nat/intel/x-ylqwxaqmcebpdvnz> has quit IRC15:21
*** zhenhua <zhenhua!7b97c301@gateway/web/freenode/ip.123.151.195.1> has quit IRC15:22
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has quit IRC15:22
*** reallife <reallife!~reallife@ool-4b7ff55a.static.optonline.net> has quit IRC15:24
*** reallife <reallife!~reallife@ool-4b7ff55a.static.optonline.net> has joined #yocto15:25
*** kroon <kroon!~kroon@89-253-118-72.customers.ownit.se> has quit IRC15:25
*** mankku <mankku!~mankku@projects.sse.fi> has quit IRC15:31
danielkiotavio: hm ok. is it correct that populate_sdk is not expected to work?15:32
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has quit IRC15:35
sgw_armpit: Hi There15:39
*** reallife <reallife!~reallife@ool-4b7ff55a.static.optonline.net> has quit IRC15:40
*** mago_ <mago_!~mago@c193-14-123-186.cust.tele2.se> has quit IRC15:46
alimonsgw_: hi15:49
armpitsgw_: hello15:51
sgw_armpit: sorry for the churn on your patches!  I will try to get an answer on the nettle issue, I might need to consult a higher power15:52
sgw_alimon: Hi there15:53
*** danielki <danielki!~danielki@188.111.54.34> has quit IRC15:54
armpitsgw_: no worries. I want to make sure its done correctly15:54
*** hyei_ <hyei_!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has joined #yocto16:00
*** belen <belen!~Adium@192.198.151.43> has joined #yocto16:01
*** belen1 <belen1!~Adium@192.198.151.43> has quit IRC16:02
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has quit IRC16:03
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC16:21
*** yzhao2 <yzhao2!~yzhao2@128.224.252.2> has quit IRC16:23
*** kscherer_ <kscherer_!~kscherer@128.224.252.2> has quit IRC16:23
*** mago_ <mago_!~mago@c193-14-123-186.cust.tele2.se> has joined #yocto16:23
*** vmeson <vmeson!~quassel@128.224.252.2> has quit IRC16:24
*** paulg <paulg!~paulg@128.224.252.2> has quit IRC16:24
*** danielki <danielki!~danielki@p5DDC0CD4.dip0.t-ipconnect.de> has joined #yocto16:26
*** maxtothemax <maxtothemax!~maxtothem@134.134.137.71> has joined #yocto16:38
*** LCyrin <LCyrin!~LCyrin@2607:fb90:409:4347:fe92:b509:564d:d625> has joined #yocto16:45
*** belen1 <belen1!~Adium@192.198.151.43> has joined #yocto17:03
*** maxtothemax <maxtothemax!~maxtothem@134.134.137.71> has quit IRC17:03
*** belen <belen!~Adium@192.198.151.43> has quit IRC17:04
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC17:04
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto17:05
*** danielki <danielki!~danielki@p5DDC0CD4.dip0.t-ipconnect.de> has quit IRC17:11
*** sameo <sameo!samuel@nat/intel/x-vyqitcjubalfurti> has quit IRC17:14
*** hyei_ <hyei_!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has quit IRC17:19
*** maxtothemax <maxtothemax!~maxtothem@134.134.139.70> has joined #yocto17:20
*** pidge <pidge!~pidge@134.134.139.70> has joined #yocto17:21
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has joined #yocto17:21
*** nitink <nitink!nitink@nat/intel/x-zrwytayuzgquwuoj> has quit IRC17:24
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC17:32
*** danielki <danielki!~danielki@188-192-101-69-dynip.superkabel.de> has joined #yocto17:36
*** belen1 <belen1!~Adium@192.198.151.43> has quit IRC17:41
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has quit IRC17:43
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has quit IRC17:44
*** nitink <nitink!nitink@nat/intel/x-ppzthrsovfxwegvs> has joined #yocto17:52
*** demonimin <demonimin!~demonimin@pro75-5-88-162-203-35.fbx.proxad.net> has joined #yocto17:53
*** demonimin <demonimin!~demonimin@unaffiliated/demonimin> has joined #yocto17:53
-YoctoAutoBuilder- build #163 of nightly-qa-logrotate is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-logrotate/builds/16318:11
*** DougB <DougB!c0373628@gateway/web/freenode/ip.192.55.54.40> has quit IRC18:16
seebsOkay, this may be a silly question, but...18:20
*** dmoseley <dmoseley!~dmoseley@107.14.223.240> has joined #yocto18:20
seebsIn casual testing, it appears that if I have both overrides and appends for a variable, the override applies first, and the append applies second.18:20
seebsIs that actually specified and/or reliable?18:20
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has quit IRC18:34
*** _dv_ <_dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto18:38
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC18:39
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC18:43
seebs... So it turns out that OVERRIDES_append does not do what you might hope it does, because overrides are processed before appends.18:44
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto18:54
*** dmoseley <dmoseley!~dmoseley@107.14.223.240> has quit IRC19:09
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC19:09
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto19:10
*** yzhao2 <yzhao2!~yzhao2@128.224.252.2> has joined #yocto19:10
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC19:10
*** ant_home <ant_home!~andrea@host8-88-dynamic.45-79-r.retail.telecomitalia.it> has joined #yocto19:12
*** paulg <paulg!~paulg@128.224.252.2> has joined #yocto19:14
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto19:14
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto19:15
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC19:19
*** bluelightning <bluelightning!~paul@2001:8b0:258:7d7a:5e51:4fff:febb:401d> has joined #yocto19:23
*** bluelightning <bluelightning!~paul@2001:8b0:258:7d7a:5e51:4fff:febb:401d> has quit IRC19:23
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto19:23
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has quit IRC19:32
*** zecke <zecke!~ich@91-64-81-99-dynip.superkabel.de> has joined #yocto19:33
*** yzhao2 <yzhao2!~yzhao2@128.224.252.2> has quit IRC19:34
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC19:35
*** paulg <paulg!~paulg@128.224.252.2> has quit IRC19:35
*** paulg <paulg!~paulg@128.224.252.2> has joined #yocto19:39
*** yzhao2 <yzhao2!~yzhao2@128.224.252.2> has joined #yocto19:42
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto19:47
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has joined #yocto19:55
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto19:56
*** nitink1 <nitink1!~nitink@134.134.137.73> has joined #yocto19:59
*** kscherer <kscherer!~kscherer@128.224.252.2> has joined #yocto19:59
*** zecke <zecke!~ich@91-64-81-99-dynip.superkabel.de> has quit IRC20:02
*** nitink <nitink!nitink@nat/intel/x-ppzthrsovfxwegvs> has quit IRC20:02
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC20:05
*** rreynolds <rreynolds!6b070daa@gateway/web/freenode/ip.107.7.13.170> has quit IRC20:05
*** msm` <msm`!~msm@cpe-72-182-100-192.austin.res.rr.com> has joined #yocto20:10
*** msm <msm!~msm@cpe-72-182-100-192.austin.res.rr.com> has quit IRC20:12
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto20:30
*** nitink <nitink!nitink@nat/intel/x-dyfmobzuydloroiw> has joined #yocto20:32
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto20:36
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has joined #yocto20:39
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has joined #yocto20:39
*** sjolley <sjolley!~sjolley@134.134.139.70> has quit IRC20:39
*** sjolley <sjolley!sjolley@nat/intel/x-ctcwiymisntdctet> has joined #yocto20:40
*** kroon <kroon!~kroon@m176-70-245-121.cust.tele2.se> has joined #yocto20:40
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC20:40
*** munch <munch!~mark@c-67-184-166-69.hsd1.il.comcast.net> has quit IRC20:45
*** kroon <kroon!~kroon@m176-70-245-121.cust.tele2.se> has quit IRC20:47
*** reanguia1o is now known as reanguiano20:48
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC20:57
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto21:02
*** d_s_e <d_s_e!~d.s.e@ppp-93-104-103-135.dynamic.mnet-online.de> has joined #yocto21:06
*** ccube <ccube!ccube@nx.mindrunner.de> has quit IRC21:07
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has quit IRC21:07
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has quit IRC21:07
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC21:07
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto21:07
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has joined #yocto21:07
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has joined #yocto21:07
*** ccube <ccube!ccube@nx.mindrunner.de> has joined #yocto21:07
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC21:13
*** lt <lt!ae2d78d1@gateway/web/freenode/ip.174.45.120.209> has joined #yocto21:18
*** lt is now known as Guest7638721:19
*** nitink2 <nitink2!nitin@nat/intel/x-jbiavpqenjmljblx> has joined #yocto21:21
-YoctoAutoBuilder- build #170 of nightly-non-gpl3 is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-non-gpl3/builds/17021:26
*** nitink2 <nitink2!nitin@nat/intel/x-jbiavpqenjmljblx> has left #yocto21:27
*** Guest76387 <Guest76387!ae2d78d1@gateway/web/freenode/ip.174.45.120.209> has quit IRC21:30
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has quit IRC21:32
khemseebs you want something like VAR_append_<override>21:34
*** nitink <nitink!nitink@nat/intel/x-dyfmobzuydloroiw> has quit IRC21:34
*** nitink2 <nitink2!~nitin@134.134.137.71> has joined #yocto21:34
*** nitink <nitink!~nitink@134.134.139.72> has joined #yocto21:35
*** nitink <nitink!~nitink@134.134.139.72> has quit IRC21:37
*** nitink <nitink!nitink@nat/intel/x-mtijcusiuzkpanxv> has joined #yocto21:37
*** nitink <nitink!nitink@nat/intel/x-mtijcusiuzkpanxv> has quit IRC21:41
*** 6A4AAENQF is now known as phantoxeD21:44
*** nitink1 <nitink1!~nitink@134.134.137.73> has quit IRC21:45
*** cneth <cneth!c6170549@gateway/web/freenode/ip.198.23.5.73> has joined #yocto21:50
-YoctoAutoBuilder- build #173 of nightly-intel-gpl is complete: Failure [failed BuildImages BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-intel-gpl/builds/17321:52
-YoctoAutoBuilder- build #165 of nightly-fsl-arm is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm/builds/16521:53
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC21:54
-YoctoAutoBuilder- build #163 of poky-tiny is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/poky-tiny/builds/16321:55
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto21:56
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has quit IRC21:56
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC22:01
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC22:01
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto22:01
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto22:01
*** [Sno] <[Sno]!~Sno]@p578b540c.dip0.t-ipconnect.de> has joined #yocto22:10
*** cpparker <cpparker!808a4b73@gateway/web/freenode/ip.128.138.75.115> has joined #yocto22:16
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has quit IRC22:27
*** pidge <pidge!~pidge@134.134.139.70> has quit IRC22:27
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has joined #yocto22:28
*** cpparker <cpparker!808a4b73@gateway/web/freenode/ip.128.138.75.115> has quit IRC22:33
*** cneth <cneth!c6170549@gateway/web/freenode/ip.198.23.5.73> has quit IRC22:57
*** kroon <kroon!~kroon@m176-70-245-121.cust.tele2.se> has joined #yocto22:57
*** sameo <sameo!~samuel@192.55.55.39> has joined #yocto22:59
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has quit IRC23:08
*** alimon <alimon!~alimon@189-212-76-162.static.axtel.net> has quit IRC23:11
seebsWell, VAR_append_<override> does indeed appear to work, I just wasn't sure whether the order was fully specified.23:19
seebsWhat I did discover is that I can't make OVERRIDE_append = ":foo" work. And I'm pretty sure it just can't in the current setup.23:19
seebsEr, OVERRIDES_append.23:20
kergothyeah, not too surprising. to support it, we'd have to like recursively process overrides/appends until there aren't any changes occurring anymore, or something :)23:24
* kergoth shrugs23:24
ant_homewell, I better go to sleep..23:32
ant_homesigh.. I fill /dev/null ...23:32
ant_homewtf?23:32
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC23:32
ant_homeroot@c7x0:/mnt/.psplash# time cp rootfs.squashfs /dev/null23:33
ant_homecp: write error: No space left on device23:33
ant_homeroot@c7x0:/mnt/.psplash# ls -al /dev/null23:33
ant_home-rw-r--r--    1 root     root             0 Jul 15 23:14 /dev/null23:33
*** maxtothemax <maxtothemax!~maxtothem@134.134.139.70> has quit IRC23:33
ant_homeeven recreating it won't help23:33
ant_homebecomes a normal file...23:34
ant_home-rw-r--r--    1 root     root      29507584 Jul 15 22:58 /dev/zero23:35
ant_homesame...23:35
ant_homebusybox?23:35
*** ant_home <ant_home!~andrea@host8-88-dynamic.45-79-r.retail.telecomitalia.it> has quit IRC23:37
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC23:38
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto23:40
*** sjolley <sjolley!sjolley@nat/intel/x-ctcwiymisntdctet> has quit IRC23:47
*** alimon <alimon!~alimon@189.154.13.41> has joined #yocto23:49
*** nitink2 <nitink2!~nitin@134.134.137.71> has quit IRC23:53
-YoctoAutoBuilder- build #164 of nightly-qa-pam is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-pam/builds/16423:56

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