maxtothemax | so ${sysconfdir} is usually just /etc, and you prepend ${D} to get the proper path in your recipes | 00:02 |
---|---|---|
maxtothemax | but with -native recipes, ${sysconfdir} is actually a complete path, and ${D}${sysconfdir} is invalid | 00:02 |
maxtothemax | what's up with that? | 00:02 |
maxtothemax | frankly, it doesn't matter, because the files in /etc/ will be ignored in the -native version, I can just suppress them from being installed | 00:04 |
maxtothemax | but I don't want to add extra code for it to my recipe if I don't have to | 00:04 |
kergoth | it's not invalid | 00:05 |
kergoth | it'll be a crazy deep path, but it doesn't matter, the code which installs it into the sysroot should be compensating | 00:05 |
kergoth | (and does) | 00:05 |
maxtothemax | I'm getting sysconfdir = "/home/maxtothemax/poky-bootchart2/build/tmp/sysroots/x86_64-linux/etc" for -native | 00:06 |
maxtothemax | instead of just /etc | 00:06 |
maxtothemax | so ${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/etc | 00:07 |
maxtothemax | seems a little odd to me? | 00:07 |
kergoth | that's fine, and expected | 00:10 |
kergoth | prefix is set to the sysroot for native recipes to avoid issues with relocation | 00:10 |
maxtothemax | I figured out the problem | 00:10 |
maxtothemax | I was calling update-rc.d ${D} | 00:10 |
*** mkeeter <mkeeter!~mkeeter@2601:6:b80:5a:90b0:1fb6:4761:90f4> has quit IRC | 00:11 | |
*** mkeeter <mkeeter!~mkeeter@2601:6:b80:5a:90b0:1fb6:4761:90f4> has joined #yocto | 00:11 | |
maxtothemax | which I don't need to do anyway for -native | 00:11 |
kergoth | you should be inheriting the bbclass, not calling it directly, which will work fine for native or non-native | 00:11 |
kergoth | as its called in the postinst, which isn't run for native | 00:12 |
maxtothemax | will look into that thanks | 00:12 |
*** kroon <kroon!~kroon@89-253-118-72.customers.ownit.se> has quit IRC | 00:13 | |
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC | 00:21 | |
Marex | uh meh, Yocto 1.6.1 meta-toolchain-qte is somewhat strange | 00:22 |
Marex | I 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 CFLAGS | 00:23 |
Marex | and also, during 'release' build, the result is still containing debugging symbols | 00:24 |
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto | 00:24 | |
Marex | ah ... 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 project | 00:26 |
Marex | but 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 binary | 00:26 |
Marex | urmmmmm | 00:27 |
Marex | aha ... 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 those | 00:30 |
Marex | is that right ? | 00:39 |
Marex | https://lists.yoctoproject.org/pipermail/yocto/2013-June/014502.html someone actually complained about this before, hm | 00:44 |
*** mkeeter <mkeeter!~mkeeter@2601:6:b80:5a:90b0:1fb6:4761:90f4> has quit IRC | 00:54 | |
*** Squix <Squix!~Squix__@p231.net112139207.tokai.or.jp> has joined #yocto | 01:06 | |
khem | Marex: from OEs POV its ok since debug info will be stripped out into packages of its own | 01:10 |
khem | it doesnt rely on components ( qt here ) buildsystem to do that | 01:11 |
khem | darknighte: you got through the problem or still muddling ? | 01:11 |
Marex | khem: I am just looking into it | 01:15 |
Marex | khem: the problem is noticable when you build the SDK (the meta-toolchain-qte) and use it outside of yocto | 01:15 |
Marex | khem: even in debug build, the -O2 optimization is enabled , which probably is not something you want in a debug build | 01:16 |
Marex | khem: 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 troublesome | 01:16 |
Marex | still ... it's not like I am confident in what I am talking about , sorry | 01:17 |
Marex | btw 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 flags | 01:20 |
khem | one should debug the final code | 01:22 |
khem | using different O level | 01:22 |
khem | is a wrong preset | 01:22 |
khem | you test and debug the code that you wont ship | 01:23 |
Marex | khem: during debug, I don't want my code to be optimized so I can inspect it proper | 01:24 |
Marex | khem: during release, I want for the code to be optimized | 01:24 |
Marex | khem: btw. that's how it worked in 7.0 , in 8.0 the behavior changed so the flags are now leaking into both builds | 01:24 |
khem | believe me you dont want that | 01:25 |
khem | besides that | 01:25 |
Marex | ok, so I do want to debug code which is optimized ... where symbols are "(optimized out)", so it's impossible to tell etc. | 01:25 |
khem | usually -g -O2 | 01:25 |
khem | is most common development option | 01:26 |
Marex | ok, so when I do "qmake CONFIG += release ", I should expect the resulting build to contain debugging symbols ? | 01:27 |
khem | it should not | 01:28 |
Marex | it does | 01:28 |
Marex | because 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 project | 01:28 |
khem | it could but image will not | 01:29 |
Marex | I am talking about using the SDK, outside of the yocto | 01:29 |
khem | unless you include debug packages | 01:29 |
Marex | khem: I do ". /opt/poky.../environment-setup...." , then qmake CONFIG+=release , then "make" | 01:30 |
khem | generally SDKs are used for development and then you include your app in OE/yocto proper | 01:30 |
Marex | khem: is that the reason why the behavior changed between 7.0 and 8.0 then ? | 01:30 |
khem | are you planning to ship your app built outside yocto too ? | 01:31 |
Marex | khem: no, I'd like to understand why the behavior changed | 01:31 |
Marex | khem: I'd actually like to test both debug and release builds with the toolchain though | 01:31 |
khem | I dont think thats the reason it might be a indesired chnage | 01:31 |
Marex | khem: I think that's pretty much it, a sideeffect of some plumbing in bitbake.conf | 01:32 |
Marex | khem: 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 |
khem | its nice to have but I dont think its a must | 01:33 |
Marex | khem: my understanding is that this is exactly how it's supposed to work -- have debug symbols in the debug build only | 01:34 |
Marex | khem: esp. since the qmake adds those -g flags on it's own accord from those g++-unix.conf files | 01:34 |
*** Squix <Squix!~Squix__@p231.net112139207.tokai.or.jp> has quit IRC | 01:35 | |
khem | I would think for a QT developer's POV its fine to have I guess | 01:36 |
Marex | khem: I think I found the culprit for this | 01:38 |
Marex | khem: 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 changed | 01:39 |
Marex | khem: so even the toolchains' CFLAGS were different in 7.0 and 8.0 ... | 01:40 |
khem | sure it does change | 01:40 |
khem | but I would suggest you to see if daisy or master has same issue too | 01:41 |
Marex | khem: I see it in 1.6 still | 01:41 |
khem | ok | 01:41 |
*** maxtothemax <maxtothemax!maxtothema@nat/intel/x-vnpzvxcwnedcxobf> has quit IRC | 01:41 | |
khem | file a bug that way it doesnt get lost | 01:42 |
Marex | khem: I will experiment a little more so I understand what's wrong, then I will file a bug | 01:42 |
Marex | khem: I also have a patch for the Qt here so that the CFLAGS do not contain uselessly duplicated flags | 01: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 |
Marex | khem: is there anyone digging in the QtE I can poke here maybe ? | 01:44 |
khem | lot of folks do with QT5 | 01:44 |
khem | QT4 not so many | 01:44 |
Marex | I can imagine | 01:45 |
Marex | khem: thanks, I will file those two this week | 01:47 |
khem | np | 01:47 |
nerdboy | http://cacm.acm.org/ <= "killer" quake app | 01:58 |
Marex | khem: oh wait, but do I actually want the toolchain I generated to contain any predefined optimization flags in CFLAGS/CXXFLAGS/LDFLAGS ? | 02:02 |
Marex | khem: or do I want to control those myself ? | 02:02 |
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has quit IRC | 02:05 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC | 02:11 | |
khem | Marex: usually its best to use whatever yocto selects as defaults | 02:11 |
khem | for SDK | 02:11 |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto | 02:12 | |
Marex | khem: uh, so I should actually be OK with Yocto preconfiguring random optimization flags _for_ me ? | 02:19 |
Marex | that's a little strange, isn't it ? | 02:19 |
Marex | I'd expect for the projects I compile with the toolchain to configure their CFLAGS themselves instead | 02:20 |
Marex | https://lists.yoctoproject.org/pipermail/yocto/2013-January/011588.html ... and the best defaults Yocto actually selects for me do break build of various things | 02:22 |
Marex | (like U-Boot , kernel ... and this in turn makes the toolchain unusable for some usecases) | 02:23 |
Marex | the -Wl,-O1 in LDFLAGS will likely break anything which doesn't link using gcc , but with plain LD | 02:23 |
*** JDuke128 <JDuke128!~textual@178.233.48.89> has quit IRC | 02:37 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC | 02:42 | |
*** dvhart <dvhart!dvhart@nat/intel/x-iqogthppsgvonypf> has quit IRC | 02:42 | |
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has quit IRC | 02:42 | |
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC | 02:42 | |
*** warthog9 <warthog9!~warthog9@149.20.54.19> has quit IRC | 02:42 | |
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has quit IRC | 02:42 | |
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has quit IRC | 02:42 | |
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has quit IRC | 02:42 | |
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has quit IRC | 02:42 | |
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has quit IRC | 02:42 | |
*** Gintaro_ <Gintaro_!~gintaro@geertswei.nl> has quit IRC | 02:42 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 02:42 | |
*** dca <dca!~dca@146.185.164.188> has quit IRC | 02:42 | |
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has joined #yocto | 02:42 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto | 02:42 | |
*** dlan <dlan!~dennis@116.228.88.131> has joined #yocto | 02:42 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 02:42 | |
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has joined #yocto | 02:42 | |
*** warthog9 <warthog9!~warthog9@149.20.54.19> has joined #yocto | 02:42 | |
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has joined #yocto | 02:42 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto | 02:42 | |
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has joined #yocto | 02:42 | |
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has joined #yocto | 02:43 | |
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has joined #yocto | 02:43 | |
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto | 02:44 | |
*** dca <dca!~dca@146.185.164.188> has joined #yocto | 02:44 | |
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has joined #yocto | 02:45 | |
darknighte | khem: gotten farther. I needed to make sure that the qtbase-plugins package was installed to the rootfs. | 02:47 |
darknighte | khem: now I'm working to get the app to connect correctly to the x11 server | 02:48 |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 02:50 | |
*** dlan <dlan!~dennis@116.228.88.131> has joined #yocto | 02:52 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 02:52 | |
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto | 03:00 | |
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC | 03:03 | |
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has quit IRC | 03:12 | |
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC | 03:12 | |
*** dca <dca!~dca@146.185.164.188> has quit IRC | 03:12 | |
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC | 03:12 | |
*** dl9pf_ <dl9pf_!~quassel@static.88-198-106-157.clients.your-server.de> has quit IRC | 03:12 | |
*** Jay7 <Jay7!jay@176.15.149.182> has quit IRC | 03:12 | |
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has quit IRC | 03:12 | |
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has quit IRC | 03:12 | |
*** behanw <behanw!~behanw@S0106dc9fdb80cffd.gv.shawcable.net> has quit IRC | 03:12 | |
*** reanguia1o <reanguia1o!~devnull@ricardoanguiano.com> has quit IRC | 03:12 | |
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has quit IRC | 03:12 | |
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has quit IRC | 03:12 | |
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has quit IRC | 03:12 | |
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has quit IRC | 03:12 | |
*** acidx <acidx!~leandro@hadron.lhc.net.br> has quit IRC | 03:12 | |
*** mcweigel <mcweigel!~b46258@gate-tx3.freescale.com> has quit IRC | 03:12 | |
*** ripperD <ripperD!~dean@c-24-118-104-28.hsd1.mn.comcast.net> has quit IRC | 03:12 | |
*** bunk <bunk!~bunk@cs185055.pp.htv.fi> has quit IRC | 03:12 | |
*** EsbenAFK <EsbenAFK!~esben@hugin.dotsrc.org> has quit IRC | 03:12 | |
*** nslu2-log <nslu2-log!~nslu2-log@140.211.169.184> has quit IRC | 03:12 | |
*** th <th!~th@unaffiliated/th> has quit IRC | 03:12 | |
*** Noor <Noor!~quassel@110.93.212.98> has quit IRC | 03:12 | |
*** AlexVaduva <AlexVaduva!c1ca1642@gateway/web/freenode/ip.193.202.22.66> has quit IRC | 03:12 | |
*** Ricko__ <Ricko__!5a509091@gateway/web/freenode/ip.90.80.144.145> has quit IRC | 03:12 | |
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC | 03:12 | |
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has quit IRC | 03:12 | |
*** sjolley <sjolley!~sjolley@134.134.139.72> has quit IRC | 03:12 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 03:12 | |
*** msm` <msm`!~msm@cpe-72-182-100-192.austin.res.rr.com> has quit IRC | 03:12 | |
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has quit IRC | 03:12 | |
*** seezer_ <seezer_!quassel@quassel/developer/seezer> has quit IRC | 03:12 | |
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has quit IRC | 03:12 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC | 03:12 | |
*** lyang0 <lyang0!~lyang001@1.202.252.122> has quit IRC | 03:12 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 03:12 | |
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has quit IRC | 03:12 | |
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has quit IRC | 03:12 | |
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has quit IRC | 03:12 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC | 03:12 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC | 03:12 | |
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has quit IRC | 03:12 | |
*** sgw_ <sgw_!~sgw@c-50-186-0-160.hsd1.or.comcast.net> has quit IRC | 03:12 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has quit IRC | 03:12 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 03:12 | |
*** lexano <lexano!~lexano@99.245.144.244> has quit IRC | 03:12 | |
*** FunkyPenguin <FunkyPenguin!~quassel@opensuse/member/FunkyPenguin> has quit IRC | 03:12 | |
*** kevin_t <kevin_t!~Thunderbi@46.18.96.46> has quit IRC | 03:12 | |
*** ionte <ionte!~jonatan@85.224.69.51> has quit IRC | 03:12 | |
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has quit IRC | 03:12 | |
*** zibri <zibri!zibri@rfc1459.se> has quit IRC | 03:12 | |
*** proximus <proximus!~esamgab@lmcpra.ericsson.ca> has quit IRC | 03:12 | |
*** erbo <erbo!~erbo@194-237-7-146.customer.telia.com> has quit IRC | 03:12 | |
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has quit IRC | 03:12 | |
*** khem <khem!~khem@c-98-207-177-218.hsd1.ca.comcast.net> has quit IRC | 03:12 | |
*** Marex <Marex!~Marex@195.140.253.167> has quit IRC | 03:12 | |
*** jmpdelos <jmpdelos!~polk@75-173-232-37.clsp.qwest.net> has quit IRC | 03:12 | |
*** JaMa <JaMa!~martin@ip-89-176-104-3.net.upcbroadband.cz> has quit IRC | 03:12 | |
*** Saur <Saur!pkj@nat/axis/x-ujhanbfeksprklpj> has quit IRC | 03:12 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has quit IRC | 03:12 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 03:12 | |
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has quit IRC | 03:12 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC | 03:12 | |
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has quit IRC | 03:12 | |
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has quit IRC | 03:12 | |
*** ddalex <ddalex!~ddalex@83.217.123.106> has quit IRC | 03:12 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-luzcwxeaobwduqxl> has quit IRC | 03:12 | |
*** kimrhh <kimrhh!~kimrhh@exherbo/developer/kimrhh> has quit IRC | 03:12 | |
*** adelcast <adelcast!~adelcast@130.164.62.224> has quit IRC | 03:12 | |
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has quit IRC | 03:12 | |
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has quit IRC | 03:12 | |
*** fabo <fabo!~fabo@linaro/fabo> has quit IRC | 03:12 | |
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has quit IRC | 03:12 | |
*** ccube <ccube!ccube@nx.mindrunner.de> has quit IRC | 03:12 | |
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has quit IRC | 03:12 | |
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has quit IRC | 03:12 | |
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC | 03:12 | |
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has quit IRC | 03:12 | |
*** scot <scot!~scot@130.164.62.160> has quit IRC | 03:12 | |
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has quit IRC | 03:12 | |
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has quit IRC | 03:12 | |
*** else58_1 <else58_1!~swarthou@gate-tx3.freescale.com> has quit IRC | 03:12 | |
*** volker- <volker-!~volker@unaffiliated/volker-> has quit IRC | 03:12 | |
*** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has quit IRC | 03:12 | |
*** edsiper <edsiper!edsiper@monkeyhttpd.osuosl.org> has quit IRC | 03:12 | |
*** Xz <Xz!kmsywula@nat/intel/x-pdfrlyzijsuvcnsy> has quit IRC | 03:12 | |
*** radhus <radhus!~radhus@evpsnl.radhuset.org> has quit IRC | 03:12 | |
*** akbennett <akbennett!akbennett@linaro/akbennett> has quit IRC | 03:12 | |
*** kscherer_ <kscherer_!~kscherer@128.224.252.2> has joined #yocto | 03:16 | |
*** kscherer <kscherer!~kscherer@128.224.252.2> has quit IRC | 03:18 | |
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto | 03:20 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 03:20 | |
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has joined #yocto | 03:20 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto | 03:20 | |
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has joined #yocto | 03:20 | |
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has joined #yocto | 03:20 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto | 03:20 | |
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has joined #yocto | 03:20 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto | 03:20 | |
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto | 03:20 | |
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has joined #yocto | 03:20 | |
*** sjolley <sjolley!~sjolley@134.134.139.72> has joined #yocto | 03:20 | |
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has joined #yocto | 03:20 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 03:20 | |
*** scot <scot!~scot@130.164.62.160> has joined #yocto | 03:20 | |
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has joined #yocto | 03:20 | |
*** sgw_ <sgw_!~sgw@c-50-186-0-160.hsd1.or.comcast.net> has joined #yocto | 03:20 | |
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has joined #yocto | 03:20 | |
*** mcweigel <mcweigel!~b46258@gate-tx3.freescale.com> has joined #yocto | 03:20 | |
*** msm` <msm`!~msm@cpe-72-182-100-192.austin.res.rr.com> has joined #yocto | 03:20 | |
*** AlexVaduva <AlexVaduva!c1ca1642@gateway/web/freenode/ip.193.202.22.66> has joined #yocto | 03:20 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has joined #yocto | 03:20 | |
*** ddalex <ddalex!~ddalex@83.217.123.106> has joined #yocto | 03:20 | |
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has joined #yocto | 03:20 | |
*** seezer_ <seezer_!quassel@quassel/developer/seezer> has joined #yocto | 03:20 | |
*** dl9pf_ <dl9pf_!~quassel@static.88-198-106-157.clients.your-server.de> has joined #yocto | 03:20 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-luzcwxeaobwduqxl> has joined #yocto | 03:20 | |
*** Jay7 <Jay7!jay@176.15.149.182> has joined #yocto | 03:20 | |
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has joined #yocto | 03:20 | |
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has joined #yocto | 03:20 | |
*** Noor <Noor!~quassel@110.93.212.98> has joined #yocto | 03:20 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto | 03:20 | |
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has joined #yocto | 03:20 | |
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has joined #yocto | 03:20 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 03:20 | |
*** lyang0 <lyang0!~lyang001@1.202.252.122> has joined #yocto | 03:20 | |
*** behanw <behanw!~behanw@S0106dc9fdb80cffd.gv.shawcable.net> has joined #yocto | 03:20 | |
*** reanguia1o <reanguia1o!~devnull@ricardoanguiano.com> has joined #yocto | 03:20 | |
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has joined #yocto | 03:20 | |
*** else58_1 <else58_1!~swarthou@gate-tx3.freescale.com> has joined #yocto | 03:20 | |
*** kimrhh <kimrhh!~kimrhh@exherbo/developer/kimrhh> has joined #yocto | 03:20 | |
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has joined #yocto | 03:20 | |
*** lexano <lexano!~lexano@99.245.144.244> has joined #yocto | 03:20 | |
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has joined #yocto | 03:20 | |
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has joined #yocto | 03:20 | |
*** volker- <volker-!~volker@unaffiliated/volker-> has joined #yocto | 03:20 | |
*** FunkyPenguin <FunkyPenguin!~quassel@opensuse/member/FunkyPenguin> has joined #yocto | 03:20 | |
*** Ricko__ <Ricko__!5a509091@gateway/web/freenode/ip.90.80.144.145> has joined #yocto | 03:20 | |
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has joined #yocto | 03:20 | |
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has joined #yocto | 03:20 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto | 03:20 | |
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has joined #yocto | 03:20 | |
*** ionte <ionte!~jonatan@85.224.69.51> has joined #yocto | 03:20 | |
*** kevin_t <kevin_t!~Thunderbi@46.18.96.46> has joined #yocto | 03:20 | |
*** erbo <erbo!~erbo@194-237-7-146.customer.telia.com> has joined #yocto | 03:20 | |
*** proximus <proximus!~esamgab@lmcpra.ericsson.ca> has joined #yocto | 03:20 | |
*** zibri <zibri!zibri@rfc1459.se> has joined #yocto | 03:20 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has joined #yocto | 03:20 | |
*** Saur <Saur!pkj@nat/axis/x-ujhanbfeksprklpj> has joined #yocto | 03:20 | |
*** JaMa <JaMa!~martin@ip-89-176-104-3.net.upcbroadband.cz> has joined #yocto | 03:20 | |
*** jmpdelos <jmpdelos!~polk@75-173-232-37.clsp.qwest.net> has joined #yocto | 03:20 | |
*** Marex <Marex!~Marex@195.140.253.167> has joined #yocto | 03:20 | |
*** khem <khem!~khem@c-98-207-177-218.hsd1.ca.comcast.net> has joined #yocto | 03:20 | |
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has joined #yocto | 03:20 | |
*** fabo <fabo!~fabo@linaro/fabo> has joined #yocto | 03:20 | |
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has joined #yocto | 03:20 | |
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has joined #yocto | 03:20 | |
*** adelcast <adelcast!~adelcast@130.164.62.224> has joined #yocto | 03:20 | |
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto | 03:20 | |
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has joined #yocto | 03:20 | |
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has joined #yocto | 03:20 | |
*** ccube <ccube!ccube@nx.mindrunner.de> has joined #yocto | 03:20 | |
*** akbennett <akbennett!akbennett@linaro/akbennett> has joined #yocto | 03:20 | |
*** radhus <radhus!~radhus@evpsnl.radhuset.org> has joined #yocto | 03:20 | |
*** Xz <Xz!kmsywula@nat/intel/x-pdfrlyzijsuvcnsy> has joined #yocto | 03:20 | |
*** edsiper <edsiper!edsiper@monkeyhttpd.osuosl.org> has joined #yocto | 03:20 | |
*** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has joined #yocto | 03:20 | |
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has joined #yocto | 03:20 | |
*** acidx <acidx!~leandro@hadron.lhc.net.br> has joined #yocto | 03:20 | |
*** ripperD <ripperD!~dean@c-24-118-104-28.hsd1.mn.comcast.net> has joined #yocto | 03:20 | |
*** bunk <bunk!~bunk@cs185055.pp.htv.fi> has joined #yocto | 03:20 | |
*** EsbenAFK <EsbenAFK!~esben@hugin.dotsrc.org> has joined #yocto | 03:20 | |
*** nslu2-log <nslu2-log!~nslu2-log@140.211.169.184> has joined #yocto | 03:20 | |
*** th <th!~th@unaffiliated/th> has joined #yocto | 03:20 | |
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has joined #yocto | 03:22 | |
*** dca <dca!~dca@146.185.164.188> has joined #yocto | 03:22 | |
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto | 03:22 | |
* nerdboy thinks darknighte left the door open | 03:36 | |
Marex | ... and everyone was sucked into the vast darkness of space ? | 03:41 |
Marex | khem: it's 5ed19a40f407efa1e6a2043bd8e36d729968c446 in yocto which introduced the different behavior | 03:50 |
*** [Sno] <[Sno]!~Sno]@p578b540c.dip0.t-ipconnect.de> has quit IRC | 04:21 | |
*** JDuke128 <JDuke128!~textual@178.233.48.89> has joined #yocto | 04:33 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto | 04:38 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC | 04:39 | |
*** melonipoika <melonipoika!~melonipoi@91-158-65-146.elisa-laajakaista.fi> has joined #yocto | 04:47 | |
*** zecke <zecke!~ich@91-64-81-99-dynip.superkabel.de> has joined #yocto | 05:21 | |
*** zecke <zecke!~ich@91-64-81-99-dynip.superkabel.de> has quit IRC | 05:37 | |
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has joined #yocto | 05:43 | |
*** JDuke128 <JDuke128!~textual@178.233.48.89> has quit IRC | 05:43 | |
*** danielki <danielki!~danielki@188-192-101-69-dynip.superkabel.de> has joined #yocto | 05:44 | |
*** [Sno] <[Sno]!~Sno]@pd956d8ef.dip0.t-ipconnect.de> has joined #yocto | 05:47 | |
*** msm <msm!~msm@cpe-72-182-100-192.austin.res.rr.com> has joined #yocto | 06:01 | |
*** msm` <msm`!~msm@cpe-72-182-100-192.austin.res.rr.com> has quit IRC | 06:04 | |
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has joined #yocto | 06:14 | |
*** JDuke128 <JDuke128!~textual@178.233.48.89> has joined #yocto | 06:41 | |
*** akS_ <akS_!d44db44a@gateway/web/freenode/ip.212.77.180.74> has joined #yocto | 06:54 | |
akS_ | morning all | 06:54 |
*** danielki <danielki!~danielki@188-192-101-69-dynip.superkabel.de> has quit IRC | 06:55 | |
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has joined #yocto | 06:56 | |
*** abelloni <abelloni!~abelloni@128-79-216-6.hfc.dyn.abo.bbox.fr> has joined #yocto | 07:06 | |
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has joined #yocto | 07:07 | |
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has joined #yocto | 07:09 | |
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 07:22 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 07:25 | |
*** danielki <danielki!~danielki@188.111.54.34> has joined #yocto | 07:33 | |
*** mckoan|away is now known as mckoan | 07:38 | |
mckoan | good morning | 07:38 |
bluelightning | morning all | 07:45 |
*** florian_kc is now known as florian | 07:54 | |
kbouhara | Hi 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 #yocto | 08:07 | |
*** sameo <sameo!samuel@nat/intel/x-vyqitcjubalfurti> has joined #yocto | 08:08 | |
JaMa | darknighte: I do, but I have never tried cinematic experience | 08:25 |
*** melonipoika <melonipoika!~melonipoi@91-158-65-146.elisa-laajakaista.fi> has quit IRC | 08:37 | |
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto | 09:00 | |
*** JDuke128 <JDuke128!~textual@178.233.48.89> has quit IRC | 09:03 | |
*** belen <belen!~Adium@192.198.151.44> has joined #yocto | 09:04 | |
TuTizz | morning all, what should I do to compress my kernel in lzo? | 09:05 |
danielki | otavio: hi; what's the state of sdk support in meta-qt5? is it supposed to work now or still in progress? | 09:12 |
mckoan | danielki: with daisy it works | 09:40 |
mckoan | danielki: which problems have you? | 09:40 |
danielki | mckoan: 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 |
danielki | is 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 #yocto | 09:45 | |
*** kroon <kroon!~kroon@89-253-118-72.customers.ownit.se> has quit IRC | 09:55 | |
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has quit IRC | 09:55 | |
*** dca <dca!~dca@146.185.164.188> has quit IRC | 09:55 | |
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC | 09:55 | |
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has quit IRC | 09:55 | |
*** msm <msm!~msm@cpe-72-182-100-192.austin.res.rr.com> has quit IRC | 09:55 | |
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC | 09:55 | |
*** dl9pf_ <dl9pf_!~quassel@static.88-198-106-157.clients.your-server.de> has quit IRC | 09:55 | |
*** Jay7 <Jay7!jay@176.15.149.182> has quit IRC | 09:55 | |
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has quit IRC | 09:55 | |
*** mckoan <mckoan!~marco@unaffiliated/mckoan> has quit IRC | 09:55 | |
*** behanw <behanw!~behanw@S0106dc9fdb80cffd.gv.shawcable.net> has quit IRC | 09:55 | |
*** reanguia1o <reanguia1o!~devnull@ricardoanguiano.com> has quit IRC | 09:55 | |
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has quit IRC | 09:55 | |
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has quit IRC | 09:55 | |
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has quit IRC | 09:55 | |
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has quit IRC | 09:55 | |
*** acidx <acidx!~leandro@hadron.lhc.net.br> has quit IRC | 09:55 | |
*** mcweigel <mcweigel!~b46258@gate-tx3.freescale.com> has quit IRC | 09:56 | |
*** ripperD <ripperD!~dean@c-24-118-104-28.hsd1.mn.comcast.net> has quit IRC | 09:56 | |
*** bunk <bunk!~bunk@cs185055.pp.htv.fi> has quit IRC | 09:56 | |
*** EsbenAFK <EsbenAFK!~esben@hugin.dotsrc.org> has quit IRC | 09:56 | |
*** nslu2-log <nslu2-log!~nslu2-log@140.211.169.184> has quit IRC | 09:56 | |
*** th <th!~th@unaffiliated/th> has quit IRC | 09:56 | |
*** Noor <Noor!~quassel@110.93.212.98> has quit IRC | 09:56 | |
*** akS_ <akS_!d44db44a@gateway/web/freenode/ip.212.77.180.74> has quit IRC | 09:56 | |
*** AlexVaduva <AlexVaduva!c1ca1642@gateway/web/freenode/ip.193.202.22.66> has quit IRC | 09:56 | |
*** Ricko__ <Ricko__!5a509091@gateway/web/freenode/ip.90.80.144.145> has quit IRC | 09:56 | |
*** danielki <danielki!~danielki@188.111.54.34> has quit IRC | 09:56 | |
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has quit IRC | 09:56 | |
*** [Sno] <[Sno]!~Sno]@pd956d8ef.dip0.t-ipconnect.de> has quit IRC | 09:56 | |
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC | 09:56 | |
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has quit IRC | 09:56 | |
*** sjolley <sjolley!~sjolley@134.134.139.72> has quit IRC | 09:56 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 09:56 | |
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has quit IRC | 09:56 | |
*** seezer_ <seezer_!quassel@quassel/developer/seezer> has quit IRC | 09:56 | |
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has quit IRC | 09:56 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC | 09:56 | |
*** lyang0 <lyang0!~lyang001@1.202.252.122> has quit IRC | 09:56 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 09:56 | |
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has quit IRC | 09:56 | |
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has quit IRC | 09:56 | |
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has quit IRC | 09:56 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC | 09:56 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC | 09:56 | |
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has quit IRC | 09:56 | |
*** sgw_ <sgw_!~sgw@c-50-186-0-160.hsd1.or.comcast.net> has quit IRC | 09:56 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has quit IRC | 09:56 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 09:56 | |
*** lexano <lexano!~lexano@99.245.144.244> has quit IRC | 09:56 | |
*** FunkyPenguin <FunkyPenguin!~quassel@opensuse/member/FunkyPenguin> has quit IRC | 09:56 | |
*** kevin_t <kevin_t!~Thunderbi@46.18.96.46> has quit IRC | 09:56 | |
*** ionte <ionte!~jonatan@85.224.69.51> has quit IRC | 09:56 | |
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has quit IRC | 09:56 | |
*** zibri <zibri!zibri@rfc1459.se> has quit IRC | 09:56 | |
*** proximus <proximus!~esamgab@lmcpra.ericsson.ca> has quit IRC | 09:56 | |
*** erbo <erbo!~erbo@194-237-7-146.customer.telia.com> has quit IRC | 09:56 | |
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has quit IRC | 09:56 | |
*** khem <khem!~khem@c-98-207-177-218.hsd1.ca.comcast.net> has quit IRC | 09:56 | |
*** Marex <Marex!~Marex@195.140.253.167> has quit IRC | 09:56 | |
*** jmpdelos <jmpdelos!~polk@75-173-232-37.clsp.qwest.net> has quit IRC | 09:56 | |
*** JaMa <JaMa!~martin@ip-89-176-104-3.net.upcbroadband.cz> has quit IRC | 09:56 | |
*** Saur <Saur!pkj@nat/axis/x-ujhanbfeksprklpj> has quit IRC | 09:56 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has quit IRC | 09:56 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 09:56 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 09:56 | |
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has quit IRC | 09:56 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC | 09:56 | |
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has quit IRC | 09:56 | |
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has quit IRC | 09:56 | |
*** ddalex <ddalex!~ddalex@83.217.123.106> has quit IRC | 09:56 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-luzcwxeaobwduqxl> has quit IRC | 09:56 | |
*** kimrhh <kimrhh!~kimrhh@exherbo/developer/kimrhh> has quit IRC | 09:56 | |
*** adelcast <adelcast!~adelcast@130.164.62.224> has quit IRC | 09:56 | |
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has quit IRC | 09:56 | |
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has quit IRC | 09:56 | |
*** fabo <fabo!~fabo@linaro/fabo> has quit IRC | 09:56 | |
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has quit IRC | 09:56 | |
*** ccube <ccube!ccube@nx.mindrunner.de> has quit IRC | 09:56 | |
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has quit IRC | 09:56 | |
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has quit IRC | 09:56 | |
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC | 09:56 | |
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has quit IRC | 09:56 | |
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has quit IRC | 09:56 | |
*** scot <scot!~scot@130.164.62.160> has quit IRC | 09:56 | |
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has quit IRC | 09:56 | |
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has quit IRC | 09:56 | |
*** else58_1 <else58_1!~swarthou@gate-tx3.freescale.com> has quit IRC | 09:56 | |
*** volker- <volker-!~volker@unaffiliated/volker-> has quit IRC | 09:56 | |
*** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has quit IRC | 09:56 | |
*** edsiper <edsiper!edsiper@monkeyhttpd.osuosl.org> has quit IRC | 09:56 | |
*** Xz <Xz!kmsywula@nat/intel/x-pdfrlyzijsuvcnsy> has quit IRC | 09:56 | |
*** radhus <radhus!~radhus@evpsnl.radhuset.org> has quit IRC | 09:56 | |
*** akbennett <akbennett!akbennett@linaro/akbennett> has quit IRC | 09:56 | |
*** sameo <sameo!samuel@nat/intel/x-vyqitcjubalfurti> has quit IRC | 09:56 | |
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has quit IRC | 09:56 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 09:56 | |
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has quit IRC | 09:56 | |
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has quit IRC | 09:56 | |
*** tomz <tomz!tomz@nat/intel/x-upwqmxdfuvmqxfwu> has quit IRC | 09:56 | |
*** Crofton|work <Crofton|work!~balister@pool-71-171-48-208.ronkva.east.verizon.net> has quit IRC | 09:56 | |
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC | 09:56 | |
*** vmeson <vmeson!~quassel@128.224.252.2> has quit IRC | 09:56 | |
*** Letothe2nd <Letothe2nd!~jd@unaffiliated/letothe2nd> has quit IRC | 09:56 | |
*** ccaione <ccaione!~ccaione@unaffiliated/ccaione> has quit IRC | 09:56 | |
*** abelloni <abelloni!~abelloni@128-79-216-6.hfc.dyn.abo.bbox.fr> has quit IRC | 09:56 | |
*** kscherer_ <kscherer_!~kscherer@128.224.252.2> has quit IRC | 09:56 | |
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has quit IRC | 09:56 | |
*** warthog9 <warthog9!~warthog9@149.20.54.19> has quit IRC | 09:56 | |
*** Crofton <Crofton!~balister@pool-71-171-48-208.ronkva.east.verizon.net> has quit IRC | 09:56 | |
*** rink_ <rink_!~rink@gloom.codethulu.net> has quit IRC | 09:56 | |
*** Sput <Sput!~sputnick@quassel/developer/sput> has quit IRC | 09:56 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC | 09:56 | |
*** rperier <rperier!~quassel@ubuntu/member/rperier> has quit IRC | 09:56 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 09:56 | |
*** dzoe <dzoe!joe@pdpc/supporter/active/dzoe> has quit IRC | 09:56 | |
*** eliza411 <eliza411!~eliza411@crown.incitedev.com> has quit IRC | 09:56 | |
*** gagi_ <gagi_!~quassel@vpn.pelagicore.de> has quit IRC | 09:56 | |
*** halstead <halstead!~halstead@drupal.org/user/301087/view> has quit IRC | 09:56 | |
*** captainigloo <captainigloo!~captainig@2001:41d0:8:114b::1> has quit IRC | 09:56 | |
*** ajtag <ajtag!~ajtag@cpc10-lee211-2-0-cust124.7-1.cable.virginm.net> has quit IRC | 09:56 | |
*** otavio <otavio!~otavio@debian/developer/otavio> has quit IRC | 09:56 | |
*** awafaa <awafaa!sid716@gateway/web/irccloud.com/x-vnsranvsgzkgffye> has quit IRC | 09:56 | |
*** DarkKnight_ <DarkKnight_!~quassel@HSI-KBW-095-208-008-143.hsi5.kabel-badenwuerttemberg.de> has quit IRC | 09:56 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC | 09:56 | |
*** SorenHolm <SorenHolm!~quassel@5634f347.rev.stofanet.dk> has quit IRC | 09:56 | |
*** maxin <maxin!~majo@sestofw01.enea.se> has quit IRC | 09:56 | |
*** wgao <wgao!~wgao@1.202.252.122> has quit IRC | 09:56 | |
*** rtollert_ <rtollert_!~rtollert@130.164.62.31> has quit IRC | 09:56 | |
*** mankku <mankku!~mankku@projects.sse.fi> has quit IRC | 09:56 | |
*** rodgort <rodgort!~rodgort@192.241.198.49> has quit IRC | 09:56 | |
*** iggy <iggy!~iggy@theiggy.com> has quit IRC | 09:56 | |
*** jero- <jero-!~boo@2001:41d0:52:100::3b1> has quit IRC | 09:56 | |
*** rakuco <rakuco!rakuco@kde/developer/rkcosta> has quit IRC | 09:56 | |
*** zenlinux <zenlinux!zenlinux@2600:3c00::f03c:91ff:fedb:c91> has quit IRC | 09:56 | |
*** belen <belen!~Adium@192.198.151.44> has quit IRC | 09:56 | |
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has quit IRC | 09:56 | |
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has quit IRC | 09:56 | |
*** phantoxeD <phantoxeD!destroy@a89-154-119-158.cpe.netcabo.pt> has quit IRC | 09:56 | |
*** joeythesaint <joeythesaint!~joe@209.141.56.162> has quit IRC | 09:56 | |
*** fusman <fusman!~fahad@110.93.212.98> has quit IRC | 09:56 | |
*** mago_ <mago_!~mago@c193-14-123-186.cust.tele2.se> has quit IRC | 09:56 | |
*** zarul <zarul!~zarul@ubuntu/member/zarul> has quit IRC | 09:56 | |
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto | 10:03 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 10:03 | |
*** else58 <else58!~ed@cpe-70-116-37-180.austin.res.rr.com> has joined #yocto | 10:03 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto | 10:03 | |
*** blloyd <blloyd!~blloyd@COX-66-210-177-72-static.coxinet.net> has joined #yocto | 10:03 | |
*** kbouhara <kbouhara!~kbouhara@hyperion.atermes.fr> has joined #yocto | 10:03 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto | 10:03 | |
*** michael_e_brown <michael_e_brown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has joined #yocto | 10:03 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto | 10:03 | |
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto | 10:03 | |
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has joined #yocto | 10:03 | |
*** sjolley <sjolley!~sjolley@134.134.139.72> has joined #yocto | 10:03 | |
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has joined #yocto | 10:03 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 10:03 | |
*** scot <scot!~scot@130.164.62.160> has joined #yocto | 10:03 | |
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has joined #yocto | 10:03 | |
*** sgw_ <sgw_!~sgw@c-50-186-0-160.hsd1.or.comcast.net> has joined #yocto | 10:03 | |
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has joined #yocto | 10:03 | |
*** mcweigel <mcweigel!~b46258@gate-tx3.freescale.com> has joined #yocto | 10:03 | |
*** AlexVaduva <AlexVaduva!c1ca1642@gateway/web/freenode/ip.193.202.22.66> has joined #yocto | 10:03 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has joined #yocto | 10:03 | |
*** ddalex <ddalex!~ddalex@83.217.123.106> has joined #yocto | 10:03 | |
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has joined #yocto | 10:03 | |
*** seezer_ <seezer_!quassel@quassel/developer/seezer> has joined #yocto | 10:03 | |
*** dl9pf_ <dl9pf_!~quassel@static.88-198-106-157.clients.your-server.de> has joined #yocto | 10:03 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-luzcwxeaobwduqxl> has joined #yocto | 10:03 | |
*** Jay7 <Jay7!jay@176.15.149.182> has joined #yocto | 10:03 | |
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has joined #yocto | 10:03 | |
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has joined #yocto | 10:03 | |
*** Noor <Noor!~quassel@110.93.212.98> has joined #yocto | 10:03 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto | 10:03 | |
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has joined #yocto | 10:03 | |
*** mckoan <mckoan!~marco@unaffiliated/mckoan> has joined #yocto | 10:03 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 10:03 | |
*** lyang0 <lyang0!~lyang001@1.202.252.122> has joined #yocto | 10:03 | |
*** behanw <behanw!~behanw@S0106dc9fdb80cffd.gv.shawcable.net> has joined #yocto | 10:03 | |
*** reanguia1o <reanguia1o!~devnull@ricardoanguiano.com> has joined #yocto | 10:03 | |
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has joined #yocto | 10:03 | |
*** else58_1 <else58_1!~swarthou@gate-tx3.freescale.com> has joined #yocto | 10:03 | |
*** kimrhh <kimrhh!~kimrhh@exherbo/developer/kimrhh> has joined #yocto | 10:03 | |
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has joined #yocto | 10:03 | |
*** lexano <lexano!~lexano@99.245.144.244> has joined #yocto | 10:03 | |
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has joined #yocto | 10:03 | |
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has joined #yocto | 10:03 | |
*** volker- <volker-!~volker@unaffiliated/volker-> has joined #yocto | 10:03 | |
*** FunkyPenguin <FunkyPenguin!~quassel@opensuse/member/FunkyPenguin> has joined #yocto | 10:03 | |
*** Ricko__ <Ricko__!5a509091@gateway/web/freenode/ip.90.80.144.145> has joined #yocto | 10:03 | |
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has joined #yocto | 10:03 | |
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has joined #yocto | 10:03 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto | 10:03 | |
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has joined #yocto | 10:03 | |
*** ionte <ionte!~jonatan@85.224.69.51> has joined #yocto | 10:03 | |
*** kevin_t <kevin_t!~Thunderbi@46.18.96.46> has joined #yocto | 10:03 | |
*** erbo <erbo!~erbo@194-237-7-146.customer.telia.com> has joined #yocto | 10:03 | |
*** proximus <proximus!~esamgab@lmcpra.ericsson.ca> has joined #yocto | 10:03 | |
*** zibri <zibri!zibri@rfc1459.se> has joined #yocto | 10:03 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has joined #yocto | 10:03 | |
*** Saur <Saur!pkj@nat/axis/x-ujhanbfeksprklpj> has joined #yocto | 10:03 | |
*** JaMa <JaMa!~martin@ip-89-176-104-3.net.upcbroadband.cz> has joined #yocto | 10:03 | |
*** jmpdelos <jmpdelos!~polk@75-173-232-37.clsp.qwest.net> has joined #yocto | 10:03 | |
*** Marex <Marex!~Marex@195.140.253.167> has joined #yocto | 10:03 | |
*** khem <khem!~khem@c-98-207-177-218.hsd1.ca.comcast.net> has joined #yocto | 10:03 | |
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has joined #yocto | 10:03 | |
*** fabo <fabo!~fabo@linaro/fabo> has joined #yocto | 10:03 | |
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has joined #yocto | 10:03 | |
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has joined #yocto | 10:03 | |
*** adelcast <adelcast!~adelcast@130.164.62.224> has joined #yocto | 10:03 | |
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto | 10:03 | |
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has joined #yocto | 10:03 | |
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has joined #yocto | 10:03 | |
*** ccube <ccube!ccube@nx.mindrunner.de> has joined #yocto | 10:03 | |
*** akbennett <akbennett!akbennett@linaro/akbennett> has joined #yocto | 10:03 | |
*** radhus <radhus!~radhus@evpsnl.radhuset.org> has joined #yocto | 10:03 | |
*** Xz <Xz!kmsywula@nat/intel/x-pdfrlyzijsuvcnsy> has joined #yocto | 10:03 | |
*** edsiper <edsiper!edsiper@monkeyhttpd.osuosl.org> has joined #yocto | 10:03 | |
*** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has joined #yocto | 10:03 | |
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has joined #yocto | 10:03 | |
*** acidx <acidx!~leandro@hadron.lhc.net.br> has joined #yocto | 10:03 | |
*** ripperD <ripperD!~dean@c-24-118-104-28.hsd1.mn.comcast.net> has joined #yocto | 10:03 | |
*** bunk <bunk!~bunk@cs185055.pp.htv.fi> has joined #yocto | 10:03 | |
*** EsbenAFK <EsbenAFK!~esben@hugin.dotsrc.org> has joined #yocto | 10:03 | |
*** nslu2-log <nslu2-log!~nslu2-log@140.211.169.184> has joined #yocto | 10:03 | |
*** th <th!~th@unaffiliated/th> has joined #yocto | 10:03 | |
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has joined #yocto | 10:03 | |
*** dca <dca!~dca@146.185.164.188> has joined #yocto | 10:03 | |
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto | 10:03 | |
*** [Sno] <[Sno]!~Sno]@pd956d8ef.dip0.t-ipconnect.de> has joined #yocto | 10:03 | |
*** msm <msm!~msm@cpe-72-182-100-192.austin.res.rr.com> has joined #yocto | 10:03 | |
*** akS_ <akS_!d44db44a@gateway/web/freenode/ip.212.77.180.74> has joined #yocto | 10:03 | |
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has joined #yocto | 10:03 | |
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has joined #yocto | 10:03 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 10:04 | |
*** danielki <danielki!~danielki@188.111.54.34> has joined #yocto | 10:04 | |
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto | 10:04 | |
*** kroon <kroon!~kroon@89-253-118-72.customers.ownit.se> has joined #yocto | 10:04 | |
*** sameo <sameo!samuel@nat/intel/x-vyqitcjubalfurti> has joined #yocto | 10:04 | |
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has joined #yocto | 10:04 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 10:04 | |
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has joined #yocto | 10:04 | |
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has joined #yocto | 10:04 | |
*** tomz <tomz!tomz@nat/intel/x-upwqmxdfuvmqxfwu> has joined #yocto | 10:04 | |
*** Crofton|work <Crofton|work!~balister@pool-71-171-48-208.ronkva.east.verizon.net> has joined #yocto | 10:04 | |
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto | 10:04 | |
*** vmeson <vmeson!~quassel@128.224.252.2> has joined #yocto | 10:04 | |
*** Letothe2nd <Letothe2nd!~jd@unaffiliated/letothe2nd> has joined #yocto | 10:04 | |
*** ccaione <ccaione!~ccaione@unaffiliated/ccaione> has joined #yocto | 10:04 | |
*** abelloni <abelloni!~abelloni@128-79-216-6.hfc.dyn.abo.bbox.fr> has joined #yocto | 10:04 | |
*** kscherer_ <kscherer_!~kscherer@128.224.252.2> has joined #yocto | 10:04 | |
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has joined #yocto | 10:04 | |
*** warthog9 <warthog9!~warthog9@149.20.54.19> has joined #yocto | 10:04 | |
*** Crofton <Crofton!~balister@pool-71-171-48-208.ronkva.east.verizon.net> has joined #yocto | 10:04 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 10:04 | |
*** rink_ <rink_!~rink@gloom.codethulu.net> has joined #yocto | 10:04 | |
*** Sput <Sput!~sputnick@quassel/developer/sput> has joined #yocto | 10:04 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto | 10:04 | |
*** rperier <rperier!~quassel@ubuntu/member/rperier> has joined #yocto | 10:04 | |
*** dzoe <dzoe!joe@pdpc/supporter/active/dzoe> has joined #yocto | 10:04 | |
*** eliza411 <eliza411!~eliza411@crown.incitedev.com> has joined #yocto | 10:04 | |
*** gagi_ <gagi_!~quassel@vpn.pelagicore.de> has joined #yocto | 10:04 | |
*** halstead <halstead!~halstead@drupal.org/user/301087/view> has joined #yocto | 10:04 | |
*** captainigloo <captainigloo!~captainig@2001:41d0:8:114b::1> has joined #yocto | 10:04 | |
*** ajtag <ajtag!~ajtag@cpc10-lee211-2-0-cust124.7-1.cable.virginm.net> has joined #yocto | 10:04 | |
*** otavio <otavio!~otavio@debian/developer/otavio> has joined #yocto | 10:04 | |
*** awafaa <awafaa!sid716@gateway/web/irccloud.com/x-vnsranvsgzkgffye> has joined #yocto | 10:04 | |
*** DarkKnight_ <DarkKnight_!~quassel@HSI-KBW-095-208-008-143.hsi5.kabel-badenwuerttemberg.de> has joined #yocto | 10:04 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto | 10:04 | |
*** SorenHolm <SorenHolm!~quassel@5634f347.rev.stofanet.dk> has joined #yocto | 10:04 | |
*** maxin <maxin!~majo@sestofw01.enea.se> has joined #yocto | 10:04 | |
*** wgao <wgao!~wgao@1.202.252.122> has joined #yocto | 10:04 | |
*** rtollert_ <rtollert_!~rtollert@130.164.62.31> has joined #yocto | 10:04 | |
*** mankku <mankku!~mankku@projects.sse.fi> has joined #yocto | 10:04 | |
*** rodgort <rodgort!~rodgort@192.241.198.49> has joined #yocto | 10:04 | |
*** iggy <iggy!~iggy@theiggy.com> has joined #yocto | 10:04 | |
*** jero- <jero-!~boo@2001:41d0:52:100::3b1> has joined #yocto | 10:04 | |
*** rakuco <rakuco!rakuco@kde/developer/rkcosta> has joined #yocto | 10:04 | |
*** zenlinux <zenlinux!zenlinux@2600:3c00::f03c:91ff:fedb:c91> has joined #yocto | 10:04 | |
*** phantom <phantom!destroy@a89-154-119-158.cpe.netcabo.pt> has joined #yocto | 10:04 | |
*** phantom is now known as 6A4AAENQF | 10:07 | |
*** belen <belen!~Adium@192.198.151.44> has joined #yocto | 10:08 | |
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has joined #yocto | 10:08 | |
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has joined #yocto | 10:08 | |
*** joeythesaint <joeythesaint!~joe@209.141.56.162> has joined #yocto | 10:08 | |
*** fusman <fusman!~fahad@110.93.212.98> has joined #yocto | 10:08 | |
*** mago_ <mago_!~mago@c193-14-123-186.cust.tele2.se> has joined #yocto | 10:08 | |
*** zarul <zarul!~zarul@ubuntu/member/zarul> has joined #yocto | 10:08 | |
*** melonipoika <melonipoika!~quassel@91-158-65-146.elisa-laajakaista.fi> has joined #yocto | 10:18 | |
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC | 10:42 | |
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto | 10:45 | |
*** pev <pev!~pev@2.31.101.16> has joined #yocto | 11:22 | |
danielki | mckoan: 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 |
TuTizz | If 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 #yocto | 12:21 | |
*** reallife <reallife!~reallife@ool-4b7ff55a.static.optonline.net> has joined #yocto | 12:31 | |
*** belen1 <belen1!Adium@nat/intel/x-wpwigplceybuoveg> has joined #yocto | 12:55 | |
*** belen <belen!~Adium@192.198.151.44> has quit IRC | 12:57 | |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has quit IRC | 12:58 | |
mckoan | danielki: DISTRO_FEATURES_remove = "x11 wayland" | 13:17 |
danielki | mckoan: thanks -- weird though that the image build worked | 13:17 |
*** sjolley <sjolley!~sjolley@134.134.139.72> has quit IRC | 13:23 | |
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC | 13:24 | |
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto | 13:26 | |
*** paulg <paulg!~paulg@128.224.252.2> has joined #yocto | 13:27 | |
*** belen <belen!Adium@nat/intel/x-rnyvgfanojnszcng> has joined #yocto | 13:30 | |
*** belen1 <belen1!Adium@nat/intel/x-wpwigplceybuoveg> has quit IRC | 13:31 | |
*** sjolley <sjolley!~sjolley@134.134.139.70> has joined #yocto | 13:47 | |
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has quit IRC | 13:55 | |
*** [Sno] <[Sno]!~Sno]@pd956d8ef.dip0.t-ipconnect.de> has quit IRC | 13:57 | |
*** belen <belen!Adium@nat/intel/x-rnyvgfanojnszcng> has quit IRC | 14:02 | |
*** belen <belen!~Adium@192.198.151.43> has joined #yocto | 14:03 | |
*** DougB <DougB!c0373628@gateway/web/freenode/ip.192.55.54.40> has joined #yocto | 14:04 | |
*** munch <munch!~mark@c-67-184-166-69.hsd1.il.comcast.net> has joined #yocto | 14:17 | |
*** nitink <nitink!nitink@nat/intel/x-lbqghbiapsrwdpsd> has quit IRC | 14:18 | |
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has quit IRC | 14:22 | |
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has quit IRC | 14:22 | |
*** nitink <nitink!nitink@nat/intel/x-zrwytayuzgquwuoj> has joined #yocto | 14:22 | |
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has joined #yocto | 14:23 | |
*** fitzsim <fitzsim!~user@2001:420:284a:1300:21c:c4ff:fe73:2d74> has joined #yocto | 14:26 | |
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has quit IRC | 14:27 | |
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has joined #yocto | 14:32 | |
*** akS_ <akS_!d44db44a@gateway/web/freenode/ip.212.77.180.74> has quit IRC | 14:34 | |
*** alimon <alimon!~alimon@189-212-76-162.static.axtel.net> has joined #yocto | 14:42 | |
*** mckoan is now known as mckoan|away | 14:44 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 14:48 | |
*** armpit <armpit!~akuster@c-98-239-95-55.hsd1.ca.comcast.net> has joined #yocto | 14:51 | |
AlexVaduva | YPTM: Alexandru Vaduva, would today be the technical meeting? | 14:56 |
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has quit IRC | 14:57 | |
rburton | AlexVaduva: next week, iirc | 14:57 |
*** mranostay <mranostay!~mranostay@c-50-186-57-56.hsd1.or.comcast.net> has joined #yocto | 14:57 | |
AlexVaduva | ok | 14:57 |
*** mranostay <mranostay!~mranostay@c-50-186-57-56.hsd1.or.comcast.net> has quit IRC | 14:57 | |
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has joined #yocto | 14:57 | |
AlexVaduva | becaus a mail with the technical meeting was sent today | 14:58 |
rburton | hang around for another five minutes just in case I'm wrong ;) | 14:58 |
AlexVaduva | and it was kind of confussing | 14:58 |
AlexVaduva | also | 14:58 |
AlexVaduva | when will the change took place | 14:58 |
mcweigel | I thought there would be a meeting today, and this would be the new schedule | 14:58 |
AlexVaduva | because in the last meeting the schedule changed | 14:59 |
AlexVaduva | :D | 14:59 |
mcweigel | Stephen'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 #yocto | 14:59 | |
sjolley | YPTM: Ready-Access Number: 8007302996/9139049836 Access Code: 2705751 | 14:59 |
*** belen <belen!~Adium@192.198.151.43> has quit IRC | 14:59 | |
AlexVaduva | It is today | 14:59 |
armpit | YPTM: armin is on | 14:59 |
*** g1zer0 <g1zer0!~gizero@host168-65-static.12-87-b.business.telecomitalia.it> has quit IRC | 15:00 | |
zeddii | YPTM: Bruce is on the call. | 15:00 |
* Jefro is on YPTM | 15:00 | |
* armpit is easily confused at my age so waits | 15:00 | |
*** denix <denix!~denix@pool-71-191-205-189.washdc.fios.verizon.net> has joined #yocto | 15:00 | |
sjolley | YPTM: Stephen Joined | 15:00 |
rburton | hm ok. my calendar is lying. | 15:00 |
AlexVaduva | YPTM: Alexandru Vaduva is on | 15:00 |
*** belen <belen!Adium@nat/intel/x-ylqwxaqmcebpdvnz> has joined #yocto | 15:00 | |
Jefro | diggin the hold music | 15:00 |
mcweigel | YPTM: Matthew is on the call | 15:00 |
halstead | YPTM: Michael on. | 15:00 |
tomz | YPTM: Tom Z on the call | 15:00 |
denix | YPTM: Denys is here | 15:00 |
zhenhua | Zhenhua is on the call | 15:00 |
mcweigel | rburton: yes I did get calendar removal emails, so it isn't on my calendar any more | 15:01 |
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has quit IRC | 15:01 | |
belen | YPTM: Belen is on the call | 15:01 |
*** michael_e_brown_ <michael_e_brown_!~michaeleb@143.166.116.80> has joined #yocto | 15:01 | |
*** mebrown <mebrown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has joined #yocto | 15:01 | |
RP | YPTM: Richard is present | 15:01 |
sgw_ | YPTM: Saul is on | 15:01 |
*** mebrown <mebrown!~michael_e@99-23-196-16.lightspeed.austtx.sbcglobal.net> has quit IRC | 15:01 | |
michael_e_brown_ | YPTM: hi all | 15:02 |
rburton | YPTM: ross on | 15:02 |
RP | sjolley: meta-cgl | 15:03 |
Jefro | meta-cgl is carrier grade linux | 15:03 |
*** ddalex_ <ddalex_!~androirc@83.217.123.106> has joined #yocto | 15:03 | |
ddalex_ | alex d here | 15:03 |
mcweigel | sjolley: new invites for the meeting? | 15:04 |
* nitink is on the YPTM call | 15:04 | |
mcweigel | YPTM: yes please | 15:08 |
mcweigel | I got the meeting update, followed by a cancellation. | 15:08 |
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has joined #yocto | 15:09 | |
*** staylor <staylor!~staylor@mail.au-zone.com> has joined #yocto | 15:10 | |
*** t0vig <t0vig!081c964f@gateway/web/freenode/ip.8.28.150.79> has joined #yocto | 15:10 | |
otavio | danielki: I use it with some customers | 15:14 |
halstead | https://www.yoctoproject.org/downloads | 15:15 |
RP | halstead: The work you and Melissa have done on that is much appreciated, a vast improvement | 15:15 |
AlexVaduva | halstead: thanks | 15:16 |
halstead | https://wiki.yoctoproject.org/charts/perf_milestone/performance_test.html | 15:16 |
halstead | Thank you for your help RP. | 15:16 |
*** rreynolds <rreynolds!6b070daa@gateway/web/freenode/ip.107.7.13.170> has joined #yocto | 15:18 | |
AlexVaduva | halstead: the performance tests are aplicable only from inside toaster or it can be done for other things to | 15:18 |
sjolley | YPTM is done! | 15:19 |
*** t0vig <t0vig!081c964f@gateway/web/freenode/ip.8.28.150.79> has left #yocto | 15:19 | |
*** ddalex_ <ddalex_!~androirc@83.217.123.106> has quit IRC | 15:19 | |
*** belen1 <belen1!~Adium@192.198.151.43> has joined #yocto | 15:21 | |
*** belen <belen!Adium@nat/intel/x-ylqwxaqmcebpdvnz> has quit IRC | 15:21 | |
*** zhenhua <zhenhua!7b97c301@gateway/web/freenode/ip.123.151.195.1> has quit IRC | 15:22 | |
*** ant_work <ant_work!~ant__@host54-128-static.10-188-b.business.telecomitalia.it> has quit IRC | 15:22 | |
*** reallife <reallife!~reallife@ool-4b7ff55a.static.optonline.net> has quit IRC | 15:24 | |
*** reallife <reallife!~reallife@ool-4b7ff55a.static.optonline.net> has joined #yocto | 15:25 | |
*** kroon <kroon!~kroon@89-253-118-72.customers.ownit.se> has quit IRC | 15:25 | |
*** mankku <mankku!~mankku@projects.sse.fi> has quit IRC | 15:31 | |
danielki | otavio: 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 IRC | 15:35 | |
sgw_ | armpit: Hi There | 15:39 |
*** reallife <reallife!~reallife@ool-4b7ff55a.static.optonline.net> has quit IRC | 15:40 | |
*** mago_ <mago_!~mago@c193-14-123-186.cust.tele2.se> has quit IRC | 15:46 | |
alimon | sgw_: hi | 15:49 |
armpit | sgw_: hello | 15: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 power | 15:52 |
sgw_ | alimon: Hi there | 15:53 |
*** danielki <danielki!~danielki@188.111.54.34> has quit IRC | 15:54 | |
armpit | sgw_: no worries. I want to make sure its done correctly | 15:54 |
*** hyei_ <hyei_!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has joined #yocto | 16:00 | |
*** belen <belen!~Adium@192.198.151.43> has joined #yocto | 16:01 | |
*** belen1 <belen1!~Adium@192.198.151.43> has quit IRC | 16:02 | |
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has quit IRC | 16:03 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC | 16:21 | |
*** yzhao2 <yzhao2!~yzhao2@128.224.252.2> has quit IRC | 16:23 | |
*** kscherer_ <kscherer_!~kscherer@128.224.252.2> has quit IRC | 16:23 | |
*** mago_ <mago_!~mago@c193-14-123-186.cust.tele2.se> has joined #yocto | 16:23 | |
*** vmeson <vmeson!~quassel@128.224.252.2> has quit IRC | 16:24 | |
*** paulg <paulg!~paulg@128.224.252.2> has quit IRC | 16:24 | |
*** danielki <danielki!~danielki@p5DDC0CD4.dip0.t-ipconnect.de> has joined #yocto | 16:26 | |
*** maxtothemax <maxtothemax!~maxtothem@134.134.137.71> has joined #yocto | 16:38 | |
*** LCyrin <LCyrin!~LCyrin@2607:fb90:409:4347:fe92:b509:564d:d625> has joined #yocto | 16:45 | |
*** belen1 <belen1!~Adium@192.198.151.43> has joined #yocto | 17:03 | |
*** maxtothemax <maxtothemax!~maxtothem@134.134.137.71> has quit IRC | 17:03 | |
*** belen <belen!~Adium@192.198.151.43> has quit IRC | 17:04 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 17:04 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto | 17:05 | |
*** danielki <danielki!~danielki@p5DDC0CD4.dip0.t-ipconnect.de> has quit IRC | 17:11 | |
*** sameo <sameo!samuel@nat/intel/x-vyqitcjubalfurti> has quit IRC | 17:14 | |
*** hyei_ <hyei_!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has quit IRC | 17:19 | |
*** maxtothemax <maxtothemax!~maxtothem@134.134.139.70> has joined #yocto | 17:20 | |
*** pidge <pidge!~pidge@134.134.139.70> has joined #yocto | 17:21 | |
*** hyei <hyei!~hyei@c-71-204-135-58.hsd1.ca.comcast.net> has joined #yocto | 17:21 | |
*** nitink <nitink!nitink@nat/intel/x-zrwytayuzgquwuoj> has quit IRC | 17:24 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 17:32 | |
*** danielki <danielki!~danielki@188-192-101-69-dynip.superkabel.de> has joined #yocto | 17:36 | |
*** belen1 <belen1!~Adium@192.198.151.43> has quit IRC | 17:41 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has quit IRC | 17:43 | |
*** demonimin_ <demonimin_!~demonimin@unaffiliated/demonimin> has quit IRC | 17:44 | |
*** nitink <nitink!nitink@nat/intel/x-ppzthrsovfxwegvs> has joined #yocto | 17:52 | |
*** demonimin <demonimin!~demonimin@pro75-5-88-162-203-35.fbx.proxad.net> has joined #yocto | 17:53 | |
*** demonimin <demonimin!~demonimin@unaffiliated/demonimin> has joined #yocto | 17: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/163 | 18:11 | |
*** DougB <DougB!c0373628@gateway/web/freenode/ip.192.55.54.40> has quit IRC | 18:16 | |
seebs | Okay, this may be a silly question, but... | 18:20 |
*** dmoseley <dmoseley!~dmoseley@107.14.223.240> has joined #yocto | 18:20 | |
seebs | In 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 |
seebs | Is that actually specified and/or reliable? | 18:20 |
*** zecke <zecke!~ich@91-65-194-134-dynip.superkabel.de> has quit IRC | 18:34 | |
*** _dv_ <_dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto | 18:38 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC | 18:39 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC | 18: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 #yocto | 18:54 | |
*** dmoseley <dmoseley!~dmoseley@107.14.223.240> has quit IRC | 19:09 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC | 19:09 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto | 19:10 | |
*** yzhao2 <yzhao2!~yzhao2@128.224.252.2> has joined #yocto | 19:10 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC | 19:10 | |
*** ant_home <ant_home!~andrea@host8-88-dynamic.45-79-r.retail.telecomitalia.it> has joined #yocto | 19:12 | |
*** paulg <paulg!~paulg@128.224.252.2> has joined #yocto | 19:14 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto | 19:14 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto | 19:15 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC | 19:19 | |
*** bluelightning <bluelightning!~paul@2001:8b0:258:7d7a:5e51:4fff:febb:401d> has joined #yocto | 19:23 | |
*** bluelightning <bluelightning!~paul@2001:8b0:258:7d7a:5e51:4fff:febb:401d> has quit IRC | 19:23 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 19:23 | |
*** weeb0 <weeb0!~weeb0@modemcable039.26-178-173.mc.videotron.ca> has quit IRC | 19:32 | |
*** zecke <zecke!~ich@91-64-81-99-dynip.superkabel.de> has joined #yocto | 19:33 | |
*** yzhao2 <yzhao2!~yzhao2@128.224.252.2> has quit IRC | 19:34 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC | 19:35 | |
*** paulg <paulg!~paulg@128.224.252.2> has quit IRC | 19:35 | |
*** paulg <paulg!~paulg@128.224.252.2> has joined #yocto | 19:39 | |
*** yzhao2 <yzhao2!~yzhao2@128.224.252.2> has joined #yocto | 19:42 | |
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto | 19:47 | |
*** dmoseley <dmoseley!~dmoseley@cpe-174-096-222-251.carolina.res.rr.com> has joined #yocto | 19:55 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto | 19:56 | |
*** nitink1 <nitink1!~nitink@134.134.137.73> has joined #yocto | 19:59 | |
*** kscherer <kscherer!~kscherer@128.224.252.2> has joined #yocto | 19:59 | |
*** zecke <zecke!~ich@91-64-81-99-dynip.superkabel.de> has quit IRC | 20:02 | |
*** nitink <nitink!nitink@nat/intel/x-ppzthrsovfxwegvs> has quit IRC | 20:02 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC | 20:05 | |
*** rreynolds <rreynolds!6b070daa@gateway/web/freenode/ip.107.7.13.170> has quit IRC | 20:05 | |
*** msm` <msm`!~msm@cpe-72-182-100-192.austin.res.rr.com> has joined #yocto | 20:10 | |
*** msm <msm!~msm@cpe-72-182-100-192.austin.res.rr.com> has quit IRC | 20:12 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto | 20:30 | |
*** nitink <nitink!nitink@nat/intel/x-dyfmobzuydloroiw> has joined #yocto | 20:32 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has joined #yocto | 20:36 | |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has joined #yocto | 20:39 | |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has joined #yocto | 20:39 | |
*** sjolley <sjolley!~sjolley@134.134.139.70> has quit IRC | 20:39 | |
*** sjolley <sjolley!sjolley@nat/intel/x-ctcwiymisntdctet> has joined #yocto | 20:40 | |
*** kroon <kroon!~kroon@m176-70-245-121.cust.tele2.se> has joined #yocto | 20:40 | |
*** [Sno] <[Sno]!~Sno]@static-87-79-200-121.netcologne.de> has quit IRC | 20:40 | |
*** munch <munch!~mark@c-67-184-166-69.hsd1.il.comcast.net> has quit IRC | 20:45 | |
*** kroon <kroon!~kroon@m176-70-245-121.cust.tele2.se> has quit IRC | 20:47 | |
*** reanguia1o is now known as reanguiano | 20:48 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC | 20:57 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto | 21:02 | |
*** d_s_e <d_s_e!~d.s.e@ppp-93-104-103-135.dynamic.mnet-online.de> has joined #yocto | 21:06 | |
*** ccube <ccube!ccube@nx.mindrunner.de> has quit IRC | 21:07 | |
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has quit IRC | 21:07 | |
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has quit IRC | 21:07 | |
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC | 21:07 | |
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto | 21:07 | |
*** paulbarker <paulbarker!~pbarker@ygg.betafive.co.uk> has joined #yocto | 21:07 | |
*** el_robin <el_robin!~el_robin@sd-22215.dedibox.fr> has joined #yocto | 21:07 | |
*** ccube <ccube!ccube@nx.mindrunner.de> has joined #yocto | 21:07 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC | 21:13 | |
*** lt <lt!ae2d78d1@gateway/web/freenode/ip.174.45.120.209> has joined #yocto | 21:18 | |
*** lt is now known as Guest76387 | 21:19 | |
*** nitink2 <nitink2!nitin@nat/intel/x-jbiavpqenjmljblx> has joined #yocto | 21: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/170 | 21:26 | |
*** nitink2 <nitink2!nitin@nat/intel/x-jbiavpqenjmljblx> has left #yocto | 21:27 | |
*** Guest76387 <Guest76387!ae2d78d1@gateway/web/freenode/ip.174.45.120.209> has quit IRC | 21:30 | |
*** e8johan <e8johan!~quassel@90-229-157-121-no198.tbcn.telia.com> has quit IRC | 21:32 | |
khem | seebs you want something like VAR_append_<override> | 21:34 |
*** nitink <nitink!nitink@nat/intel/x-dyfmobzuydloroiw> has quit IRC | 21:34 | |
*** nitink2 <nitink2!~nitin@134.134.137.71> has joined #yocto | 21:34 | |
*** nitink <nitink!~nitink@134.134.139.72> has joined #yocto | 21:35 | |
*** nitink <nitink!~nitink@134.134.139.72> has quit IRC | 21:37 | |
*** nitink <nitink!nitink@nat/intel/x-mtijcusiuzkpanxv> has joined #yocto | 21:37 | |
*** nitink <nitink!nitink@nat/intel/x-mtijcusiuzkpanxv> has quit IRC | 21:41 | |
*** 6A4AAENQF is now known as phantoxeD | 21:44 | |
*** nitink1 <nitink1!~nitink@134.134.137.73> has quit IRC | 21:45 | |
*** cneth <cneth!c6170549@gateway/web/freenode/ip.198.23.5.73> has joined #yocto | 21: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/173 | 21: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/165 | 21:53 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC | 21: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/163 | 21:55 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto | 21:56 | |
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has quit IRC | 21:56 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC | 22:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 22:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 22:01 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto | 22:01 | |
*** [Sno] <[Sno]!~Sno]@p578b540c.dip0.t-ipconnect.de> has joined #yocto | 22:10 | |
*** cpparker <cpparker!808a4b73@gateway/web/freenode/ip.128.138.75.115> has joined #yocto | 22:16 | |
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has quit IRC | 22:27 | |
*** pidge <pidge!~pidge@134.134.139.70> has quit IRC | 22:27 | |
*** smurray <smurray!~Scott@69-165-247-13.cable.teksavvy.com> has joined #yocto | 22:28 | |
*** cpparker <cpparker!808a4b73@gateway/web/freenode/ip.128.138.75.115> has quit IRC | 22:33 | |
*** cneth <cneth!c6170549@gateway/web/freenode/ip.198.23.5.73> has quit IRC | 22:57 | |
*** kroon <kroon!~kroon@m176-70-245-121.cust.tele2.se> has joined #yocto | 22:57 | |
*** sameo <sameo!~samuel@192.55.55.39> has joined #yocto | 22:59 | |
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has quit IRC | 23:08 | |
*** alimon <alimon!~alimon@189-212-76-162.static.axtel.net> has quit IRC | 23:11 | |
seebs | Well, VAR_append_<override> does indeed appear to work, I just wasn't sure whether the order was fully specified. | 23:19 |
seebs | What 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 |
seebs | Er, OVERRIDES_append. | 23:20 |
kergoth | yeah, 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 shrugs | 23:24 | |
ant_home | well, I better go to sleep.. | 23:32 |
ant_home | sigh.. I fill /dev/null ... | 23:32 |
ant_home | wtf? | 23:32 |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 23:32 | |
ant_home | root@c7x0:/mnt/.psplash# time cp rootfs.squashfs /dev/null | 23:33 |
ant_home | cp: write error: No space left on device | 23:33 |
ant_home | root@c7x0:/mnt/.psplash# ls -al /dev/null | 23:33 |
ant_home | -rw-r--r-- 1 root root 0 Jul 15 23:14 /dev/null | 23:33 |
*** maxtothemax <maxtothemax!~maxtothem@134.134.139.70> has quit IRC | 23:33 | |
ant_home | even recreating it won't help | 23:33 |
ant_home | becomes a normal file... | 23:34 |
ant_home | -rw-r--r-- 1 root root 29507584 Jul 15 22:58 /dev/zero | 23:35 |
ant_home | same... | 23:35 |
ant_home | busybox? | 23:35 |
*** ant_home <ant_home!~andrea@host8-88-dynamic.45-79-r.retail.telecomitalia.it> has quit IRC | 23:37 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC | 23:38 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto | 23:40 | |
*** sjolley <sjolley!sjolley@nat/intel/x-ctcwiymisntdctet> has quit IRC | 23:47 | |
*** alimon <alimon!~alimon@189.154.13.41> has joined #yocto | 23:49 | |
*** nitink2 <nitink2!~nitin@134.134.137.71> has quit IRC | 23: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/164 | 23:56 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!