Wednesday, 2015-12-02

*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto00:05
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC00:11
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto00:11
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC00:11
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC00:12
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto00:12
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto00:13
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC00:16
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto00:17
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC00:17
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto00:18
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto00:19
*** nighty-_ <nighty-_!~nighty@KD119104070170.au-net.ne.jp> has joined #yocto00:20
*** nighty^ <nighty^!~nighty@KD119104063241.au-net.ne.jp> has quit IRC00:24
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC00:27
*** joshuagl <joshuagl!~joshuagl@host109-147-94-87.range109-147.btcentralplus.com> has quit IRC00:36
*** Net147 <Net147!~Net147@unaffiliated/net147> has quit IRC00:43
*** joshuagl <joshuagl!~joshuagl@host217-44-16-108.range217-44.btcentralplus.com> has joined #yocto00:44
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto00:46
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has quit IRC01:15
*** Jackie <Jackie!~quassel@106.120.101.38> has joined #yocto01:15
*** Jackie is now known as Guest1895101:16
*** abelloni <abelloni!~abelloni@2a01:e35:8bf1:a7c0:a288:b4ff:fe25:8918> has quit IRC01:17
*** abelloni <abelloni!~abelloni@2a01:e35:8bf1:a7c0:a288:b4ff:fe25:8918> has joined #yocto01:19
*** aehs29 <aehs29!aehernan@nat/intel/x-pimgjcnkqvsodrmz> has left #yocto01:22
*** stephano <stephano!~stephano@74-92-165-193-Oregon.hfc.comcastbusiness.net> has quit IRC01:38
*** DarkKnight <DarkKnight!~quassel@HSI-KBW-095-208-243-227.hsi5.kabel-badenwuerttemberg.de> has quit IRC01:48
*** deviosity <deviosity!~deviosity@c-24-143-113-42.customer.broadstripe.net> has quit IRC01:48
*** DarkKnight <DarkKnight!~quassel@HSI-KBW-095-208-243-227.hsi5.kabel-badenwuerttemberg.de> has joined #yocto01:48
*** cesdv <cesdv!~cesdv@client-188-168-43-165.spb-teleport.ru> has quit IRC01:49
*** Guest18951 is now known as Jackie_huang01:51
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has quit IRC01:56
*** bananadev <bananadev!~Potato@113.160.58.178> has joined #yocto02:10
*** fledermaus <fledermaus!~vivek@78.32.176.249> has quit IRC02:13
pevsterQuestion: If adding coreutils, do I need to manually modify the busybox config in a bbappend to remove overlap or is that handle automagically?02:56
pevster(I really just want to include a proper dd...)(02:57
*** nighty^ <nighty^!~nighty@KD119104064072.au-net.ne.jp> has joined #yocto03:00
*** nighty-_ <nighty-_!~nighty@KD119104070170.au-net.ne.jp> has quit IRC03:01
bluelightningpevster: automatically (via the alternatives system)03:02
pevsterbluelightning: Smashing thanks... Is there a way I can just cherry pick dd on it's own?03:04
bluelightningpevster: not out of the box, but you could bbappend the coreutils recipe to split it out into its own package03:05
pevsterHm... it seems to add 6M to my image :-D03:06
bluelightningpevster: another (more drastic) alternative would be to switch to ddrescue03:06
pevsterbluelightning: oooh... I've not seen that before. I take it that it's compatible with 'normal' coreutils dd?03:07
bluelightningit's functionally equivelent, but not drop-in command-line compatible03:07
pevsterthats the main problem I have - busybox doesn't support skip_bytes so having to do horrible non-block dd operations which is hideously slow03:07
*** nighty^ <nighty^!~nighty@KD119104064072.au-net.ne.jp> has quit IRC03:15
pevsterStrewth, might just be quicker to port to busybox :-D03:16
bluelightningwell, the least intrusive fix is to split coreutils packaging, and that should be trivial03:18
bluelightningyou'd just need a bbappend with PACKAGES =+ "${PN}-dd"  and  FILES_${PN}-dd = "${base_bindir}/dd"03:19
*** nighty^ <nighty^!~nighty@KD119104064072.au-net.ne.jp> has joined #yocto03:20
bluelightningprobably also ALTERNATIVE_${PN}-dd = "dd"03:21
pevsterReally? I didn;t think the coreutils recipe knew about all the internal packages?03:23
pevsterbluelightning: is that a recentish thing?03:23
pevsterOh, I see, just define it in the append...03:24
bluelightningright, in adding those you're creating a package just to split out a single file03:24
bluelightningif there are shared libs in the main package though there'll be a dependency created that drags in the main package, hopefully that's not the case03:25
bluelightning(shared libs that dd links to)03:25
pevsterI was wondering about that - I seem to be 6MB heavier and the main bins don't account for that03:25
*** [Sno] <[Sno]!~sno@ip-178-200-180-124.hsi07.unitymediagroup.de> has joined #yocto03:30
*** sno <sno!~sno@ip-178-200-180-124.hsi07.unitymediagroup.de> has quit IRC03:32
pevsterbluelightning: Tried as quoted but craps out with03:38
pevster * opkg_install_cmd: Cannot install package coreutils-dd.03:38
bluelightningfor whatever reason the file can't have gone into the package, and thus it ended up empty03:42
bluelightningyou can check this by looking under packages-split in the workdir for coreutils03:43
bluelightningyou did use =+ and not += to add the item to PACKAGES right?03:43
pevsterOh... does it need dd.coreutils not dd?03:43
pevsterYes :-)03:44
bluelightningah - yes that might be it ;)03:44
pevsterCut and pasted03:44
pevsterThat was it. Seems to have worked, you are a splendid human being, thank you!03:46
pevster(at least it seems find until I do a full clean rebuild and find something is broken...)03:46
bluelightningglad I could help :)03:50
bluelightningpevster: btw I didn't see your answer to my earlier question regarding your issues with building the image from sstate03:51
pevsterAh yes - I haven't managed to get a concise summary of WTF im doing :-) I wrote the code ages ago and it's gone cold so need to re-read it to figure it out. The dd optimisation is a side excursion that cropped up along the way !03:55
pevsters/get/write/03:55
bluelightningthe only thing I can think of is you're poking files into the sysroot (or other sstate-managed areas) with the result that the files aren't being properly saved and restored through sstate03:58
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC04:41
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto04:41
*** roric <roric!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has joined #yocto05:40
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has joined #yocto05:44
*** nighty^ <nighty^!~nighty@KD119104064072.au-net.ne.jp> has quit IRC05:55
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto06:12
*** nighty^ <nighty^!~nighty@s128236.dynamic.ppp.asahi-net.or.jp> has joined #yocto06:14
*** nighty-_ <nighty-_!~nighty@q029220.ppp.asahi-net.or.jp> has joined #yocto06:23
*** nighty^ <nighty^!~nighty@s128236.dynamic.ppp.asahi-net.or.jp> has quit IRC06:26
*** ka6sox is now known as zz_ka6sox06:28
*** zz_ka6sox is now known as Guest8389606:28
*** _stephan <_stephan!~stephan@p54BC40C1.dip0.t-ipconnect.de> has joined #yocto06:32
*** t0mmy <t0mmy!~tprrt@ram31-2-82-228-88-46.fbx.proxad.net> has quit IRC06:34
*** cesdv <cesdv!~cesdv@client-188-168-43-165.spb-teleport.ru> has joined #yocto06:38
*** roric <roric!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has quit IRC06:47
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto06:50
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has quit IRC06:56
*** marek_ <marek_!~marek@81.89.61.168.host.vnet.sk> has joined #yocto07:01
*** sno <sno!~sno@ip-178-200-180-124.hsi07.unitymediagroup.de> has joined #yocto07:13
*** [Sno] <[Sno]!~sno@ip-178-200-180-124.hsi07.unitymediagroup.de> has quit IRC07:13
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has joined #yocto07:17
*** frsc <frsc!~frsc@dslb-094-216-249-131.094.216.pools.vodafone-ip.de> has joined #yocto07:24
*** frsc <frsc!~frsc@dslb-094-216-249-131.094.216.pools.vodafone-ip.de> has quit IRC07:29
*** frsc <frsc!~frsc@dslb-094-216-249-131.094.216.pools.vodafone-ip.de> has joined #yocto07:29
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC07:30
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto07:31
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto07:37
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has joined #yocto07:38
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC07:39
*** marek_ <marek_!~marek@81.89.61.168.host.vnet.sk> has quit IRC07:44
*** sno <sno!~sno@ip-178-200-180-124.hsi07.unitymediagroup.de> has quit IRC07:46
*** nighty-_ <nighty-_!~nighty@q029220.ppp.asahi-net.or.jp> has quit IRC07:56
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-rpaqwrbxdhbkjkcm> has joined #yocto07:56
*** jbrianceau_away is now known as jbrianceau07:57
*** nighty^ <nighty^!~nighty@q029220.ppp.asahi-net.or.jp> has joined #yocto07:58
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto08:01
*** edbart <edbart!~ebartosh@192.198.151.44> has joined #yocto08:07
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has quit IRC08:09
*** edbart1 <edbart1!~ebartosh@192.198.151.44> has joined #yocto08:12
*** edbart <edbart!~ebartosh@192.198.151.44> has quit IRC08:12
*** sno <sno!~sno@rademacherexchange.de> has joined #yocto08:14
*** yann|work <yann|work!~yann@LFbn-1-1026-146.w86-247.abo.wanadoo.fr> has joined #yocto08:16
*** townxelliot <townxelliot!~ell@176.253.228.46> has joined #yocto08:16
*** jmpdelos <jmpdelos!~polk@delos.delosent.com> has quit IRC08:17
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto08:22
*** ant_work <ant_work!~ant__@95.232.250.89> has joined #yocto08:39
*** toscalix <toscalix!~agustinbe@77.231.223.194> has joined #yocto08:39
*** fl0v0 <fl0v0!~fvo@p5DDC64DC.dip0.t-ipconnect.de> has joined #yocto08:39
*** sameo <sameo!samuel@nat/intel/x-jjxprbielgjybvmy> has joined #yocto08:48
*** Ulfalizer <Ulfalizer!~ulf@217.89.178.116> has joined #yocto08:51
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto08:52
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC08:53
*** jku <jku!jku@nat/intel/x-ztyouhlxcmmmkzkm> has joined #yocto08:54
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto08:55
*** ftonello <ftonello!~quassel@81.145.202.106> has joined #yocto08:55
*** roccof <roccof!~roccof@93-51-177-218.ip268.fastwebnet.it> has joined #yocto08:55
Ulfalizersomehow a directory named the same as the ${S} directory is created in ${D} after do_install(), causing do_package_qa() to fail. any ideas what might be going on? the do_install() comes from a custom bbclass that takes ipk packages as input and extracts them. i've confirmed that the directory does not exist at the end of do_install() (with an 'ls').08:56
Ulfalizerthe contents of ${D} look fine besides that directory too08:57
*** darkspike <darkspike!6cab81a3@gateway/web/freenode/ip.108.171.129.163> has joined #yocto08:57
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has joined #yocto09:03
Ulfalizeroh, and ${S} is used to point out the directory where the .ipk files reside09:06
*** thaytan <thaytan!~thaytan@199.7.70.115.static.exetel.com.au> has quit IRC09:08
*** thaytan <thaytan!~thaytan@199.7.70.115.static.exetel.com.au> has joined #yocto09:08
*** maxin <maxin!~maxin@2001:998:22:0:85c3:adde:7abb:3402> has joined #yocto09:15
abellonisgw_: btw, I updated my kernel and it works fine, thanks!09:25
abellonihowever, when probing gma500_gfx, it switches to a resolution that is not supported by my monitor so I've just blacklisted that module09:26
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto09:28
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has joined #yocto09:29
*** jmpdelos <jmpdelos!~polk@delos.delosent.com> has joined #yocto09:30
*** bboozzoo_ is now known as bboozzoo09:32
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC09:47
*** edbart1 <edbart1!~ebartosh@192.198.151.44> has quit IRC09:53
*** edbart <edbart!~ebartosh@192.198.151.45> has joined #yocto09:55
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto09:57
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto09:59
*** belen <belen!~Adium@192.198.151.43> has joined #yocto10:02
*** edbart <edbart!~ebartosh@192.198.151.45> has quit IRC10:02
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC10:05
darkspikehi all10:06
darkspikeIs there a way to disable/mask systemd services centrally (in the image or local.conf) without using ROOTFS_POSTPROCESS_COMMAND to remove the links in rootfs ?10:06
rburtonSYSTEMD_AUTO_ENABLE_pn-somerecipe = "disable" in your local.conf might work10:07
darkspikerburton: thank you very much !10:10
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-uphqhssrnatjtbyh> has joined #yocto10:11
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto10:17
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC10:23
Ulfalizeris do_package ever supposed to create things in ${D}10:29
Ulfalizer?10:29
Ulfalizersomehow it ends up creating a directory named the same as ${S}, which do_package_qa then barfs on10:30
rburtonUlfalizer: sounds like your recipe is borked, can you share it?10:32
Ulfalizeri'll see if i can reduce it10:33
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has joined #yocto10:34
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto10:35
Ulfalizerit noexec's do_patch, do_configure, and do_compile, then does   for ipk in "${WORKDIR}/${S}"/*.ipk; do ar p "$ipk" data.tar.gz | tar xz -C "${D}"; done  in do_install, assuming S has been set up to point to a directory with IPK packages10:36
Ulfalizerstrangely it works if i use a custom variable instead of S10:36
Ulfalizerafter do_install, the contents of <pkg>/image look fine too. for some reason do_package creates a directory in it though.10:37
Ulfalizerthe contents of ${D} that is10:37
*** bananadev <bananadev!~Potato@113.160.58.178> has quit IRC10:38
*** edbart <edbart!ebartosh@nat/intel/x-plqjujyqbktiqzdo> has joined #yocto10:39
Ulfalizerand yeah, i agree that it might be a slightly dubious thing to do :)10:40
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC10:43
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto10:45
-YoctoAutoBuilder- build #555 of eclipse-plugin-kepler is complete: Failure [failed Building Eclipse Plugin Publishing Artifacts] Build details are at http://autobuilder.yoctoproject.org/main/builders/eclipse-plugin-kepler/builds/55510:51
*** lufi <lufi!~teja@49.204.240.119> has joined #yocto10:54
lufiHi Guys10:55
lufiwhich iso of yocto can emulate powerpc or cisco 4500 32 bit architecture10:55
lufi*iso/image ?10:56
Ulfalizerwhere do i find the default do_package implementation?10:58
*** fledermaus <fledermaus!~vivek@78.32.176.249> has joined #yocto11:02
Ulfalizeroh, package.bbclass11:02
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC11:02
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC11:15
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto11:16
*** belen <belen!~Adium@192.198.151.43> has quit IRC11:16
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC11:20
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto11:25
*** mtownsend1973_ <mtownsend1973_!6d44c131@gateway/web/freenode/ip.109.68.193.49> has joined #yocto11:28
*** anselmolsm <anselmolsm!~anselmols@192.55.55.37> has joined #yocto11:31
*** minipada <minipada!25508343@gateway/web/freenode/ip.37.80.131.67> has joined #yocto11:32
minipadaHello, I am trying to compile f2c for ARM and in the Makefile, I have to execute a binary generated by the Makefile as follow: "./a.out >arith.h" . An error is generated at this step saying "cannot execute binary file". Is there a way to11:33
minipadause it ?11:33
*** minipada <minipada!25508343@gateway/web/freenode/ip.37.80.131.67> has quit IRC11:38
*** belen <belen!~Adium@192.198.151.43> has joined #yocto11:40
*** minipada <minipada!4ff8ed99@gateway/web/freenode/ip.79.248.237.153> has joined #yocto11:41
*** minipada <minipada!4ff8ed99@gateway/web/freenode/ip.79.248.237.153> has joined #yocto11:42
*** ant_work <ant_work!~ant__@95.232.250.89> has quit IRC11:51
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC11:52
jaeckelI know it's not especially yocto related, but does someone of you know if the kernel supports the memmap parameter on ARM? it looks like it doesn't work for me11:53
*** anselmolsm <anselmolsm!~anselmols@192.55.55.37> has quit IRC11:59
*** anselmolsm <anselmolsm!~anselmols@200.178.71.34> has joined #yocto12:00
*** ant_work <ant_work!~ant__@95.232.250.89> has joined #yocto12:00
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-uphqhssrnatjtbyh> has left #yocto12:02
*** anselmolsm <anselmolsm!~anselmols@200.178.71.34> has quit IRC12:08
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-fmvjlqlumarqniyx> has joined #yocto12:08
*** j6V6t2 <j6V6t2!~j6V6t@rrcs-208-125-42-52.nys.biz.rr.com> has joined #yocto12:25
*** j6V6t2 is now known as j6V6t12:26
*** Snert_ <Snert_!~snert_@69-161-21-126.static.acsalaska.net> has quit IRC12:26
*** edbart <edbart!ebartosh@nat/intel/x-plqjujyqbktiqzdo> has quit IRC12:32
*** jku <jku!jku@nat/intel/x-ztyouhlxcmmmkzkm> has quit IRC12:33
*** tsramos <tsramos!tsramos@nat/intel/x-kqrlvdcfdcfbrwrg> has joined #yocto12:37
*** darkspike <darkspike!6cab81a3@gateway/web/freenode/ip.108.171.129.163> has quit IRC12:44
*** minipada <minipada!4ff8ed99@gateway/web/freenode/ip.79.248.237.153> has quit IRC12:46
*** hugovs <hugovs!~hugo@177.159.144.73> has joined #yocto12:46
abellonijaeckel: most of it is x86 only12:48
abellonisee the documentation12:48
jaeckelI already guessed so :(12:51
abellonitile and xtense also support a subset12:51
abellonixtensa12:51
abelloniyou probably don't need that anyway12:52
jaeckelwhat do you mean?12:53
jaeckelis there an alternative way to do the same?12:53
abelloniwhat do you want to achieve exactly?12:53
jaeckelreserve a memory region that it's not used by the kernel12:54
abellonidid you have a look at cma?12:55
abellonithis is probably what you want12:55
jaeckelmh12:55
jaeckelcan I use that parameter to tell the kernel to not touch a specific memory region?12:57
jaeckelI'm sharing memory with some other peripheral and I want to exclude that memory from the kernel12:58
abellonithat is the point13:00
*** egavinc <egavinc!~egavinc@40.Red-83-34-184.dynamicIP.rima-tde.net> has quit IRC13:04
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has quit IRC13:04
jaeckelcool, looks like a possible solution13:05
*** pohly <pohly!~pohly@p5DE8DC4A.dip0.t-ipconnect.de> has joined #yocto13:06
jaeckelthx13:07
*** fledermaus <fledermaus!~vivek@78.32.176.249> has quit IRC13:10
*** dgm816 <dgm816!~dgm816@unaffiliated/orkim> has quit IRC13:15
*** edbart <edbart!~ebartosh@192.198.151.44> has joined #yocto13:19
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC13:20
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto13:21
*** _stephan <_stephan!~stephan@p54BC40C1.dip0.t-ipconnect.de> has quit IRC13:23
*** edbart1 <edbart1!~ebartosh@192.198.151.44> has joined #yocto13:24
*** edbart <edbart!~ebartosh@192.198.151.44> has quit IRC13:24
*** dgm816 <dgm816!~dgm816@unaffiliated/orkim> has joined #yocto13:30
*** ddom <ddom!~ddom@ip-37-24-103-185.hsi14.unitymediagroup.de> has joined #yocto13:31
*** ftonello <ftonello!~quassel@81.145.202.106> has quit IRC13:32
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto13:33
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto13:36
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has quit IRC13:37
*** edbart1 <edbart1!~ebartosh@192.198.151.44> has quit IRC13:38
*** edbart <edbart!ebartosh@nat/intel/x-kdszrtabwedyvkab> has joined #yocto13:39
*** matteo <matteo!~matteo@openwrt/developer/matteo> has joined #yocto13:40
*** lufi <lufi!~teja@49.204.240.119> has quit IRC13:44
*** edbart1 <edbart1!ebartosh@nat/intel/x-lepnmchmvgorfvtx> has joined #yocto13:44
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC13:46
*** edbart <edbart!ebartosh@nat/intel/x-kdszrtabwedyvkab> has quit IRC13:46
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto13:48
*** jonathanmaw_ <jonathanmaw_!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto13:52
*** jonathanmaw_ <jonathanmaw_!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto13:52
*** ynezz <ynezz!ynezz@ibawizard.net> has quit IRC13:55
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC13:56
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC13:59
*** jonathanmaw_ is now known as jonathanmaw14:00
*** fledermaus <fledermaus!~vivek@93.93.133.71> has joined #yocto14:01
-YoctoAutoBuilder- build #545 of nightly-oecore is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-oecore/builds/54514:07
*** ftonello <ftonello!~quassel@81.145.202.106> has joined #yocto14:08
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto14:11
*** bengardiner <bengardiner!adc33ba2@gateway/web/freenode/ip.173.195.59.162> has joined #yocto14:11
bengardinerHi All, I'm having an issue in yocto daisy -- I hope this is the right place to ask.14:11
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC14:11
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto14:12
*** lamego <lamego!jose@nat/intel/x-qeaaiuumtmatvqqk> has joined #yocto14:14
bengardinerI think this is a bbappend + state problem. Is it even valid to do two builds against the same sstate-cache with different layers where a bbappend is included in one set of layers and not in the other?14:15
Crofton|workedbart1, there is a guy in #oe asking wic questions14:16
-YoctoAutoBuilder- build #547 of nightly-qa-systemd is complete: Failure [failed Running Sanity Tests_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-systemd/builds/54714:16
edbart1Crofton: thanks, I'll connect there.14:17
bengardinerMore specifically: I am doing builds with and without my layer included where my layer contains a bbappend of paxctl which overrides do_install. There are other recipes in my layer which will fail build if the do_install override isn't invoked. I've got these builds going in CI and sometimes I'll get failures. I'm sharing sstate but also running a shared pr service.14:18
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC14:27
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto14:29
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC14:34
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto14:34
*** ant_work <ant_work!~ant__@95.232.250.89> has quit IRC14:36
*** ant_work <ant_work!~ant__@95.232.250.89> has joined #yocto14:37
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto14:39
*** ynezz <ynezz!ynezz@ibawizard.net> has joined #yocto14:39
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has quit IRC14:39
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC14:46
*** ant_work <ant_work!~ant__@95.232.250.89> has quit IRC14:50
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto14:52
*** aehs29 <aehs29!~aehernan@134.134.137.71> has joined #yocto14:55
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC14:56
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC14:58
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC14:59
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto15:00
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto15:01
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto15:10
*** stwcx <stwcx!~stwcx@108-215-4-10.lightspeed.austtx.sbcglobal.net> has quit IRC15:11
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC15:11
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC15:17
*** madisox <madisox!~madison@216-75-232-11.static.wiline.com> has joined #yocto15:19
*** pidge <pidge!~pidge@2a02:8084:0:3000:2449:521b:3049:5df8> has joined #yocto15:24
*** bengardiner <bengardiner!adc33ba2@gateway/web/freenode/ip.173.195.59.162> has quit IRC15:34
*** mtownsend1973_ <mtownsend1973_!6d44c131@gateway/web/freenode/ip.109.68.193.49> has quit IRC15:34
*** radhus <radhus!~radhus@sevh.radhuset.org> has quit IRC15:34
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC15:34
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC15:34
*** ddom <ddom!~ddom@ip-37-24-103-185.hsi14.unitymediagroup.de> has quit IRC15:34
*** dgm816 <dgm816!~dgm816@unaffiliated/orkim> has quit IRC15:34
*** tsramos <tsramos!tsramos@nat/intel/x-kqrlvdcfdcfbrwrg> has quit IRC15:34
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-fmvjlqlumarqniyx> has quit IRC15:34
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC15:35
*** thaytan <thaytan!~thaytan@199.7.70.115.static.exetel.com.au> has quit IRC15:35
*** sameo <sameo!samuel@nat/intel/x-jjxprbielgjybvmy> has quit IRC15:35
*** toscalix <toscalix!~agustinbe@77.231.223.194> has quit IRC15:35
*** sno <sno!~sno@rademacherexchange.de> has quit IRC15:35
*** jbrianceau <jbrianceau!uid10952@gateway/web/irccloud.com/x-rpaqwrbxdhbkjkcm> has quit IRC15:35
*** abelloni <abelloni!~abelloni@2a01:e35:8bf1:a7c0:a288:b4ff:fe25:8918> has quit IRC15:35
*** grunzi <grunzi!~bill@druidia.grunzi.com> has quit IRC15:35
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC15:35
*** fitzsim <fitzsim!~user@2001:420:284a:1300:6e0b:84ff:fe09:4e9f> has quit IRC15:35
*** clsulliv <clsulliv!~clsulliv@134.134.139.77> has quit IRC15:35
*** sa2ajj_ <sa2ajj_!~quassel@dsl-espbrasgw1-54f9d7-184.dhcp.inet.fi> has quit IRC15:35
*** sgw_ <sgw_!~sgw_@c-73-164-210-189.hsd1.or.comcast.net> has quit IRC15:35
*** clopez <clopez!~tau@neutrino.es> has quit IRC15:35
*** igor1 <igor1!Igor_Stopp@nat/intel/x-ssxsmtibjxbjorir> has quit IRC15:35
*** ekil <ekil!~magnus@m37-196-47-207.cust.tele2.se> has quit IRC15:35
*** hsychla <hsychla!~hsychla@2001:6f8:12d9:13:a2b3:ccff:fefb:967b> has quit IRC15:35
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC15:35
*** jynik <jynik!~bragg@cpe-67-253-219-41.rochester.res.rr.com> has quit IRC15:35
*** fray <fray!~mhatle@192.40.192.95> has quit IRC15:35
*** joeythesaint <joeythesaint!~joe@vegas.deserted.net> has quit IRC15:35
*** adelcast <adelcast!~adelcast@130.164.62.224> has quit IRC15:35
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has quit IRC15:35
*** ynezz <ynezz!ynezz@ibawizard.net> has quit IRC15:35
*** lamego <lamego!jose@nat/intel/x-qeaaiuumtmatvqqk> has quit IRC15:35
*** ftonello <ftonello!~quassel@81.145.202.106> has quit IRC15:35
*** jmpdelos <jmpdelos!~polk@delos.delosent.com> has quit IRC15:35
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has quit IRC15:35
*** townxelliot <townxelliot!~ell@176.253.228.46> has quit IRC15:35
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has quit IRC15:35
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has quit IRC15:35
*** sjolley <sjolley!~sjolley@134.134.137.73> has quit IRC15:35
*** Guest92481 <Guest92481!~ls@eee-cidcom02.eee-tic.strath.ac.uk> has quit IRC15:35
*** pevster <pevster!~pev@95.147.121.123> has quit IRC15:35
*** loggerbox <loggerbox!~todor@134.134.139.72> has quit IRC15:35
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC15:35
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC15:35
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has quit IRC15:35
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has quit IRC15:35
*** Tenhi_ <Tenhi_!~tenhi@static.100.25.4.46.clients.your-server.de> has quit IRC15:35
*** nemunaire <nemunaire!~nemunaire@ra.nemunai.re> has quit IRC15:35
*** atenart <atenart!~atenart@nat1.foo.tf> has quit IRC15:35
*** MiskaX <MiskaX!~jussi@rankki.sonarnerd.net> has quit IRC15:35
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC15:35
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has quit IRC15:35
*** Marex <Marex!~Marex@195.140.253.167> has quit IRC15:35
*** michaelw_ <michaelw_!~michael@thos.me.uk> has quit IRC15:35
*** ulf` <ulf`!ulf@nat/intel/x-hffhwzsstzpevseb> has quit IRC15:35
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has quit IRC15:35
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has quit IRC15:35
*** paulg <paulg!~paulg@128.224.252.2> has quit IRC15:35
*** scot <scot!~scot@130.164.62.160> has quit IRC15:35
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has quit IRC15:35
*** smo <smo!canuck@162.243.242.124> has quit IRC15:35
*** tf <tf!~tomas@178.79.160.5> has quit IRC15:35
*** void-dev <void-dev!~voidweb@95.143.172.184> has quit IRC15:35
*** dholland <dholland!~quassel@5.9.49.89> has quit IRC15:35
*** madisox <madisox!~madison@216-75-232-11.static.wiline.com> has quit IRC15:35
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC15:35
*** aehs29 <aehs29!~aehernan@134.134.137.71> has quit IRC15:35
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC15:35
*** fledermaus <fledermaus!~vivek@93.93.133.71> has quit IRC15:35
*** matteo <matteo!~matteo@openwrt/developer/matteo> has quit IRC15:35
*** pohly <pohly!~pohly@p5DE8DC4A.dip0.t-ipconnect.de> has quit IRC15:35
*** hugovs <hugovs!~hugo@177.159.144.73> has quit IRC15:35
*** belen <belen!~Adium@192.198.151.43> has quit IRC15:35
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has quit IRC15:35
*** maxin <maxin!~maxin@2001:998:22:0:85c3:adde:7abb:3402> has quit IRC15:35
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC15:35
*** Ulfalizer <Ulfalizer!~ulf@217.89.178.116> has quit IRC15:35
*** fl0v0 <fl0v0!~fvo@p5DDC64DC.dip0.t-ipconnect.de> has quit IRC15:35
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC15:35
*** nighty^ <nighty^!~nighty@q029220.ppp.asahi-net.or.jp> has quit IRC15:35
*** cesdv <cesdv!~cesdv@client-188-168-43-165.spb-teleport.ru> has quit IRC15:35
*** DarkKnight <DarkKnight!~quassel@HSI-KBW-095-208-243-227.hsi5.kabel-badenwuerttemberg.de> has quit IRC15:35
*** Net147 <Net147!~Net147@unaffiliated/net147> has quit IRC15:35
*** joshuagl <joshuagl!~joshuagl@host217-44-16-108.range217-44.btcentralplus.com> has quit IRC15:35
*** JEEB <JEEB!~jeeb@unaffiliated/jeeb> has quit IRC15:35
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-sspeykepkzavmmip> has quit IRC15:35
*** ntl <ntl!~ntl@99-127-51-4.lightspeed.austtx.sbcglobal.net> has quit IRC15:35
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC15:35
*** radzy <radzy!~radzy@unknown-216-78.windriver.com> has quit IRC15:35
*** Snert <Snert!~LoginName@65-70-174-206.gci.net> has quit IRC15:35
*** moto-timo <moto-timo!~timo@fsf/member/moto-timo> has quit IRC15:35
*** jedix <jedix!~jedix@24-246-5-195.cable.teksavvy.com> has quit IRC15:35
*** kergoth <kergoth!~kergoth@107.170.225.75> has quit IRC15:35
*** georgem <georgem!~georgem@mail.novatech-llc.com> has quit IRC15:35
*** silviof <silviof!~silviof@unaffiliated/silviof> has quit IRC15:35
*** smferris <smferris!~smferris@192.95.10.156> has quit IRC15:35
*** jmleo <jmleo!~jmleo@105-197-190-109.dsl.ovh.fr> has quit IRC15:35
*** el_robin <el_robin!~el_robin@ns3279252.ip-5-39-92.eu> has quit IRC15:35
*** auke- <auke-!~auke@dhcp-077-251-218-021.chello.nl> has quit IRC15:35
*** tyler-baker <tyler-baker!tyler-bake@gateway/shell/linaro/x-zmewzuqzsggtmfcc> has quit IRC15:35
*** ajtag <ajtag!~ajtag@cpc10-lee211-2-0-cust124.7-1.cable.virginm.net> has quit IRC15:35
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has quit IRC15:35
*** halstead <halstead!~halstead@drupal.org/user/301087/view> has quit IRC15:35
*** falstaff__ <falstaff__!~quassel@83.150.42.223> has quit IRC15:35
*** warthog9 <warthog9!~warthog9@149.20.54.19> has quit IRC15:35
*** destrudo <destrudo!~destrudo@64.142.74.180> has quit IRC15:35
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has quit IRC15:35
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has quit IRC15:35
*** Tenhi <Tenhi!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has quit IRC15:35
*** tripzero <tripzero!tripzero@nat/intel/x-mlstvckmjmvjjtol> has quit IRC15:35
*** marquiz <marquiz!~marquiz@134.134.137.71> has quit IRC15:35
*** flynn378 <flynn378!sid63564@gateway/web/irccloud.com/x-rbiohaplktoodnee> has quit IRC15:35
*** zibri <zibri!zibri@rfc1459.se> has quit IRC15:35
*** rdenis <rdenis!sid16562@gateway/web/irccloud.com/x-qmaeuyndgmeymjxr> has quit IRC15:35
*** edbart1 <edbart1!ebartosh@nat/intel/x-lepnmchmvgorfvtx> has quit IRC15:35
*** j6V6t <j6V6t!~j6V6t@rrcs-208-125-42-52.nys.biz.rr.com> has quit IRC15:35
*** roccof <roccof!~roccof@93-51-177-218.ip268.fastwebnet.it> has quit IRC15:35
*** yann|work <yann|work!~yann@LFbn-1-1026-146.w86-247.abo.wanadoo.fr> has quit IRC15:35
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has quit IRC15:35
*** frsc <frsc!~frsc@dslb-094-216-249-131.094.216.pools.vodafone-ip.de> has quit IRC15:35
*** Pixionus <Pixionus!~Pixionus@unaffiliated/pixionus> has quit IRC15:35
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC15:35
*** kscherer <kscherer!~kscherer@128.224.252.2> has quit IRC15:35
*** denix <denix!~denix@100.15.86.14> has quit IRC15:35
*** Crofton <Crofton!~balister@pool-108-44-110-59.ronkva.east.verizon.net> has quit IRC15:35
*** benjamirc <benjamirc!~besquive@134.134.139.70> has quit IRC15:35
*** Crofton|work <Crofton|work!~balister@pool-108-44-110-59.ronkva.east.verizon.net> has quit IRC15:35
*** jchonig <jchonig!~quassel@firewall.honig.net> has quit IRC15:35
*** tismith <tismith!~toby@203.62.184.110> has quit IRC15:35
*** bboozzoo <bboozzoo!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has quit IRC15:35
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has quit IRC15:35
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has quit IRC15:35
*** wfan_ <wfan_!~wfan@106.120.101.38> has quit IRC15:35
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC15:35
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC15:35
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC15:35
*** rtollert_ <rtollert_!~rtollert@130.164.62.197> has quit IRC15:35
*** sledges <sledges!~sleleiva@unaffiliated/sledgeas> has quit IRC15:35
*** xerent_ <xerent_!xerent@compose.lokalen.org> has quit IRC15:35
*** csmart <csmart!~quassel@45.55.219.131> has quit IRC15:35
*** hundeboll <hundeboll!~hundeboll@open-mesh.org/catwoman/hundeboll> has quit IRC15:35
*** jaeckel <jaeckel!~jaeckel@unaffiliated/jaeckel> has quit IRC15:35
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC15:35
*** ryansturmer <ryansturmer!~ryansturm@cpe-75-189-150-192.nc.res.rr.com> has quit IRC15:35
*** hanDerPeder <hanDerPeder!~peder@li307-49.members.linode.com> has quit IRC15:35
*** ir2ivps6___ <ir2ivps6___!~ir2ivps6@f9.a2.559e.ip4.static.sl-reverse.com> has quit IRC15:35
*** reanguiano <reanguiano!~devnull@godel.ricardoanguiano.com> has quit IRC15:35
*** seezer <seezer!quassel@quassel/developer/seezer> has quit IRC15:35
*** Saur <Saur!pkj@nat/axis/x-mtfhfpcnfaabmvof> has quit IRC15:35
*** smartin_ <smartin_!~smartin@195.190.86.18> has quit IRC15:35
*** LetoThe2nd <LetoThe2nd!~jd@unaffiliated/letothe2nd> has quit IRC15:35
*** mago_ <mago_!~mago@88.131.56.168> has quit IRC15:35
*** rahc <rahc!rah@pasanda.collabora.co.uk> has quit IRC15:35
*** roxell <roxell!~roxell@linaro/roxell> has quit IRC15:35
*** rci <rci!~rci@70-90-78-101-BusName-mn.hfc.comcastbusiness.net> has quit IRC15:35
*** cjp256 <cjp256!~cjp256@chrispatterson.net> has quit IRC15:35
*** vdehors__ <vdehors__!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has quit IRC15:35
*** slips <slips!~slips@156.179.164.82.customer.cdi.no> has quit IRC15:35
*** otavio <otavio!~otavio@debian/developer/otavio> has quit IRC15:35
*** lexano <lexano!~lexano@CPEa021b7ac59c9-CMbcc81006f6ee.cpe.net.cable.rogers.com> has quit IRC15:35
*** deception <deception!~deception@unaffiliated/deception> has quit IRC15:35
*** andrewsh <andrewsh!~andrewsh@shadura.me> has quit IRC15:35
*** Amynka <Amynka!~frozen@gentoo/developer/amynka> has quit IRC15:35
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has quit IRC15:35
*** blueness <blueness!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC15:35
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has quit IRC15:35
*** pedroalvarez <pedroalvarez!~pedroalva@ec2-52-27-154-6.us-west-2.compute.amazonaws.com> has quit IRC15:35
*** zeddii <zeddii!~bruce@128.224.252.2> has quit IRC15:35
*** neverpanic <neverpanic!~clemens@towel.neverpanic.de> has quit IRC15:35
*** icanicant <icanicant!~icanicant@195.88.236.129> has quit IRC15:35
*** damien_l <damien_l!~damien@95.ip-92-222-45.eu> has quit IRC15:35
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC15:35
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has quit IRC15:35
*** fabo <fabo!~fabo@linaro/fabo> has quit IRC15:35
*** gabrbedd <gabrbedd!~beddingfi@li680-65.members.linode.com> has quit IRC15:35
*** pidge <pidge!~pidge@2a02:8084:0:3000:2449:521b:3049:5df8> has quit IRC15:35
*** bbhoss <bbhoss!sid18216@gateway/web/irccloud.com/x-wxabyysrkodtdxii> has quit IRC15:35
*** xulfer <xulfer!xulfer@cheapbsd.net> has quit IRC15:35
*** LoganG <LoganG!~LoganG@2607:5300:60:47bc:dead:beef:dead:beef> has quit IRC15:35
*** jcreekmore <jcreekmore!~jcreekmor@2601:7c0:c300:dad6:21d:92ff:fef3:50e> has quit IRC15:35
*** Cardoe <Cardoe!~Cardoe@gentoo/developer/Cardoe> has quit IRC15:35
*** captainigloo <captainigloo!~captainig@2001:41d0:8:114b::1> has quit IRC15:35
*** Guest83896 <Guest83896!ka6sox@nasadmin/ka6sox> has quit IRC15:35
*** mrsan- <mrsan-!mrsan@2a00:1a28:1157:42::5> has quit IRC15:35
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has quit IRC15:35
*** rodgort <rodgort!~rodgort@2607:5300:100:200::160d> has quit IRC15:35
*** kscherer <kscherer!~kscherer@128.224.252.2> has joined #yocto15:39
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto15:39
*** silviof <silviof!~silviof@unaffiliated/silviof> has joined #yocto15:39
*** kergoth <kergoth!~kergoth@107.170.225.75> has joined #yocto15:39
*** jedix <jedix!~jedix@24-246-5-195.cable.teksavvy.com> has joined #yocto15:39
*** moto-timo <moto-timo!~timo@fsf/member/moto-timo> has joined #yocto15:39
*** radzy <radzy!~radzy@unknown-216-78.windriver.com> has joined #yocto15:39
*** Snert <Snert!~LoginName@65-70-174-206.gci.net> has joined #yocto15:39
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto15:39
*** ntl <ntl!~ntl@99-127-51-4.lightspeed.austtx.sbcglobal.net> has joined #yocto15:39
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-sspeykepkzavmmip> has joined #yocto15:39
*** JEEB <JEEB!~jeeb@unaffiliated/jeeb> has joined #yocto15:39
*** joshuagl <joshuagl!~joshuagl@host217-44-16-108.range217-44.btcentralplus.com> has joined #yocto15:39
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto15:39
*** DarkKnight <DarkKnight!~quassel@HSI-KBW-095-208-243-227.hsi5.kabel-badenwuerttemberg.de> has joined #yocto15:39
*** cesdv <cesdv!~cesdv@client-188-168-43-165.spb-teleport.ru> has joined #yocto15:39
*** nighty^ <nighty^!~nighty@q029220.ppp.asahi-net.or.jp> has joined #yocto15:39
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto15:39
*** fl0v0 <fl0v0!~fvo@p5DDC64DC.dip0.t-ipconnect.de> has joined #yocto15:39
*** Ulfalizer <Ulfalizer!~ulf@217.89.178.116> has joined #yocto15:39
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto15:39
*** maxin <maxin!~maxin@2001:998:22:0:85c3:adde:7abb:3402> has joined #yocto15:39
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has joined #yocto15:39
*** belen <belen!~Adium@192.198.151.43> has joined #yocto15:39
*** hugovs <hugovs!~hugo@177.159.144.73> has joined #yocto15:39
*** pohly <pohly!~pohly@p5DE8DC4A.dip0.t-ipconnect.de> has joined #yocto15:39
*** matteo <matteo!~matteo@openwrt/developer/matteo> has joined #yocto15:39
*** fledermaus <fledermaus!~vivek@93.93.133.71> has joined #yocto15:39
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto15:39
*** aehs29 <aehs29!~aehernan@134.134.137.71> has joined #yocto15:39
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto15:39
*** madisox <madisox!~madison@216-75-232-11.static.wiline.com> has joined #yocto15:39
*** smferris <smferris!~smferris@192.95.10.156> has joined #yocto15:39
*** jmleo <jmleo!~jmleo@105-197-190-109.dsl.ovh.fr> has joined #yocto15:39
*** el_robin <el_robin!~el_robin@ns3279252.ip-5-39-92.eu> has joined #yocto15:39
*** auke- <auke-!~auke@dhcp-077-251-218-021.chello.nl> has joined #yocto15:39
*** tyler-baker <tyler-baker!tyler-bake@gateway/shell/linaro/x-zmewzuqzsggtmfcc> has joined #yocto15:39
*** ajtag <ajtag!~ajtag@cpc10-lee211-2-0-cust124.7-1.cable.virginm.net> has joined #yocto15:39
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has joined #yocto15:39
*** halstead <halstead!~halstead@drupal.org/user/301087/view> has joined #yocto15:39
*** falstaff__ <falstaff__!~quassel@83.150.42.223> has joined #yocto15:39
*** georgem <georgem!~georgem@mail.novatech-llc.com> has joined #yocto15:39
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto15:39
*** ddom <ddom!~ddom@ip-37-24-103-185.hsi14.unitymediagroup.de> has joined #yocto15:39
*** dgm816 <dgm816!~dgm816@unaffiliated/orkim> has joined #yocto15:39
*** tsramos <tsramos!tsramos@nat/intel/x-kqrlvdcfdcfbrwrg> has joined #yocto15:39
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-fmvjlqlumarqniyx> has joined #yocto15:39
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto15:39
*** thaytan <thaytan!~thaytan@199.7.70.115.static.exetel.com.au> has joined #yocto15:39
*** sameo <sameo!samuel@nat/intel/x-jjxprbielgjybvmy> has joined #yocto15:39
*** toscalix <toscalix!~agustinbe@77.231.223.194> has joined #yocto15:39
*** sno <sno!~sno@rademacherexchange.de> has joined #yocto15:39
*** jbrianceau <jbrianceau!uid10952@gateway/web/irccloud.com/x-rpaqwrbxdhbkjkcm> has joined #yocto15:39
*** abelloni <abelloni!~abelloni@2a01:e35:8bf1:a7c0:a288:b4ff:fe25:8918> has joined #yocto15:39
*** grunzi <grunzi!~bill@druidia.grunzi.com> has joined #yocto15:39
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto15:39
*** fitzsim <fitzsim!~user@2001:420:284a:1300:6e0b:84ff:fe09:4e9f> has joined #yocto15:39
*** clsulliv <clsulliv!~clsulliv@134.134.139.77> has joined #yocto15:39
*** sa2ajj_ <sa2ajj_!~quassel@dsl-espbrasgw1-54f9d7-184.dhcp.inet.fi> has joined #yocto15:39
*** sgw_ <sgw_!~sgw_@c-73-164-210-189.hsd1.or.comcast.net> has joined #yocto15:39
*** clopez <clopez!~tau@neutrino.es> has joined #yocto15:39
*** igor1 <igor1!Igor_Stopp@nat/intel/x-ssxsmtibjxbjorir> has joined #yocto15:39
*** ekil <ekil!~magnus@m37-196-47-207.cust.tele2.se> has joined #yocto15:39
*** hsychla <hsychla!~hsychla@2001:6f8:12d9:13:a2b3:ccff:fefb:967b> has joined #yocto15:39
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto15:39
*** jynik <jynik!~bragg@cpe-67-253-219-41.rochester.res.rr.com> has joined #yocto15:39
*** fray <fray!~mhatle@192.40.192.95> has joined #yocto15:39
*** joeythesaint <joeythesaint!~joe@vegas.deserted.net> has joined #yocto15:39
*** adelcast <adelcast!~adelcast@130.164.62.224> has joined #yocto15:39
*** mario-goulart <mario-goulart!~user@email.parenteses.org> has joined #yocto15:39
*** pedroalvarez <pedroalvarez!~pedroalva@ec2-52-27-154-6.us-west-2.compute.amazonaws.com> has joined #yocto15:40
*** vdehors__ <vdehors__!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto15:40
*** slips <slips!~slips@156.179.164.82.customer.cdi.no> has joined #yocto15:40
*** otavio <otavio!~otavio@debian/developer/otavio> has joined #yocto15:40
*** deception <deception!~deception@unaffiliated/deception> has joined #yocto15:40
*** lexano <lexano!~lexano@CPEa021b7ac59c9-CMbcc81006f6ee.cpe.net.cable.rogers.com> has joined #yocto15:40
*** andrewsh <andrewsh!~andrewsh@shadura.me> has joined #yocto15:40
*** Amynka <Amynka!~frozen@gentoo/developer/amynka> has joined #yocto15:40
*** Bryanstein <Bryanstein!~Bryanstei@shellium/admin/bryanstein> has joined #yocto15:40
*** blueness <blueness!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto15:40
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has joined #yocto15:40
*** zeddii <zeddii!~bruce@128.224.252.2> has joined #yocto15:40
*** neverpanic <neverpanic!~clemens@towel.neverpanic.de> has joined #yocto15:40
*** damien_l <damien_l!~damien@95.ip-92-222-45.eu> has joined #yocto15:40
*** icanicant <icanicant!~icanicant@195.88.236.129> has joined #yocto15:40
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto15:40
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has joined #yocto15:40
*** fabo <fabo!~fabo@linaro/fabo> has joined #yocto15:40
*** gabrbedd <gabrbedd!~beddingfi@li680-65.members.linode.com> has joined #yocto15:40
*** radhus <radhus!~radhus@sevh.radhuset.org> has joined #yocto15:42
*** bengardiner <bengardiner!adc33ba2@gateway/web/freenode/ip.173.195.59.162> has joined #yocto15:42
*** mtownsend1973_ <mtownsend1973_!6d44c131@gateway/web/freenode/ip.109.68.193.49> has joined #yocto15:42
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has joined #yocto15:42
*** destrudo <destrudo!~destrudo@64.142.74.180> has joined #yocto15:42
*** Gintaro <Gintaro!~gintaro@geertswei.nl> has joined #yocto15:42
*** Tenhi <Tenhi!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has joined #yocto15:42
*** tripzero <tripzero!tripzero@nat/intel/x-mlstvckmjmvjjtol> has joined #yocto15:42
*** marquiz <marquiz!~marquiz@134.134.137.71> has joined #yocto15:42
*** flynn378 <flynn378!sid63564@gateway/web/irccloud.com/x-rbiohaplktoodnee> has joined #yocto15:42
*** zibri <zibri!zibri@rfc1459.se> has joined #yocto15:42
*** rdenis <rdenis!sid16562@gateway/web/irccloud.com/x-qmaeuyndgmeymjxr> has joined #yocto15:42
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has quit IRC15:43
*** Tenhi <Tenhi!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has quit IRC15:43
*** pidge <pidge!~pidge@2a02:8084:0:3000:2449:521b:3049:5df8> has joined #yocto15:44
*** bbhoss <bbhoss!sid18216@gateway/web/irccloud.com/x-wxabyysrkodtdxii> has joined #yocto15:44
*** xulfer <xulfer!xulfer@cheapbsd.net> has joined #yocto15:44
*** LoganG <LoganG!~LoganG@2607:5300:60:47bc:dead:beef:dead:beef> has joined #yocto15:44
*** jcreekmore <jcreekmore!~jcreekmor@2601:7c0:c300:dad6:21d:92ff:fef3:50e> has joined #yocto15:44
*** Cardoe <Cardoe!~Cardoe@gentoo/developer/Cardoe> has joined #yocto15:44
*** captainigloo <captainigloo!~captainig@2001:41d0:8:114b::1> has joined #yocto15:44
*** Guest83896 <Guest83896!ka6sox@nasadmin/ka6sox> has joined #yocto15:44
*** mrsan- <mrsan-!mrsan@2a00:1a28:1157:42::5> has joined #yocto15:44
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has joined #yocto15:44
*** rodgort <rodgort!~rodgort@2607:5300:100:200::160d> has joined #yocto15:44
*** armpit <armpit!~akuster@2601:202:4000:1239:c192:effd:6f7c:ab2b> has joined #yocto15:48
*** psadro <psadro!~Thunderbi@216.234.148.134> has quit IRC15:51
kergothbengardiner: sstate uses metadata checksumming. if the variables used by a task change, then the checksum changes, and that sstate won't be used. so there's nothing wrong with bbappend and sstate interaction whatsoever15:51
kergothbut you can use bitbake-dumpsig and bitbake-diffsigs to examine and compare the .sigdata/.siginfo files from your sstate cache or stamps dir15:52
*** Tenhi <Tenhi!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has joined #yocto15:59
*** ynezz <ynezz!ynezz@ibawizard.net> has joined #yocto15:59
*** lamego <lamego!jose@nat/intel/x-qeaaiuumtmatvqqk> has joined #yocto15:59
*** ftonello <ftonello!~quassel@81.145.202.106> has joined #yocto15:59
*** jmpdelos <jmpdelos!~polk@delos.delosent.com> has joined #yocto15:59
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has joined #yocto15:59
*** townxelliot <townxelliot!~ell@176.253.228.46> has joined #yocto15:59
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has joined #yocto15:59
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has joined #yocto15:59
*** sjolley <sjolley!~sjolley@134.134.137.73> has joined #yocto15:59
*** Guest92481 <Guest92481!~ls@eee-cidcom02.eee-tic.strath.ac.uk> has joined #yocto15:59
*** pevster <pevster!~pev@95.147.121.123> has joined #yocto15:59
*** loggerbox <loggerbox!~todor@134.134.139.72> has joined #yocto15:59
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto15:59
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto15:59
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has joined #yocto15:59
*** nemunaire <nemunaire!~nemunaire@ra.nemunai.re> has joined #yocto15:59
*** atenart <atenart!~atenart@nat1.foo.tf> has joined #yocto15:59
*** MiskaX <MiskaX!~jussi@rankki.sonarnerd.net> has joined #yocto15:59
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has joined #yocto15:59
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has joined #yocto15:59
*** Marex <Marex!~Marex@195.140.253.167> has joined #yocto15:59
*** michaelw_ <michaelw_!~michael@thos.me.uk> has joined #yocto15:59
*** ulf` <ulf`!ulf@nat/intel/x-hffhwzsstzpevseb> has joined #yocto15:59
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has joined #yocto15:59
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has joined #yocto15:59
*** paulg <paulg!~paulg@128.224.252.2> has joined #yocto15:59
*** scot <scot!~scot@130.164.62.160> has joined #yocto15:59
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto15:59
*** smo <smo!canuck@162.243.242.124> has joined #yocto15:59
*** tf <tf!~tomas@178.79.160.5> has joined #yocto15:59
*** void-dev <void-dev!~voidweb@95.143.172.184> has joined #yocto15:59
*** dholland <dholland!~quassel@5.9.49.89> has joined #yocto15:59
*** belen <belen!~Adium@192.198.151.43> has quit IRC16:02
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto16:03
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC16:09
*** Tenhi_ <Tenhi_!~tenhi@static.100.25.4.46.clients.your-server.de> has joined #yocto16:09
*** Tenhi <Tenhi!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has quit IRC16:09
*** ynezz <ynezz!ynezz@ibawizard.net> has quit IRC16:09
*** lamego <lamego!jose@nat/intel/x-qeaaiuumtmatvqqk> has quit IRC16:09
*** ftonello <ftonello!~quassel@81.145.202.106> has quit IRC16:09
*** jmpdelos <jmpdelos!~polk@delos.delosent.com> has quit IRC16:09
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has quit IRC16:09
*** townxelliot <townxelliot!~ell@176.253.228.46> has quit IRC16:09
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has quit IRC16:09
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has quit IRC16:09
*** sjolley <sjolley!~sjolley@134.134.137.73> has quit IRC16:09
*** Guest92481 <Guest92481!~ls@eee-cidcom02.eee-tic.strath.ac.uk> has quit IRC16:09
*** pevster <pevster!~pev@95.147.121.123> has quit IRC16:09
*** loggerbox <loggerbox!~todor@134.134.139.72> has quit IRC16:09
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC16:09
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC16:09
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has quit IRC16:09
*** nemunaire <nemunaire!~nemunaire@ra.nemunai.re> has quit IRC16:09
*** atenart <atenart!~atenart@nat1.foo.tf> has quit IRC16:09
*** MiskaX <MiskaX!~jussi@rankki.sonarnerd.net> has quit IRC16:09
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC16:09
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has quit IRC16:09
*** Marex <Marex!~Marex@195.140.253.167> has quit IRC16:09
*** michaelw_ <michaelw_!~michael@thos.me.uk> has quit IRC16:09
*** ulf` <ulf`!ulf@nat/intel/x-hffhwzsstzpevseb> has quit IRC16:09
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has quit IRC16:09
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has quit IRC16:09
*** paulg <paulg!~paulg@128.224.252.2> has quit IRC16:09
*** scot <scot!~scot@130.164.62.160> has quit IRC16:09
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has quit IRC16:09
*** smo <smo!canuck@162.243.242.124> has quit IRC16:09
*** tf <tf!~tomas@178.79.160.5> has quit IRC16:09
*** void-dev <void-dev!~voidweb@95.143.172.184> has quit IRC16:09
*** dholland <dholland!~quassel@5.9.49.89> has quit IRC16:09
bengardinerthanks, kergoth.16:14
bengardinerI change BBCLASSEXTEND, DEPENDS (and I even tried a hack to change PR) in the bbappend file16:15
bengardinerso logically sstate shouldn't be blocking the rebuild. must be something else then?16:15
kergothi use a single sstate cache for tons of yocto versions, machines, distros, etc, there's no bad interaction, any changes invalidate/change the sstate, never reused when it shouldn't be16:16
kergothnow, the opposite it sometimes true, it rebuilds more than i want sometimes, but better that than the alternative16:16
kergothso yes, its unlikely for that to be a problem16:17
kergothif your bbappend isn't being applied, either your layer isn't enabled, your BBFILES in your layer.conf is incorrect, or the path to the bbappend doesn't match up with the BBFILES in the layer.conf16:17
kergothbitbake-layers show-appends may be of use16:17
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC16:23
mario-goulartor the bbappend's version doesn't match the recipe version.16:23
kergothgood point. bitbake-layers show-appends will warn about that16:25
pedroalvarezHi! Is it possible to generate a rawdisk image using bitbake? My build has generated a ext3 rootfs and a kernels, but I wonder if yocto can put them together  with a bootloader16:25
kergothif an append exists for a non-preferred recipe but not a preferred recipe16:25
pedroalvarez(for a x86 VM)16:25
bengardiner"[...] it rebuilds more than I want sometimes [...]" -- that's interesting. Because I run the build jobs in parrallel in a CI server16:25
kergothpedroalvarez: wic is the best tool for that16:25
bengardinerall contributing to the sstate cache. maybe the build without the layer is winning the race to add to the cache16:26
kergothno, that wouldn't make sense16:26
pedroalvarezkergoth: thanks, I'll have a look16:26
kergothagain, if the append changes the metadata, it changes the checksum, and both builds will emit different sstates16:26
bengardinermario-goulart: thanks, I'll check for a warning about a missing bbappend target16:26
kergoththere's no race, they write entirely different filenames16:26
bengardinerkergoth: ok then; I'm glad you're lending your expertise. Thank you again16:27
kergothbengardiner: it errs on the side of caution. if recipe A is changed and recipes B and C depend on A, B and C will also be rebuilt after A is rebuilt. this is obviously needed to handle cases where e.g. the library ABI changes, but of course it also means a change to a comment in do_install will ripple outward through the dependency graph :)16:27
kergothbut better that than possibly risking brokenness due to using out of date stuff and not relinking16:27
bengardinermakes sense16:28
kergothideally in the long term we'll be able to recognize when the output of a task hasn't changed when the input has, but to do that we'd need heuristic analysis of the output, or reproducible bit-by-bit builds16:28
mario-goulart"bitbake -DDD" can also be handy for debugging (you probably want to redirect the output to a file)16:28
bengardinerok -- so at least now I know I'm not attempting something that is flawed at the outset.16:29
bengardinerI'm going to go have some lunch. I'll pop back and report if I find anything or not. Thanks for all your advice so far16:30
pedroalvarezoh, good to see that sharing sstate dir for various builds works for people here16:31
pedroalvarezI'm trying to create some CI pipelines and that was one of my ideas to try to save some time16:31
kergothwe use it for our incremental CI builds, a common sstate cache for both the automated builds and for use by the engineers16:32
kergoththen do periodic full builds from scratch16:32
kergothmuch, much, *much* faster16:32
frayyup.. we do the same.. this is what we consider to be best practice..16:32
fray(with the understanding engineers don't HAVE to use the cache.. since it's juts that a cache)16:33
kergothindeed16:33
kergothit's so nice though, since the CI machines tend to bef aster than individual engineer workstations16:33
kergothbootstraps progress on tasks16:33
kergothnaturally depends, but..16:33
mario-goulartHow do you guys usually share the sstate cache?  NFS?16:34
pedroalvarezyeah, I was pondering how to share the sstate cache16:34
pedroalvarezsnap16:34
frayboth NFS and http16:34
frayNFS for local users.. http for some special cases16:34
fray(http is MUCH slower, so it really is special cases)16:34
pedroalvarezand does bitbake handles that or engineers have to fetch it themselves?16:34
*** cjp256 <cjp256!~cjp256@chrispatterson.net> has joined #yocto16:34
*** rci <rci!~rci@70-90-78-101-BusName-mn.hfc.comcastbusiness.net> has joined #yocto16:34
*** roxell <roxell!~roxell@linaro/roxell> has joined #yocto16:34
*** rahc <rahc!rah@pasanda.collabora.co.uk> has joined #yocto16:34
*** mago_ <mago_!~mago@88.131.56.168> has joined #yocto16:34
*** LetoThe2nd <LetoThe2nd!~jd@unaffiliated/letothe2nd> has joined #yocto16:34
*** smartin_ <smartin_!~smartin@195.190.86.18> has joined #yocto16:34
*** Saur <Saur!pkj@nat/axis/x-mtfhfpcnfaabmvof> has joined #yocto16:34
*** seezer <seezer!quassel@quassel/developer/seezer> has joined #yocto16:34
*** reanguiano <reanguiano!~devnull@godel.ricardoanguiano.com> has joined #yocto16:34
*** ir2ivps6___ <ir2ivps6___!~ir2ivps6@f9.a2.559e.ip4.static.sl-reverse.com> has joined #yocto16:34
*** hanDerPeder <hanDerPeder!~peder@li307-49.members.linode.com> has joined #yocto16:34
*** ryansturmer <ryansturmer!~ryansturm@cpe-75-189-150-192.nc.res.rr.com> has joined #yocto16:34
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto16:34
*** jaeckel <jaeckel!~jaeckel@unaffiliated/jaeckel> has joined #yocto16:34
*** hundeboll <hundeboll!~hundeboll@open-mesh.org/catwoman/hundeboll> has joined #yocto16:34
*** csmart <csmart!~quassel@45.55.219.131> has joined #yocto16:34
*** xerent_ <xerent_!xerent@compose.lokalen.org> has joined #yocto16:34
*** sledges <sledges!~sleleiva@unaffiliated/sledgeas> has joined #yocto16:34
*** rtollert_ <rtollert_!~rtollert@130.164.62.197> has joined #yocto16:34
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto16:34
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto16:34
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto16:34
*** wfan_ <wfan_!~wfan@106.120.101.38> has joined #yocto16:34
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has joined #yocto16:34
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has joined #yocto16:34
*** bboozzoo <bboozzoo!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has joined #yocto16:34
*** tismith <tismith!~toby@203.62.184.110> has joined #yocto16:34
*** jchonig <jchonig!~quassel@firewall.honig.net> has joined #yocto16:34
*** Crofton|work <Crofton|work!~balister@pool-108-44-110-59.ronkva.east.verizon.net> has joined #yocto16:34
*** benjamirc <benjamirc!~besquive@134.134.139.70> has joined #yocto16:34
*** Crofton <Crofton!~balister@pool-108-44-110-59.ronkva.east.verizon.net> has joined #yocto16:34
*** denix <denix!~denix@100.15.86.14> has joined #yocto16:34
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto16:34
*** frsc <frsc!~frsc@dslb-094-216-249-131.094.216.pools.vodafone-ip.de> has joined #yocto16:34
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto16:34
*** roccof <roccof!~roccof@93-51-177-218.ip268.fastwebnet.it> has joined #yocto16:34
*** j6V6t <j6V6t!~j6V6t@rrcs-208-125-42-52.nys.biz.rr.com> has joined #yocto16:34
*** edbart1 <edbart1!ebartosh@nat/intel/x-lepnmchmvgorfvtx> has joined #yocto16:34
*** Pixionus <Pixionus!~Pixionus@wsip-98-191-121-244.ph.ph.cox.net> has joined #yocto16:34
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has joined #yocto16:34
*** berton <berton!~fabio@201.22.227.56> has joined #yocto16:34
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto16:34
*** belen1 <belen1!Adium@nat/intel/x-seujadaaiebuihva> has joined #yocto16:34
*** Tenhi <Tenhi!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has joined #yocto16:34
*** ynezz <ynezz!ynezz@ibawizard.net> has joined #yocto16:34
*** lamego <lamego!jose@nat/intel/x-qeaaiuumtmatvqqk> has joined #yocto16:34
*** ftonello <ftonello!~quassel@81.145.202.106> has joined #yocto16:34
*** jmpdelos <jmpdelos!~polk@delos.delosent.com> has joined #yocto16:34
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has joined #yocto16:34
*** townxelliot <townxelliot!~ell@176.253.228.46> has joined #yocto16:34
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has joined #yocto16:34
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has joined #yocto16:34
*** sjolley <sjolley!~sjolley@134.134.137.73> has joined #yocto16:34
*** Guest92481 <Guest92481!~ls@eee-cidcom02.eee-tic.strath.ac.uk> has joined #yocto16:34
*** pevster <pevster!~pev@95.147.121.123> has joined #yocto16:34
*** loggerbox <loggerbox!~todor@134.134.139.72> has joined #yocto16:34
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto16:34
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto16:34
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has joined #yocto16:34
*** nemunaire <nemunaire!~nemunaire@ra.nemunai.re> has joined #yocto16:34
*** atenart <atenart!~atenart@nat1.foo.tf> has joined #yocto16:34
*** MiskaX <MiskaX!~jussi@rankki.sonarnerd.net> has joined #yocto16:34
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has joined #yocto16:34
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has joined #yocto16:34
*** Marex <Marex!~Marex@195.140.253.167> has joined #yocto16:34
*** michaelw_ <michaelw_!~michael@thos.me.uk> has joined #yocto16:34
*** ulf` <ulf`!ulf@nat/intel/x-hffhwzsstzpevseb> has joined #yocto16:34
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has joined #yocto16:34
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has joined #yocto16:34
*** paulg <paulg!~paulg@128.224.252.2> has joined #yocto16:34
*** scot <scot!~scot@130.164.62.160> has joined #yocto16:34
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto16:34
*** smo <smo!canuck@162.243.242.124> has joined #yocto16:34
*** tf <tf!~tomas@178.79.160.5> has joined #yocto16:34
*** void-dev <void-dev!~voidweb@95.143.172.184> has joined #yocto16:34
*** dholland <dholland!~quassel@5.9.49.89> has joined #yocto16:34
frayit's automatic if the engineers has enble it16:34
pedroalvarezoh, that's interesting16:35
kergothi think we're mostly using http, but we should switch to nfs16:35
kergothpedroalvarez: just set SSTATE_MIRRORS appropriately16:35
frayNFS has reliability issues http doesn't16:35
fraythats why I said "local users"  ;)16:36
kergothyeah, i wouldn't try using it over our vpn..16:36
kergoth:)16:36
mario-goulartDoes anybody use distcc for building stuff with bitbake?16:36
fraypeople do it, but I always tell them don't..16:36
mario-goulart:-)16:36
frayoften it takes longer time to use distcc then just compile and cache (sstate-cache)16:36
pedroalvarezkergoth: noted, tvm16:36
frayccache is another one I caution against..16:36
kergothmario-goulart: i'm not sure you'd get all that much benefit since build paths change, binaries change when they're rebuilt, etc, but i know some folks do use it. same iwth icecc16:37
fraydistcc is really only useful if you have a LOT of really slow computers with a fast network16:37
kergothoh, i thought you said ccache, distcc might be okay, but the overhead is the problem16:37
kergothyeah16:37
mario-goulartI suppose a low-latency network would be required.16:37
kergothit'd be nice if bitbake could offload entire recipe builds, or task execution, rather than distributing at the per-compile/per-link level16:37
kergothfray: man, i remember one time having a corrupt object in my ccache16:38
kergothit was the last freaking place i thought to look16:38
kergothwasted like 2 days16:38
frayya, thats the downside of the cache....16:38
frayI think we're exposed to those problems more then typical developers..16:39
frayI rarely if ever see them when doing recipe work -- but when hacking ont he build system itself they're a lot more possible16:39
kergothheh, only tangentally related, but i always have to remember to --no-setscene when i'm screwing around with non-checksummed elements of the build. imported python modules, bitbake itself..16:40
kergothalways wanted to get those bits checksummed too, but never got around to it16:40
*** aehs29 <aehs29!~aehernan@134.134.137.71> has left #yocto16:40
pedroalvarezdo you normally clean the build environment? I noticed that removing *src-build/tmp makes it "build" some things on the next run even if nothing changed16:42
mario-goulartSo shared-shared-state :-) is the way to go for multi-seat environments?  Here we have this "load distribution" problem.  So far we've been investing in build servers, but that doesn't scale very well.16:42
kergothpedroalvarez: that should not be the case. i wipe tmp and let things rebuild from sstate all the time and get full 100% reuse unless i modified something16:43
kergothif your'e getting unexpected rebuilds, there are useful tools to diagnose16:43
kergothbitbake -S printdiff ccore-image-base (or whatever target) is useful16:43
kergothas is bitbake-diffsigs16:43
kergoththere's also bitbake-whatchanged, though i'm not sure if that's still working as well as it used to, iirc right now its method (changing STAMPS_DIR) actually changes checksums itself, cluttering up the output16:44
pedroalvarezI quoted "build" because I'm not sure they are builds, and just putting things in place to generate rootfs, and so on16:44
*** belen1 <belen1!Adium@nat/intel/x-seujadaaiebuihva> has quit IRC16:45
*** Tenhi <Tenhi!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has quit IRC16:45
*** ynezz <ynezz!ynezz@ibawizard.net> has quit IRC16:45
*** lamego <lamego!jose@nat/intel/x-qeaaiuumtmatvqqk> has quit IRC16:45
*** ftonello <ftonello!~quassel@81.145.202.106> has quit IRC16:45
*** jmpdelos <jmpdelos!~polk@delos.delosent.com> has quit IRC16:45
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has quit IRC16:45
*** townxelliot <townxelliot!~ell@176.253.228.46> has quit IRC16:45
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has quit IRC16:45
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has quit IRC16:45
*** sjolley <sjolley!~sjolley@134.134.137.73> has quit IRC16:45
*** Guest92481 <Guest92481!~ls@eee-cidcom02.eee-tic.strath.ac.uk> has quit IRC16:45
*** pevster <pevster!~pev@95.147.121.123> has quit IRC16:45
*** loggerbox <loggerbox!~todor@134.134.139.72> has quit IRC16:45
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC16:45
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC16:45
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has quit IRC16:45
*** nemunaire <nemunaire!~nemunaire@ra.nemunai.re> has quit IRC16:45
*** atenart <atenart!~atenart@nat1.foo.tf> has quit IRC16:45
*** MiskaX <MiskaX!~jussi@rankki.sonarnerd.net> has quit IRC16:45
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC16:45
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has quit IRC16:45
*** Marex <Marex!~Marex@195.140.253.167> has quit IRC16:45
*** michaelw_ <michaelw_!~michael@thos.me.uk> has quit IRC16:45
*** ulf` <ulf`!ulf@nat/intel/x-hffhwzsstzpevseb> has quit IRC16:45
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has quit IRC16:45
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has quit IRC16:45
*** paulg <paulg!~paulg@128.224.252.2> has quit IRC16:45
*** scot <scot!~scot@130.164.62.160> has quit IRC16:45
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has quit IRC16:45
*** smo <smo!canuck@162.243.242.124> has quit IRC16:45
*** tf <tf!~tomas@178.79.160.5> has quit IRC16:45
*** void-dev <void-dev!~voidweb@95.143.172.184> has quit IRC16:45
*** dholland <dholland!~quassel@5.9.49.89> has quit IRC16:45
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC16:45
*** berton <berton!~fabio@201.22.227.56> has quit IRC16:45
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has quit IRC16:45
*** Pixionus <Pixionus!~Pixionus@wsip-98-191-121-244.ph.ph.cox.net> has quit IRC16:45
*** edbart1 <edbart1!ebartosh@nat/intel/x-lepnmchmvgorfvtx> has quit IRC16:45
*** j6V6t <j6V6t!~j6V6t@rrcs-208-125-42-52.nys.biz.rr.com> has quit IRC16:45
*** roccof <roccof!~roccof@93-51-177-218.ip268.fastwebnet.it> has quit IRC16:45
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has quit IRC16:45
*** frsc <frsc!~frsc@dslb-094-216-249-131.094.216.pools.vodafone-ip.de> has quit IRC16:45
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC16:45
*** denix <denix!~denix@100.15.86.14> has quit IRC16:45
*** Crofton <Crofton!~balister@pool-108-44-110-59.ronkva.east.verizon.net> has quit IRC16:45
*** benjamirc <benjamirc!~besquive@134.134.139.70> has quit IRC16:45
*** Crofton|work <Crofton|work!~balister@pool-108-44-110-59.ronkva.east.verizon.net> has quit IRC16:45
*** jchonig <jchonig!~quassel@firewall.honig.net> has quit IRC16:45
*** tismith <tismith!~toby@203.62.184.110> has quit IRC16:45
*** bboozzoo <bboozzoo!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has quit IRC16:45
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has quit IRC16:45
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has quit IRC16:45
*** wfan_ <wfan_!~wfan@106.120.101.38> has quit IRC16:45
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has quit IRC16:45
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC16:45
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC16:45
*** rtollert_ <rtollert_!~rtollert@130.164.62.197> has quit IRC16:45
*** sledges <sledges!~sleleiva@unaffiliated/sledgeas> has quit IRC16:45
*** xerent_ <xerent_!xerent@compose.lokalen.org> has quit IRC16:45
*** csmart <csmart!~quassel@45.55.219.131> has quit IRC16:45
*** hundeboll <hundeboll!~hundeboll@open-mesh.org/catwoman/hundeboll> has quit IRC16:45
*** jaeckel <jaeckel!~jaeckel@unaffiliated/jaeckel> has quit IRC16:45
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC16:45
*** ryansturmer <ryansturmer!~ryansturm@cpe-75-189-150-192.nc.res.rr.com> has quit IRC16:45
*** hanDerPeder <hanDerPeder!~peder@li307-49.members.linode.com> has quit IRC16:45
*** ir2ivps6___ <ir2ivps6___!~ir2ivps6@f9.a2.559e.ip4.static.sl-reverse.com> has quit IRC16:45
*** reanguiano <reanguiano!~devnull@godel.ricardoanguiano.com> has quit IRC16:45
*** seezer <seezer!quassel@quassel/developer/seezer> has quit IRC16:45
*** Saur <Saur!pkj@nat/axis/x-mtfhfpcnfaabmvof> has quit IRC16:45
*** smartin_ <smartin_!~smartin@195.190.86.18> has quit IRC16:45
*** LetoThe2nd <LetoThe2nd!~jd@unaffiliated/letothe2nd> has quit IRC16:45
*** mago_ <mago_!~mago@88.131.56.168> has quit IRC16:45
*** rahc <rahc!rah@pasanda.collabora.co.uk> has quit IRC16:45
*** roxell <roxell!~roxell@linaro/roxell> has quit IRC16:45
*** rci <rci!~rci@70-90-78-101-BusName-mn.hfc.comcastbusiness.net> has quit IRC16:45
*** cjp256 <cjp256!~cjp256@chrispatterson.net> has quit IRC16:45
kergothi've bee mostly leveraging bitbake -S printdiff occasionally overriding SSTATE_DIR to force it to use STAMPS_DIR sigdata to compare against16:45
kergothpedroalvarez: you can always examine buildstats or tmp/stamps/ to see what tasks ran16:45
kergoththe _setscene variants are pulling from sstate16:45
kergoththe non-_setscene tasks are non-sstate16:45
kergothI'd recommend adding INHERIT += "buildstats-summary"16:46
pedroalvarezright16:46
kergothwhich will tell you at the end of hte build how many tasks ran from sstate vs non16:46
kergothreally useful16:46
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has joined #yocto16:46
*** dholland <dholland!~quassel@5.9.49.89> has joined #yocto16:46
*** void-dev <void-dev!~voidweb@95.143.172.184> has joined #yocto16:46
*** tf <tf!~tomas@178.79.160.5> has joined #yocto16:46
*** smo <smo!canuck@162.243.242.124> has joined #yocto16:46
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto16:46
*** scot <scot!~scot@130.164.62.160> has joined #yocto16:46
*** paulg <paulg!~paulg@128.224.252.2> has joined #yocto16:46
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has joined #yocto16:46
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has joined #yocto16:46
*** ulf` <ulf`!ulf@nat/intel/x-hffhwzsstzpevseb> has joined #yocto16:46
*** michaelw_ <michaelw_!~michael@thos.me.uk> has joined #yocto16:46
*** Marex <Marex!~Marex@195.140.253.167> has joined #yocto16:46
*** YoctoAutoBuilder <YoctoAutoBuilder!~YoctoAuto@yocto-www.yoctoproject.org> has joined #yocto16:46
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has joined #yocto16:46
*** MiskaX <MiskaX!~jussi@rankki.sonarnerd.net> has joined #yocto16:46
*** atenart <atenart!~atenart@nat1.foo.tf> has joined #yocto16:46
*** nemunaire <nemunaire!~nemunaire@ra.nemunai.re> has joined #yocto16:46
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has joined #yocto16:46
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto16:46
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto16:46
*** loggerbox <loggerbox!~todor@134.134.139.72> has joined #yocto16:46
*** pevster <pevster!~pev@95.147.121.123> has joined #yocto16:46
*** Guest92481 <Guest92481!~ls@eee-cidcom02.eee-tic.strath.ac.uk> has joined #yocto16:46
*** sjolley <sjolley!~sjolley@134.134.137.73> has joined #yocto16:46
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has joined #yocto16:46
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has joined #yocto16:46
*** townxelliot <townxelliot!~ell@176.253.228.46> has joined #yocto16:46
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has joined #yocto16:46
*** jmpdelos <jmpdelos!~polk@delos.delosent.com> has joined #yocto16:46
*** ftonello <ftonello!~quassel@81.145.202.106> has joined #yocto16:46
*** lamego <lamego!jose@nat/intel/x-qeaaiuumtmatvqqk> has joined #yocto16:46
*** ynezz <ynezz!ynezz@ibawizard.net> has joined #yocto16:46
*** Tenhi <Tenhi!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has joined #yocto16:46
*** belen1 <belen1!Adium@nat/intel/x-seujadaaiebuihva> has joined #yocto16:46
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto16:46
*** berton <berton!~fabio@201.22.227.56> has joined #yocto16:46
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has joined #yocto16:46
*** Pixionus <Pixionus!~Pixionus@wsip-98-191-121-244.ph.ph.cox.net> has joined #yocto16:46
*** edbart1 <edbart1!ebartosh@nat/intel/x-lepnmchmvgorfvtx> has joined #yocto16:46
*** j6V6t <j6V6t!~j6V6t@rrcs-208-125-42-52.nys.biz.rr.com> has joined #yocto16:46
*** roccof <roccof!~roccof@93-51-177-218.ip268.fastwebnet.it> has joined #yocto16:46
*** frsc <frsc!~frsc@dslb-094-216-249-131.094.216.pools.vodafone-ip.de> has joined #yocto16:46
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto16:46
*** denix <denix!~denix@100.15.86.14> has joined #yocto16:46
*** Crofton <Crofton!~balister@pool-108-44-110-59.ronkva.east.verizon.net> has joined #yocto16:46
*** benjamirc <benjamirc!~besquive@134.134.139.70> has joined #yocto16:46
*** Crofton|work <Crofton|work!~balister@pool-108-44-110-59.ronkva.east.verizon.net> has joined #yocto16:46
*** jchonig <jchonig!~quassel@firewall.honig.net> has joined #yocto16:46
*** tismith <tismith!~toby@203.62.184.110> has joined #yocto16:46
*** bboozzoo <bboozzoo!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has joined #yocto16:46
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has joined #yocto16:46
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has joined #yocto16:46
*** wfan_ <wfan_!~wfan@106.120.101.38> has joined #yocto16:46
*** shoragan <shoragan!~shoragan@debian/developer/shoragan> has joined #yocto16:46
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto16:46
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto16:46
*** rtollert_ <rtollert_!~rtollert@130.164.62.197> has joined #yocto16:46
*** sledges <sledges!~sleleiva@unaffiliated/sledgeas> has joined #yocto16:46
*** xerent_ <xerent_!xerent@compose.lokalen.org> has joined #yocto16:46
*** csmart <csmart!~quassel@45.55.219.131> has joined #yocto16:46
*** hundeboll <hundeboll!~hundeboll@open-mesh.org/catwoman/hundeboll> has joined #yocto16:46
*** jaeckel <jaeckel!~jaeckel@unaffiliated/jaeckel> has joined #yocto16:46
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto16:46
*** ryansturmer <ryansturmer!~ryansturm@cpe-75-189-150-192.nc.res.rr.com> has joined #yocto16:46
*** hanDerPeder <hanDerPeder!~peder@li307-49.members.linode.com> has joined #yocto16:46
*** ir2ivps6___ <ir2ivps6___!~ir2ivps6@f9.a2.559e.ip4.static.sl-reverse.com> has joined #yocto16:46
*** reanguiano <reanguiano!~devnull@godel.ricardoanguiano.com> has joined #yocto16:46
*** seezer <seezer!quassel@quassel/developer/seezer> has joined #yocto16:46
*** Saur <Saur!pkj@nat/axis/x-mtfhfpcnfaabmvof> has joined #yocto16:46
*** smartin_ <smartin_!~smartin@195.190.86.18> has joined #yocto16:46
*** LetoThe2nd <LetoThe2nd!~jd@unaffiliated/letothe2nd> has joined #yocto16:46
*** mago_ <mago_!~mago@88.131.56.168> has joined #yocto16:46
*** rahc <rahc!rah@pasanda.collabora.co.uk> has joined #yocto16:46
*** roxell <roxell!~roxell@linaro/roxell> has joined #yocto16:46
*** rci <rci!~rci@70-90-78-101-BusName-mn.hfc.comcastbusiness.net> has joined #yocto16:46
*** cjp256 <cjp256!~cjp256@chrispatterson.net> has joined #yocto16:46
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has quit IRC16:46
*** blitz00 <blitz00!stefans@nat/intel/x-kgwyvoneaodopqaa> has joined #yocto16:46
kergothit does require buildstats, but i think thats inherited by default nowadays16:46
*** roric <roric!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has joined #yocto16:46
* pedroalvarez saves the conversation16:48
* kergoth wonders if the docs cover the available tools for diagnosing sstate reuse problems16:48
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC16:51
*** tsramos <tsramos!tsramos@nat/intel/x-kqrlvdcfdcfbrwrg> has quit IRC16:52
*** frsc <frsc!~frsc@dslb-094-216-249-131.094.216.pools.vodafone-ip.de> has quit IRC16:55
fraywhen all else fails.. use a bigger mallet..  bitbake <recipe> -c cleansstate  (and disable sstate cache mirrors)  ;)16:57
kergothI like -C fetch for that, to avoid having to disable SSTATE_MIRRORS :) of course, then you need to -c clean first, so tradeoffs to both approaches16:57
kergothI'd really like bitbake to know that clean should be done before everything else, so we could do things like bitbake foo:do_cleansstate foo16:58
* mario-goulart has a "rebake" shell function that does "bitbake -c cleansstate $@ && bitbake $@"17:01
mario-goulartfor the moments of despair. :-)17:01
*** pevster <pevster!~pev@95.147.121.123> has quit IRC17:01
kergothgotta watch out for sstate mirrors, though. cleansstate won't prevent re-fetching it from a mirror and using that instead of building from scratch17:03
*** lamego <lamego!jose@nat/intel/x-qeaaiuumtmatvqqk> has quit IRC17:04
kergothbitbake -c clean $@ && bitbake -C fetch $@ will force the matter by "tainting" fetch, forcing the tasks after it to run regardless of the presence of sstates, mirror or otherwise17:04
kergothof course, the downside to that is the stupid taint sticks around permanently even after the thing has been rebuilt once17:05
kergoththere's an open yocto issue for that17:05
mario-goulartAh, I see.  Good point.  I only use a local sstate cache though.17:05
*** warthog9 <warthog9!~warthog9@149.20.54.19> has joined #yocto17:05
*** georgem is now known as Guest2455617:05
*** Pixionus is now known as Guest7195017:05
kergothah, fair enough17:05
kergothi always thought it'd be nice to have cleansstate inject a taint, but then there'd be no way to only clean and refetch an sstate archive :)17:06
kergothso best to keep it explicit as is17:06
*** maxin <maxin!~maxin@2001:998:22:0:85c3:adde:7abb:3402> has quit IRC17:07
*** lamego <lamego!jose@nat/intel/x-rzabeihjxtyrodmf> has joined #yocto17:08
*** Guest24556 is now known as georgem17:08
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has joined #yocto17:16
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-sspeykepkzavmmip> has quit IRC17:19
*** mtownsend1973_ <mtownsend1973_!6d44c131@gateway/web/freenode/ip.109.68.193.49> has quit IRC17:19
*** belen1 <belen1!Adium@nat/intel/x-seujadaaiebuihva> has quit IRC17:20
*** belen1 <belen1!~Adium@192.198.151.43> has joined #yocto17:20
*** aehs29 <aehs29!~aehernan@134.134.139.77> has joined #yocto17:22
*** jbrianceau is now known as jbrianceau_away17:24
*** Matt____ <Matt____!4fd5b45c@gateway/web/freenode/ip.79.213.180.92> has joined #yocto17:36
Matt____hi17:36
*** nighty^ <nighty^!~nighty@q029220.ppp.asahi-net.or.jp> has quit IRC17:36
*** toscalix <toscalix!~agustinbe@77.231.223.194> has quit IRC17:38
Matt____is there any documentation/tutorial/whatever how to control which packages are included when building a toolchain with yocto? i need python 3.3 in the toolchain, but there is only python 2.7. both versions are included in the image, this part works fine. but the toolchain is a real mystery :(17:42
*** Snert__ <Snert__!~snert_@69-161-21-126.static.acsalaska.net> has joined #yocto17:44
*** roccof <roccof!~roccof@93-51-177-218.ip268.fastwebnet.it> has quit IRC17:45
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC17:45
kergoththat depends on what method of building a toolchain you're using. whe using -c populate_sdk, the sdk contents hsould mirror the content of the image, but you can add additional host or target packages with TOOLCHAIN_HOST_TASK and TOOLCHAIN_TARGET_TASK17:49
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-fmvjlqlumarqniyx> has quit IRC17:49
kergothi.e. TOOLCHAIN_TARGET_TASK_append = " python3-dev" or whatever17:49
*** anselmolsm <anselmolsm!~anselmols@192.55.54.43> has joined #yocto17:50
kergothit would really be nice to automatically handle module imports for inline python17:55
kergothquite often i have to split out a def'd function just so i can import something17:55
*** nighty^ <nighty^!~nighty@q029220.ppp.asahi-net.or.jp> has joined #yocto17:55
*** deviosity <deviosity!~deviosity@c-67-160-33-141.hsd1.wa.comcast.net> has joined #yocto18:00
mario-goulartkergoth: wrt python, one thing that I was thinking is how to automatically determine runtime dependencies for python packages.  I thought about inspecting the bytecode of installed files to find import commands (similarly to ldd for binary files).  Do you know if something like that exists?18:02
kergothmario-goulart: yes, and we already have it18:02
kergothrecipetool can create recipes, and it supports this python dependency analysis18:02
mario-goulartOh, really?18:02
kergothrecipetool create -o - <url to a tarball or scm>18:02
mario-goulartAwesome.18:02
kergothits useful even for existing recipes to validate our rdeps18:02
kergothi have a gist where i did this for all the existing python recipes18:03
kergoththe thing is, it always always requires manual review18:03
mario-goulartExcellent.  Thanks for the hint.18:03
kergothsince its not perfect, it can pick up things which aren't actually right, or e.g. conditional deps aren't entirely handled.18:03
kergothi.e. a tree of try/catch ImportError18:03
kergothit doesn't recognize this as a this or that or the other dep18:03
mario-goulartAh, I see.  Good point.18:03
kergothhttps://gist.github.com/kergoth/7ad4b5102b2a5fe3a956 has the status of it and future plans18:04
*** belen1 <belen1!~Adium@192.198.151.43> has quit IRC18:04
mario-goulartCool18:04
kergothhttps://gist.github.com/kergoth/7d2e9f6c7d0fd759d7f2 is a script that uses recipetool create to identify potential missing rdeps in the available python recipes, along with example output from a while back18:04
kergothit both parses setup.py for dep info and scans the code18:04
mario-goulartVery nice.18:05
kergothit uses an external script to scan, btw, see scripts/pythondeps18:06
kergothso it can be run external to oe for testing18:06
*** matteo <matteo!~matteo@openwrt/developer/matteo> has quit IRC18:06
kergoths/oe/recipetool/18:06
kergothanother thing it tends to pick up that might not be quite right is tests18:06
kergothin some cases it'll scan the unit tests dir18:06
kergothand pick up deps of the tests which of course aren't deps of the module/package itself..18:07
kergothso keep that in mind18:07
mario-goularti see.18:07
kergothit tries to avoid this by using the specified package_dir from setup.py, but sometimes unit tests are under that18:07
kergothsetup.py scanning is limited by the fact that it can only pick up literal values, it can't run functions without worrying about side effects18:08
* kergoth was neck deep in this for way too long, it's messier than one might expect18:08
*** cbzx <cbzx!~cbzx@CPE0015f275ecd5-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto18:08
mario-goulartI see.  We use a similar strategy for meta-chicken, but the metadata file for eggs is not "executable".18:09
mario-goulartFor meta-chicken, all the recipes (more than 550 at the moment) are automatically generated by a script.18:09
*** Amynka is now known as Amy_ko18:09
kergothoh, that reminds me, it will use EGG-INFO if it exists too18:10
kergothmario-goulart: oh, wow, that's quite interesting18:10
kergothhttps://gist.github.com/kergoth/c6b6e08fd24cdde8adc5 might be interesting, it shows how the setup.py ast is transformed to extract all the literals and separate them from the bits we can't process without running it18:11
mario-goulartYeah, the scriptability is quite handy to manage those recipes.18:11
kergothsounds like it, never considered such an approach18:11
*** ftonello <ftonello!~quassel@81.145.202.106> has quit IRC18:12
Matt____kergoth, when i add TOOLCHAIN_HOST_TASK_append = " python3-dev " and TOOLCHAIN_TARGET_TASK_append = " python3-dev ", it fails: "ERROR: python3-dev not found in the base feeds (x86_64-nativesdk noarch any all)."18:12
mario-goulartkergoth: thanks for the gists and hints.  Lots of nice ideas.18:17
*** Guest71950 <Guest71950!~Pixionus@wsip-98-191-121-244.ph.ph.cox.net> has quit IRC18:31
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has quit IRC18:37
kergothMatt____: you can't add target packages to HOST_TASK18:39
kergothMatt____: that's for host stuff, stuff that runs on the machine the sdk is installed on.18:39
kergothi..e nativesdk stuff18:39
*** georgem <georgem!~georgem@mail.novatech-llc.com> has quit IRC18:39
kergothmario-goulart: np. i'll have to take a look at meta-chicken :)18:39
*** fl0v0 <fl0v0!~fvo@p5DDC64DC.dip0.t-ipconnect.de> has quit IRC18:39
mario-goulart:-)18:40
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has joined #yocto18:40
kergothI really want to add ast pretty printing (ala astpp.py) to pprintpp one of these days18:40
kergothcurrently you can pretty print ast nodes with that, or anything else with pprint/pprintpp, but nothing will do both at once18:41
*** aoibhinnditori <aoibhinnditori!sid95825@gateway/web/irccloud.com/x-jsjypoepwvenrdei> has quit IRC18:41
*** smurray <smurray!sid98062@gateway/web/irccloud.com/x-ciseachxnhmxvdlz> has quit IRC18:41
*** flynn378 <flynn378!sid63564@gateway/web/irccloud.com/x-rbiohaplktoodnee> has quit IRC18:41
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-rpaqwrbxdhbkjkcm> has quit IRC18:41
*** robher <robher!sid20343@gateway/web/irccloud.com/x-rxumldiesnwkzswb> has quit IRC18:41
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has quit IRC18:44
*** onoffon <onoffon!~khem@unaffiliated/khem> has quit IRC18:45
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has quit IRC18:45
*** psadro <psadro!~Thunderbi@2620:0:ed0:800a:72f3:95ff:fe1d:9866> has joined #yocto18:48
*** tewetwew <tewetwew!~Pixionus@wsip-98-191-121-244.ph.ph.cox.net> has joined #yocto18:49
*** anselmolsm <anselmolsm!~anselmols@192.55.54.43> has quit IRC18:50
*** stwcx <stwcx!~stwcx@32.97.110.52> has joined #yocto18:50
*** tewetwew <tewetwew!~Pixionus@wsip-98-191-121-244.ph.ph.cox.net> has quit IRC18:51
*** tewetwew <tewetwew!~Pixionus@unaffiliated/pixionus> has joined #yocto18:51
*** tewetwew is now known as Pixionus18:51
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has quit IRC18:53
*** belen1 <belen1!~Adium@192.198.151.44> has joined #yocto18:53
*** deviosity <deviosity!~deviosity@c-67-160-33-141.hsd1.wa.comcast.net> has quit IRC18:55
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-hxtbnoknmqbmgsnk> has joined #yocto18:55
*** anselmolsm <anselmolsm!~anselmols@192.55.54.43> has joined #yocto18:56
*** robher <robher!sid20343@gateway/web/irccloud.com/x-pbzjnnvgbdxfwrbu> has joined #yocto19:00
*** belen2 <belen2!~Adium@192.198.151.44> has joined #yocto19:01
*** belen1 <belen1!~Adium@192.198.151.44> has quit IRC19:01
bengardinerHi kergoth, mario-goulart19:02
bengardineri've got a builddir now where the problem is happening (I can reproduce it locally). bitbake-layers show-appends tells me my bbappend for paxctl is getting picked-up19:03
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto19:05
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has joined #yocto19:08
bengardinerI don't have a buildstats-summary.bbclass (b/c of daisy??) so I can't go down that avenue19:08
kergothuse bitbake -e paxctl to examine its metadata and make sure it's what you think it is19:09
*** kratsg <kratsg!82c703a5@gateway/web/freenode/ip.130.199.3.165> has joined #yocto19:11
kratsgHi all, I need to change an existing machine configuration to use a different devicetree. Do I need to make a branch new machine file, or can I use like a bbappends?19:12
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC19:12
kergothsee the KERNEL_DEVICETREE variable. if the machine defines it with ?=, you could just set it in local.conf, otherwise you can use KERNEL_DEVICETREE_forcevariable. i think that variable is probably in the yocto reference manual, though haven't checked offhand19:13
kratsghttps://github.com/Xilinx/meta-xilinx/blob/master/conf/machine/zc706-zynq7.conf here's what I want to change.19:13
kratsgIt's a conf, so I have my own custom layer I'm working on. I would add my devicetree files there and somehow have it point to that, but not sure.19:14
bengardinerkergoth: yep. the do_install() in the -e output is what I'm expecting19:14
kergothbengardiner: are you not sure it's being run the way you want? add 'exit 1' and bitbake the recipe and make sure it fails.19:16
* kergoth is unclear on what the problem is you're hitting19:16
bengardinerkergoth: yep good point. all data points to the sstate-cache working properly. So I've gotta look elsewhere :)19:17
kergothkratsg: a layer can't override something a machine is doing, under normal circumstances, it'd violate our orthogonal distro/machine/image axes and layering mechanism. you could add a config file to the layer and instruct the person using it to add the layer and include that config from their local.conf, or you could provide a custom machine that pulls in the other machine and modifies it and instruct users to set MACHINE to that. you can't bbappend a19:18
kergoth machine, only a recipe. that said, you could bbappend the kernel recipe and modify KERNEL_DEVICETREE there, so maybe that would do what you want19:18
kergothreally depends on your goals19:18
*** psadro <psadro!~Thunderbi@2620:0:ed0:800a:72f3:95ff:fe1d:9866> has quit IRC19:18
*** flynn378 <flynn378!sid63564@gateway/web/irccloud.com/x-dworfqhhypawfuef> has joined #yocto19:21
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto19:25
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto19:25
*** townxelliot <townxelliot!~ell@176.253.228.46> has quit IRC19:25
kratsgkergoth: thanks! So I tried making my own new machine: https://github.com/kratsg/meta-l1calo/blob/master/conf/machine/preprototype.conf19:26
kergothkratsg: you could just do require conf/machine/zc706-zynq7.conf, and then add your tweaks after that19:27
kratsgBut I get an error like "Nothing provides 'virtual/zynq7-platform-init'" which I think is because it's not seeing the meta-xilinx layer which has the original machine definition.19:27
kergothinstead of copying it19:27
kergoththen make your layer depend son meta-xilinx19:27
kratsgoh, really?19:27
* kergoth nods, that sounds accurate19:27
kergothyeah, any relative include/require path will be found via BBPATH, which means it searches layers for it19:27
kergothnaturally there are other approaches you could take, thats one thing that's both nice and annoying about oe/yocto, always multiple ways to do things :)19:28
kergothflexible, but also potentially confusing figuring out whats best19:28
kergothoften have to experiment and see what feels cleanest19:28
kergothat mentor, we've done the new machine that builds on another machine approach a number of times in the past19:28
kratsgOk, it makes more sense for me to do the `include` approach19:29
kratsgsince I'd rather depend on meta-xilinx directly and only make the changes I need -- such as a custom devicetree19:29
*** khem <khem!~khem@unaffiliated/khem> has quit IRC19:29
kratsgOne thing that I can't figure out is how to make sure it finds these things? EG: how do you ask for a list of machines that exist so you know your machine is parsed right?19:30
kergothall thats needed to make a machine exist is create a conf/machine/ file and add that layer to your bblayers19:30
kergothbeyond that, set MACHINE=yourmachine and do a build :)19:31
kratsgUnfortunately, it's still complaining19:31
kergothhmm19:31
kergothoh, i bet i know what's wrong19:31
kratsgCould not find conf/machine/include/zc706-zynq7.conf19:31
kratsgit's something with dependency resolution for sure.19:31
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC19:32
kergothadd MACHINEOVERRIDES .= ":zc706-zynq7" to your machine config19:32
kergothotherwise those overrides in recipes won't apply19:32
kergothsince the machine name is different19:32
kergothforgot about that19:32
*** bbhoss <bbhoss!sid18216@gateway/web/irccloud.com/x-wxabyysrkodtdxii> has quit IRC19:33
kratsghttps://github.com/kratsg/meta-l1calo/blob/master/conf/machine/preprototype.conf19:33
*** rdenis <rdenis!sid16562@gateway/web/irccloud.com/x-qmaeuyndgmeymjxr> has quit IRC19:33
kratsghere's what I have so far19:33
kratsg"Could not include required file: conf/machine/include/zc706-zynq7.confg"19:34
kratsgI have meta-xilinx in my bblayers, and this is my layer.conf: https://github.com/kratsg/meta-l1calo/blob/master/conf/layer.conf19:34
kergothtypo, confg19:35
kratsgErr, that's my typo. Sorry.19:35
kratsgIt's "zynq7.conf"19:35
kratsg(I'm inside a VM so copy/pasting isn't trivial!)19:35
kergothit's probably also not in conf/machine/include/ but conf/machine/19:35
kergothbut double check that19:35
kergoththe path has to be form the root of the layer19:35
mario-goulartIs meta-xilinx in BBLAYERS?19:36
kratsgD'oh. I see.19:36
kratsgYeah, it is mario-goulart19:36
mario-goulartok19:36
kratsgIt looks like it parsed it now.19:36
kratsgIs there a way to ask for "is <X> an existing machine?"19:37
kratsgor list all machines or something?19:37
kergothnot really, bitbake doesn't consider machines magic19:37
kergothbitbake.conf has a line: include conf/machine/${MACHINE}.conf19:37
kergoththat's what causes it to be pulled in19:37
kergothit has no awareness of machines other than the one that's currently set19:37
kergothyou could script it yourself, of course19:38
mario-goulartUsually find -path "*/conf/machine/*.conf" does the trick, assuming conventions.19:38
kratsgOh, I see.19:38
kratsgOk, so it looks like it's recompiling everything for this machine, even though I had already compiled it for zc706.19:38
kratsgI guess it's machine-by-machine, so it can't know the difference.19:38
kratsgi guess that's totally fine.19:39
kergothsome recipes are machine specific, not all are, though19:39
*** georgem <georgem!~georgem@mail.novatech-llc.com> has joined #yocto19:39
*** aoibhinnditori <aoibhinnditori!sid95825@gateway/web/irccloud.com/x-xshitzmqtdgryaes> has joined #yocto19:40
*** smurray <smurray!sid98062@gateway/web/irccloud.com/x-gmkxjxohghrzlrac> has joined #yocto19:41
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has joined #yocto19:46
kratsgSide note: we noticed if the SD clock was set to < 50 MHz, U-boot doesn't function properly. Is that a known thing?19:47
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has joined #yocto19:48
kratsgOh, hrmm, the dts include failed19:49
kratsgDo I need to explicitly add all the dts files in the machine definition, for the dts files to find it?19:49
kratsg"Fatal Error: Could not open 'zynq-7000.dtsi': No such file or directory"19:51
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:37a:f279:59ff:fe64:3a8> has quit IRC19:51
kratsgi'm presuming it's because the .dts file references it via an include, but I don't have it in the MACHINE_DEVICETREE := list.19:51
*** paulg_ <paulg_!~paulg@OTWAON23-1279379696.sdsl.bell.ca> has joined #yocto19:59
*** rdenis <rdenis!sid16562@gateway/web/irccloud.com/x-aypkpzdzjokoayps> has joined #yocto20:02
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has quit IRC20:02
Matt____thank you very much, kergoth! with just TOOLCHAIN_TARGET_TASK_append = " python3-core " it seemed to work :-)20:03
kergothnp20:04
Matt____~/QorIQ-SDK-V1.8-20150619-yocto/build_t4240rdb-64b_release/tmp/deploy/sdk$ find /opt/fsl-networking/QorIQ-SDK-V1.8/ -iname python3 /opt/fsl-networking/QorIQ-SDK-V1.8/sysroots/ppc64e6500-fsl-linux/usr/bin/python3 /opt/fsl-networking/QorIQ-SDK-V1.8/sysroots/ppc64e6500-fsl-linux/usr/src/debug/python320:04
*** bbhoss <bbhoss!sid18216@gateway/web/irccloud.com/x-xexjcbowibmvlwmq> has joined #yocto20:05
kratsgwe're checking things now :) hopefully it should work!20:08
*** fledermaus <fledermaus!~vivek@93.93.133.71> has quit IRC20:10
*** edbart1 <edbart1!ebartosh@nat/intel/x-lepnmchmvgorfvtx> has quit IRC20:10
*** maxin <maxin!~maxin@dsl-espbrasgw1-54fa7c-233.dhcp.inet.fi> has joined #yocto20:11
*** sjolley1 <sjolley1!~sjolley@134.134.137.71> has joined #yocto20:17
*** sjolley <sjolley!~sjolley@134.134.137.73> has quit IRC20:17
*** Pixionus is now known as wheresnickheller20:20
*** wheresnickheller is now known as notnotnickheller20:21
bengardinerhi... I believe (now) that the problem is due to the paxctl command getting deployed to native sysroot when built, but not when retrieved from the cache. I must be writing the bbappend wrong20:21
*** notnotnickheller is now known as realnamehere20:21
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto20:35
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has joined #yocto20:36
*** Matt____ <Matt____!4fd5b45c@gateway/web/freenode/ip.79.213.180.92> has quit IRC20:36
*** belen2 <belen2!~Adium@192.198.151.44> has quit IRC20:42
*** realnamehere is now known as Pixionus20:42
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:24b4:f279:59ff:fe64:3a8> has joined #yocto20:47
*** aehs29 <aehs29!~aehernan@134.134.139.77> has quit IRC20:51
*** deviosity <deviosity!~deviosity@c-24-143-113-42.customer.broadstripe.net> has joined #yocto20:51
bengardinerkergoth: I had a missing FILES_${PN} in the bbappend *facepalm* -- so I added it, built. cleaned everything up and tried to rebuild (from sstate). same error again. paxctl-native isn't installing paxctl to the sysroot when coming from sstate20:53
*** IvanSB <IvanSB!~IvanSB@2a01:2000:2000:24b4:f279:59ff:fe64:3a8> has quit IRC20:53
bengardinerI should just double-check my bbappend. Can anyone recommend the right bbappend to look at for adding native support to a recipe?20:54
*** anselmolsm <anselmolsm!~anselmols@192.55.54.43> has quit IRC20:58
*** paulg_ <paulg_!~paulg@OTWAON23-1279379696.sdsl.bell.ca> has quit IRC21:01
*** soderstrom <soderstrom!~soderstro@c-608be555.015-59-6c6b7013.cust.bredbandsbolaget.se> has joined #yocto21:02
*** sno <sno!~sno@rademacherexchange.de> has quit IRC21:02
*** aehs29 <aehs29!~aehernan@134.134.139.77> has joined #yocto21:04
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-hxtbnoknmqbmgsnk> has quit IRC21:05
*** maxin <maxin!~maxin@dsl-espbrasgw1-54fa7c-233.dhcp.inet.fi> has quit IRC21:09
*** IvanSB <IvanSB!~IvanSB@host184-138-dynamic.51-79-r.retail.telecomitalia.it> has joined #yocto21:11
*** deviosity <deviosity!~deviosity@c-24-143-113-42.customer.broadstripe.net> has quit IRC21:12
*** stwcx <stwcx!~stwcx@32.97.110.52> has quit IRC21:14
*** IvanSB_ <IvanSB_!~IvanSB@host206-83-dynamic.50-82-r.retail.telecomitalia.it> has joined #yocto21:15
kratsgso, we tested everything. Seems like with the custom DTS, the ethernet isn't really working. Still need to figure out where along the line it's broken.21:17
*** IvanSB <IvanSB!~IvanSB@host184-138-dynamic.51-79-r.retail.telecomitalia.it> has quit IRC21:17
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has quit IRC21:18
*** deviosity <deviosity!~deviosity@c-24-143-113-42.customer.broadstripe.net> has joined #yocto21:18
*** stwcx <stwcx!~stwcx@32.97.110.52> has joined #yocto21:22
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has joined #yocto21:23
*** IvanSB_ <IvanSB_!~IvanSB@host206-83-dynamic.50-82-r.retail.telecomitalia.it> has quit IRC21:25
*** deviosity <deviosity!~deviosity@c-24-143-113-42.customer.broadstripe.net> has quit IRC21:28
*** morphis <morphis!~morphis@p50862B25.dip0.t-ipconnect.de> has quit IRC21:29
*** kratsg <kratsg!82c703a5@gateway/web/freenode/ip.130.199.3.165> has quit IRC21:32
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC21:40
*** deviosity <deviosity!~deviosity@c-24-143-113-42.customer.broadstripe.net> has joined #yocto21:46
*** pohly <pohly!~pohly@p5DE8DC4A.dip0.t-ipconnect.de> has quit IRC21:57
kergothRP: do we have documented the bitbake/oe-core compatibility breaks, so we know what's involved to try to use a newer bitbake with an older oe-core?22:02
kergothi'm guessing probably no22:02
*** soderstrom <soderstrom!~soderstro@c-608be555.015-59-6c6b7013.cust.bredbandsbolaget.se> has quit IRC22:04
*** roric <roric!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has quit IRC22:05
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has joined #yocto22:05
*** deviosity <deviosity!~deviosity@c-24-143-113-42.customer.broadstripe.net> has quit IRC22:07
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC22:11
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto22:12
*** bengardiner <bengardiner!adc33ba2@gateway/web/freenode/ip.173.195.59.162> has quit IRC22:16
moto-timoCrofton|work: I wasn't trying to troll :)22:17
Crofton|workmoto-timo, you are fine22:19
*** cbzx <cbzx!~cbzx@CPE0015f275ecd5-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC22:22
*** ddom <ddom!~ddom@ip-37-24-103-185.hsi14.unitymediagroup.de> has quit IRC22:23
JaMathere are shitty days in America? Maybe you just need more guns :)22:26
JaMaexcept in San Bernandino where they need fewer guns :/22:28
*** sno <sno!~sno@p578b540c.dip0.t-ipconnect.de> has joined #yocto22:30
RPkergoth: not officially, no22:34
moto-timoWe just need more mental health providers22:35
RPkergoth: only really big one I'm aware of was the data store changes22:35
kergothhmm, right22:38
Crofton|workRP, kergoth I was just dreaming of the day that one version of bitbake worked across more than one release of meta-data22:41
Crofton|workin the good news dept, my first pass at a minfest for people doinf sdr stuff seems to work (jethro based)22:42
Crofton|workalso, there is a special place in hell for the person that named a release after someone named close to the community manager22:42
* armpit got kicked out of hell22:43
*** stwcx <stwcx!~stwcx@32.97.110.52> has quit IRC22:43
Crofton|workoops special level of hell22:43
Crofton|workhttps://www.youtube.com/watch?v=vVgbX_YeK-s22:43
fraylol22:43
*** adelcast <adelcast!~adelcast@130.164.62.224> has quit IRC22:46
*** benjamirc <benjamirc!~besquive@134.134.139.70> has quit IRC22:50
*** adelcast <adelcast!~adelcast@130.164.62.82> has joined #yocto22:55
*** roccof <roccof!~rocco@151.20.223.39> has joined #yocto22:57
*** deviosity <deviosity!~deviosity@c-24-143-113-42.customer.broadstripe.net> has joined #yocto22:59
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC23:01
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC23:01
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto23:01
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto23:01
*** aehs29 <aehs29!~aehernan@134.134.139.77> has left #yocto23:11
*** tf <tf!~tomas@178.79.160.5> has quit IRC23:19
*** tf <tf!~tomas@r-finger.com> has joined #yocto23:19
* moto-timo starts a petition to rename to JEFRO23:24
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has quit IRC23:24
moto-timotoo late?23:24
moto-timolol23:24
*** roccof <roccof!~rocco@151.20.223.39> has quit IRC23:25
moto-timoI suppose it will get just as far as the petition to get Firefly back on the air23:26
moto-timoPerhaps we can make a JEFRO movie23:26
Crofton|work+123:26
*** fledermaus <fledermaus!~vivek@78.32.176.249> has joined #yocto23:35
*** nemunaire <nemunaire!~nemunaire@ra.nemunai.re> has quit IRC23:36
rburtonbut then it would be spelt wrong to match the scheme23:43
rburtonwhich afaik, nobody has guessed yet23:43
*** seezer <seezer!quassel@quassel/developer/seezer> has quit IRC23:54
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC23:54
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto23:56
*** seezer <seezer!~seezer@quassel/developer/seezer> has joined #yocto23:56

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