RP | Hmm, the mystery sdk bug turns out to be one of my patches :( | 00:05 |
---|---|---|
*** |King_InuYasha| <|King_InuYasha|!~King_InuY@ool-18e49371.dyn.optonline.net> has joined #yocto | 00:11 | |
rburton_ | RP: phew at least it wasn'tone of mine :) | 00:12 |
*** micka_ <micka_!~micka@reverse-75.fdn.fr> has joined #yocto | 00:13 | |
*** dev1990_ <dev1990_!~dev@dynamic-78-8-108-228.ssp.dialog.net.pl> has joined #yocto | 00:13 | |
*** blueness_ <blueness_!~blueness@gentoo/developer/blueness> has joined #yocto | 00:14 | |
RP | JPEW: your bitbake patch isn't against master? :/ | 00:14 |
*** suy <suy!~quassel@roger.badopi.com> has joined #yocto | 00:14 | |
aehs29 | RP: found an interestnig multiconfig bug yesterday | 00:14 |
aehs29 | I will file a bug later | 00:14 |
*** DuClare_ <DuClare_!~duclare@mobile-user-c3a589-2.dhcp.inet.fi> has joined #yocto | 00:15 | |
RP | aehs29: I'm not entirely surprised there are some... | 00:15 |
*** sveinse_ <sveinse_!~sveinse@156.92-221-160.customer.lyse.net> has joined #yocto | 00:16 | |
*** abelloni_ <abelloni_!~abelloni@scw.piout.net> has joined #yocto | 00:16 | |
aehs29 | you need to build two separate DISTROs, one that INHERITS buildhistory for example, or something that has a post parsing event, you need to declare DISTRO on your main local.conf to that one that has the extra INHERIT, and one of your other confs should build the DISTRO that doesnt INHERIT that | 00:16 |
RP | aehs29: they get the wrong events? | 00:17 |
aehs29 | and the INHERIT NEEDS to be on the distro.conf, if it is in local.conf it works fine | 00:17 |
RP | aehs29: I can imagine why that could break | 00:18 |
aehs29 | RP: so it errors out becuase it tries to read variables that dont exist, e.g. BUILDHISTORY | 00:18 |
*** King_InuYasha <King_InuYasha!~King_InuY@fedora/ngompa> has quit IRC | 00:18 | |
*** micka <micka!~micka@reverse-75.fdn.fr> has quit IRC | 00:18 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 00:18 | |
*** alimon <alimon!alimon@gateway/shell/linaro/x-ddowdehbhfmuazgw> has quit IRC | 00:18 | |
*** dev1990 <dev1990!~dev@dynamic-78-8-108-228.ssp.dialog.net.pl> has quit IRC | 00:18 | |
*** DuClare <DuClare!~duclare@freenet/Freetalk/developer/DuClare> has quit IRC | 00:18 | |
*** henriknj <henriknj!~hnje@193.106.123.182> has quit IRC | 00:18 | |
*** grma <grma!~gruberm@80.93.38.128> has quit IRC | 00:18 | |
*** sveinse <sveinse!~sveinse@156.92-221-160.customer.lyse.net> has quit IRC | 00:18 | |
*** suy_ <suy_!~quassel@roger.badopi.com> has quit IRC | 00:18 | |
*** dv_ <dv_!~dv@62-178-50-190.cable.dynamic.surfer.at> has quit IRC | 00:18 | |
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has quit IRC | 00:18 | |
*** apteryx <apteryx!~maxim@45.72.138.75> has quit IRC | 00:18 | |
*** abelloni <abelloni!~abelloni@scw.piout.net> has quit IRC | 00:18 | |
*** nighty-- <nighty--!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto | 00:18 | |
*** blueness_ is now known as blueness | 00:18 | |
aehs29 | RP: the interesting thing for me was that I was testing the INHERIT inside the local.conf and it didnt error out | 00:18 |
aehs29 | it needed to be inside the distro.conf | 00:18 |
RP | aehs29: interesting. The event handlers aren't namespaced per multiconfig so can probably get confused :/ | 00:19 |
aehs29 | otherwise it was parsed as well by the other multiconfs and the BUILDHISTORY variable existed | 00:19 |
*** apteryx <apteryx!~maxim@45.72.138.75> has joined #yocto | 00:19 | |
aehs29 | RP: yeah I will file a bug later today and take it myself | 00:19 |
*** dv_ <dv_!~dv@62.178.50.190> has joined #yocto | 00:20 | |
aehs29 | RP: also I have a patch that modifies the debug info, to show for which mc its doing something for, because that was making things even more confusing | 00:20 |
aehs29 | when multiconfig isnt being used it'll just show the default I suppose | 00:20 |
*** alimon <alimon!alimon@gateway/shell/linaro/x-fuglknstuwqprivu> has joined #yocto | 00:21 | |
aehs29 | another thing I meant to ask, was that when is the variable expansion happening?, can we keep the parsed files and reuse them for another multiconfig?, because at this point were parsing everything several times | 00:21 |
aehs29 | basically, can we keep the parsed files, and expand them depending on each multiconfig | 00:22 |
*** brrm <brrm!~brrm@HSI-KBW-046-005-176-047.hsi8.kabel-badenwuerttemberg.de> has quit IRC | 00:22 | |
*** rburton_ <rburton_!~rburton@35.106.2.81.in-addr.arpa> has quit IRC | 00:23 | |
*** brrm <brrm!~brrm@HSI-KBW-046-005-176-047.hsi8.kabel-badenwuerttemberg.de> has joined #yocto | 00:23 | |
RP | aehs29: we can keep the ast for the files and I think we may already do so. There are things like immediate expansion during parsing though so its not that much of a win | 00:24 |
RP | aehs29: our flexible structure is a nightmare for optimisation/caching | 00:24 |
* RP -> Zzzz | 00:24 | |
aehs29 | RP: alright | 00:24 |
aehs29 | RP: night | 00:24 |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 00:29 | |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC | 00:36 | |
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has quit IRC | 00:41 | |
*** ant_home <ant_home!~ant__@host55-101-dynamic.58-82-r.retail.telecomitalia.it> has quit IRC | 00:49 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 01:15 | |
aehs29 | RP: sent you the python fixes for both py2 and py3 | 01:32 |
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has quit IRC | 01:34 | |
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto | 01:36 | |
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has joined #yocto | 01:45 | |
*** maudat <maudat!~moda@64.18.88.250> has quit IRC | 01:47 | |
*** Aethenelle <Aethenelle!Aethenelle@gateway/shell/panicbnc/x-ybnzdrevptnohjot> has quit IRC | 02:19 | |
*** bleu <bleu!~brianleu@cpe-24-211-134-4.nc.res.rr.com> has quit IRC | 02:35 | |
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto | 02:49 | |
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto | 02:49 | |
*** nighty-- <nighty--!~nighty@s229123.ppp.asahi-net.or.jp> has quit IRC | 04:06 | |
*** nighty-- <nighty--!~nighty@b157153.ppp.asahi-net.or.jp> has joined #yocto | 04:19 | |
*** Aethenelle <Aethenelle!Aethenelle@gateway/shell/panicbnc/x-wbioxlefcumsqazf> has joined #yocto | 04:23 | |
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has quit IRC | 04:36 | |
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has joined #yocto | 04:59 | |
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has quit IRC | 05:22 | |
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has joined #yocto | 05:24 | |
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has quit IRC | 05:30 | |
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has quit IRC | 05:34 | |
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has joined #yocto | 05:41 | |
*** [Sno] <[Sno]!~sno@b2b-78-94-80-58.unitymedia.biz> has joined #yocto | 05:53 | |
*** sno <sno!~sno@b2b-78-94-80-58.unitymedia.biz> has quit IRC | 05:55 | |
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-flgzgdscmmrsnkex> has quit IRC | 06:57 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 09:35 | |
*** yann <yann!~yann@lfbn-1-515-227.w86-245.abo.wanadoo.fr> has joined #yocto | 10:59 | |
RP | aehs29: where did you send them? :/ | 11:06 |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto | 11:29 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC | 11:33 | |
*** gtristan <gtristan!~tristanva@110.11.179.2> has joined #yocto | 11:39 | |
*** dev1990_ <dev1990_!~dev@dynamic-78-8-108-228.ssp.dialog.net.pl> has quit IRC | 11:43 | |
*** khem <khem!~khem@unaffiliated/khem> has quit IRC | 11:52 | |
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto | 11:55 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto | 12:12 | |
*** nyjan <nyjan!2504fb89@gateway/web/freenode/ip.37.4.251.137> has joined #yocto | 13:01 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 13:05 | |
*** nyjan <nyjan!2504fb89@gateway/web/freenode/ip.37.4.251.137> has quit IRC | 13:19 | |
*** c0le_ <c0le_!~c0le@2409:4040:404:d395:48c6:4cf2:dd94:2e2e> has joined #yocto | 13:25 | |
*** c0le__ <c0le__!~c0le@2409:4040:404:d395:48c6:4cf2:dd94:2e2e> has joined #yocto | 13:34 | |
*** c0le_ <c0le_!~c0le@2409:4040:404:d395:48c6:4cf2:dd94:2e2e> has quit IRC | 13:37 | |
*** c0le___ <c0le___!~c0le@49.32.176.17> has joined #yocto | 13:50 | |
*** c0le__ <c0le__!~c0le@2409:4040:404:d395:48c6:4cf2:dd94:2e2e> has quit IRC | 13:53 | |
*** c0le___ <c0le___!~c0le@49.32.176.17> has quit IRC | 13:54 | |
*** c0le <c0le!~c0le@ogre.hipro.co.in> has left #yocto | 14:08 | |
*** |King_InuYasha| <|King_InuYasha|!~King_InuY@ool-18e49371.dyn.optonline.net> has quit IRC | 15:17 | |
*** King_InuYasha <King_InuYasha!~King_InuY@fedora/ngompa> has joined #yocto | 15:17 | |
*** learningc <learningc!~learningc@210.195.72.169> has joined #yocto | 15:21 | |
*** armpit <armpit!~armpit@2601:202:4180:c33:b865:d3b:ef6f:9b75> has quit IRC | 15:33 | |
*** armpit <armpit!~armpit@2601:202:4180:c33:3918:166c:831a:f447> has joined #yocto | 15:36 | |
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has joined #yocto | 16:07 | |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto | 17:18 | |
*** OpenSorc_ <OpenSorc_!~opensorce@216-82-197-9.static.grandenetworks.net> has joined #yocto | 17:37 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has quit IRC | 17:37 | |
*** sa2ajj <sa2ajj!~quassel@dsl-hkibng21-54f864-131.dhcp.inet.fi> has quit IRC | 17:42 | |
moto-timo | RP: I built ~20 eclipse-plugin-neon and ~20 eclipse-plugin-oxygen jobs yesterday, no timeout failures. I still have doubts that we really solved the problem, but it looks like we are in a better situation. | 17:44 |
moto-timo | RP: grr. just noticed this one: https://autobuilder.yoctoproject.org/typhoon/#/builders/25/builds/325 | 17:46 |
*** anubani_ <anubani_!~quassel@82.213.2.186> has quit IRC | 17:59 | |
*** anubani <anubani!~quassel@82.213.2.186> has joined #yocto | 18:00 | |
*** OpenSorceress <OpenSorceress!~opensorce@216-82-197-9.static.grandenetworks.net> has joined #yocto | 18:10 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has joined #yocto | 18:10 | |
*** OpenSorc_ <OpenSorc_!~opensorce@216-82-197-9.static.grandenetworks.net> has quit IRC | 18:13 | |
*** OpenSorc_ <OpenSorc_!~opensorce@216-82-197-9.static.grandenetworks.net> has joined #yocto | 18:13 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has quit IRC | 18:17 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has joined #yocto | 18:24 | |
*** OpenSorc_ <OpenSorc_!~opensorce@216-82-197-9.static.grandenetworks.net> has quit IRC | 18:27 | |
*** OpenSorc_ <OpenSorc_!~opensorce@216-82-197-9.static.grandenetworks.net> has joined #yocto | 18:28 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has quit IRC | 18:29 | |
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has joined #yocto | 19:13 | |
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has quit IRC | 19:28 | |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has quit IRC | 20:17 | |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has joined #yocto | 20:18 | |
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto | 20:19 | |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has quit IRC | 20:21 | |
*** dv_ <dv_!~dv@62.178.50.190> has quit IRC | 20:22 | |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has joined #yocto | 20:26 | |
*** dv_ <dv_!~dv@62-178-50-190.cable.dynamic.surfer.at> has joined #yocto | 20:36 | |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has quit IRC | 20:37 | |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has joined #yocto | 20:39 | |
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has quit IRC | 20:47 | |
khem | RP: sent a v3 of mdadm patch, it seems that I was too ambitious with cleanup | 21:00 |
RP | moto-timo: right, it failed when I ran that larger build :/ | 21:26 |
RP | moto-timo: its as if system load somehow triggers it :/ | 21:26 |
RP | khem: thanks | 21:26 |
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has joined #yocto | 21:30 | |
*** learningc <learningc!~learningc@210.195.72.169> has quit IRC | 21:33 | |
*** otavio <otavio!~otavio@debian/developer/otavio> has quit IRC | 21:36 | |
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has quit IRC | 22:01 | |
*** OpenSorc_ <OpenSorc_!~opensorce@216-82-197-9.static.grandenetworks.net> has quit IRC | 22:04 | |
*** OpenSorceress <OpenSorceress!~opensorce@216-82-197-9.static.grandenetworks.net> has joined #yocto | 22:04 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has joined #yocto | 22:04 | |
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-zlwwbjsnpkomlynb> has joined #yocto | 22:27 | |
*** vmeson <vmeson!~rmacleod@24-52-238-240.cable.teksavvy.com> has quit IRC | 22:37 | |
*** vmeson <vmeson!~rmacleod@24-52-238-240.cable.teksavvy.com> has joined #yocto | 22:39 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has quit IRC | 22:53 | |
*** adrianbunk <adrianbunk!~bunk@dsl-hkibng31-54faec-60.dhcp.inet.fi> has quit IRC | 22:54 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has joined #yocto | 22:55 | |
*** adrianbunk <adrianbunk!~bunk@dsl-hkibng31-54faec-60.dhcp.inet.fi> has joined #yocto | 22:56 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has quit IRC | 23:36 | |
*** OpenSorceress <OpenSorceress!~opensorce@unaffiliated/screamingbanshee> has joined #yocto | 23:50 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!