Wednesday, 2019-02-06

*** Crofton|work <Crofton|work!~Crofton@12.245.46.170> has quit IRC00:01
*** comptroller <comptroller!~comptroll@47-213-222-253.paolcmtc01.res.dyn.suddenlink.net> has quit IRC00:06
*** comptroller <comptroller!~comptroll@47-213-222-253.paolcmtc01.res.dyn.suddenlink.net> has joined #yocto00:15
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC00:16
*** sjolley <sjolley!~sjolley@c-71-59-136-149.hsd1.or.comcast.net> has joined #yocto00:49
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-berpldnkjgehlmej> has quit IRC00:59
*** dqx <dqx!~dqx@unaffiliated/dqx> has quit IRC01:01
*** awe00 <awe00!~awe00@unaffiliated/awe00> has quit IRC01:15
*** dqx <dqx!~dqx@unaffiliated/dqx> has joined #yocto01:17
*** dqx <dqx!~dqx@unaffiliated/dqx> has quit IRC01:25
*** dqx <dqx!~dqx@unaffiliated/dqx> has joined #yocto01:45
*** robbawebba <robbawebba!~robbawebb@47.180.176.91> has quit IRC02:03
*** chandana73 <chandana73!~ckalluri@149.199.62.130> has quit IRC02:30
*** nighty- <nighty-!~nighty@b157153.ppp.asahi-net.or.jp> has joined #yocto02:54
*** sjolley <sjolley!~sjolley@c-71-59-136-149.hsd1.or.comcast.net> has quit IRC02:58
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-etvlndibdyfzslzn> has joined #yocto03:00
*** robbawebba <robbawebba!~robbawebb@cpe-104-173-199-40.socal.res.rr.com> has joined #yocto03:06
*** rokm <rokm!rokm@freeshell.de> has quit IRC03:11
*** rokm <rokm!rokm@freeshell.de> has joined #yocto03:11
*** sno <sno!~sno@p4FF5E266.dip0.t-ipconnect.de> has quit IRC03:12
*** sno <sno!~sno@p4FF5E266.dip0.t-ipconnect.de> has joined #yocto03:19
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has quit IRC03:33
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has joined #yocto03:34
*** armpit <armpit!~armpit@45.19.219.178> has quit IRC03:36
yoctiNew news from stackoverflow: How to install graphics drivers in Yocto output image [closed] <https://stackoverflow.com/questions/54468744/how-to-install-graphics-drivers-in-yocto-output-image>04:47
*** inisider <inisider!ad26d10b@gateway/web/freenode/ip.173.38.209.11> has quit IRC04:55
*** comptroller <comptroller!~comptroll@47-213-222-253.paolcmtc01.res.dyn.suddenlink.net> has quit IRC05:04
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-etvlndibdyfzslzn> has quit IRC05:20
*** armpit <armpit!~armpit@2601:202:4180:c33:2ca4:7cf9:45f0:d373> has joined #yocto05:44
*** tprrt <tprrt!~tprrt@217.114.201.133> has joined #yocto06:16
*** jobroe <jobroe!~manjaro-u@193.158.0.154> has joined #yocto06:18
*** acrap <acrap!55ed2193@gateway/web/freenode/ip.85.237.33.147> has joined #yocto06:42
acrapHi guys!06:43
acrapCan you help me? Is there way to postpone some task to the first build?06:43
acrap*to the first run?06:44
acrapI've tried to google it, but wasn't managed to find information. May be you can just point me where I can find it?06:45
acrapOh, I've found!06:46
acrapOh, no. It's different one. The question is still open06:48
acrapI've found info about postinstall script, but it's not about the first run06:49
acrapThe problem I am trying to resolve is about tricky build process, that uses target binaries during the compilation process.06:51
*** sno <sno!~sno@p4FF5E266.dip0.t-ipconnect.de> has quit IRC06:52
LetoThe2ndacrap: maybe try to explain what you are *ACTUALLY* trying to archieve. the "postpone" thing sounds massively like a xy problem06:57
*** saraf <saraf!~a_saraf@123.252.238.18> has joined #yocto06:59
acrapI am trying to build fips-enabled openssl for 64bit target. When crossbuild it uses the special incore script in the last step to embed a signature to ELF. And this script just is limited to use only with 32bit ELF (it prints that ELF64 supported only natively)06:59
acrapI can't run it "natively" cause it trying to run target's binaries during the build process07:00
LetoThe2ndso you are trying to shift something from build time to run time?07:00
acrapshure, because I had already tried almost all of the another ways to solve that puzzle07:01
LetoThe2ndnamely this script07:01
acrapincore07:01
acrapit's a part of openssl-fips07:01
LetoThe2ndi've avoided things like that so far. well. theoretically things can be postponed, of course. but it has a lot of consequences: you need a RW fs, and all the parts needed to run that script have to be shipped07:02
acrapBoth parts are possible. We had an RW filesystem and there are just a couple of files we need to add07:04
acrapthe only one question - is there way how to do it in Yocto or it's only one way to solve it with my own bicycle invention?07:05
LetoThe2ndwell then split the recipe in two? the first part sets the stage and all, the second recipe RDPENDS on the first, and actually only ships the sript and the first-run logic07:05
acrapok. Got it07:05
LetoThe2ndit could also be done as two packages of one recipe.07:05
*** flihp <flihp!~flihp@76.243.124.132> has quit IRC07:06
LetoThe2ndalso, there are postinstall scripts07:06
LetoThe2ndhttps://www.yoctoproject.org/docs/2.2/dev-manual/dev-manual.html#new-recipe-post-installation-scripts07:06
LetoThe2ndoops, here the latest version https://www.yoctoproject.org/docs/latest/dev-manual/dev-manual.html#new-recipe-post-installation-scripts07:07
LetoThe2ndfor a simple one-shot script that might even suffice07:07
acrapgot it. But postinstall scripts are run on host, aren't they?07:08
LetoThe2ndyep, think so07:09
acrapThanks for the clues, I think I can do something with that07:10
LetoThe2ndhave fun07:10
*** cvasilak <cvasilak!~cvasilak@ppp-2-86-172-177.home.otenet.gr> has joined #yocto07:11
acrapThanks! And just for information - building fips-enabled openssl in Yocto is a "very special pleasure". Fortunately, no one cares about FIPS-module anymore. There is even a special layer (non-free) to build fips-enabled openssl with Yocto :)07:15
acrapIt's not about Yocto, it's more about just cross compilation07:16
LetoThe2ndi guessed that much07:16
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has joined #yocto07:20
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-jsumpqbwdrufjabq> has joined #yocto07:21
malanecoraMorning guys!07:22
malanecoraSometimes, randomly, when I'm running a huge task in Yocto (e.g. sdk extraction, first build of the whole system...) my VM "restarts" (not a real restart, more like a suspend but without saving the current machine state)07:24
malanecoraHas someone experienced issues like this one?07:24
malanecoraIt's driving me nuts because some tasks need to be executed again (and again...)07:25
*** sno <sno!~sno@ip5b40f5e2.dynamic.kabel-deutschland.de> has joined #yocto07:28
*** frsc <frsc!~frsc@200116b8243ea700a0c375adc9e27956.dip.versatel-1u1.de> has joined #yocto07:31
ak77how do I add my custom suffix packages? (e.g. -xyz ?) so that they can all be turned on like -dbg packages?07:32
*** yann <yann!~yann@lfbn-idf1-1-103-67.w82-124.abo.wanadoo.fr> has quit IRC07:32
*** jmiehe <jmiehe!~Thunderbi@p578c106e.dip0.t-ipconnect.de> has joined #yocto07:38
*** fl0v0 <fl0v0!~fvo@i577B995F.versanet.de> has joined #yocto07:56
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto08:05
*** lusus <lusus!~lusus@62.91.23.180> has joined #yocto08:09
*** AndersD <AndersD!~AndersD@194-237-220-218.customer.telia.com> has joined #yocto08:12
acrapmalanecora: sometimes I get my DE(Gnome shell) just reboot and bitbake is killed08:12
acrapseems like we have a lack of resources08:12
acrapas for me - for sure. Even my mouse cursor doesn't work during the Yocto build08:13
acrapI even got a separate PC and share mouse and keyboard between them two (it's more convenient than a heap of manipulators on a table)08:15
acrapLet alone that I have Core i7 7700 with a 8Gb RAM(seems like it's not enough for Yocto)08:16
LetoThe2nddepending on what you are running in parallel, 8gb can be tough08:16
acrapMaybe it's better to limit the number of parallel Yocto tasks, cause I have 8 parallel task in my case08:16
LetoThe2ndand depending on what you are trying to build. if webkit or chrome or such is involved, that might be a killer08:17
acrapHah, sometimes I got a segmentation fault from cross gcc :) I suspect it's because a lack of RAM08:18
nayfeak77: FILES-${PN}-xyz = "..."  and PACKAGES += "${PN}-xyz"08:18
nayfeand optional $RDEPEND_${PN} += "${PN}-xyz"08:19
nayfeoops typo08:19
LetoThe2ndacrap: if you are doing a lot of stuff on your desktop simultaneously, its possible08:19
LetoThe2nd-> get more RAM08:20
acrapSure, I am waiting for another 8Gb module :)08:20
nayfeyou can also reduce parallel jobs :08:20
nayfealready said08:21
*** mckoan|away is now known as mckoan08:21
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto08:24
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto08:26
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto08:30
*** varjag <varjag!~user@122.62-97-226.bkkb.no> has joined #yocto08:33
RPkanavin: https://autobuilder.yoctoproject.org/typhoon/#/builders/85/builds/199 is more clear, one failure left08:35
*** yann <yann!~yann@85.118.38.181> has joined #yocto08:40
PinkSnakeI all, i'm collecting all example recipes in a meta in order to keep some templates :) but i have some trouble with qt5 demo-app, any idea ? .bb -> https://pastebin.com/mPwFcLD4 , error -> https://pastebin.com/MuGj0gas, .pro https://pastebin.com/NdKyuEg8 Thank you :)08:42
malanecoraacrap: Nice to know, I'll have to upgrade my HW08:46
acrapmalanecora: or just limit the amount of parallel tasks08:48
acrapit may help too08:48
malanecoraacrap: I've just 4 aprallel tasks :/08:48
malanecoraBut mb it does the job while waiting for the upgrade08:49
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto08:53
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto08:55
*** saraf <saraf!~a_saraf@123.252.238.18> has quit IRC09:10
*** saraf <saraf!~a_saraf@110.227.249.33> has joined #yocto09:10
*** saraf <saraf!~a_saraf@123.252.238.18> has joined #yocto09:10
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto09:10
*** cquast <cquast!~cquast@90.85.130.193> has joined #yocto09:24
ak77nayfe: I know that part, I already have many -xyz packages, but would like to turn them on with a flag09:26
ak77nayfe: or a IMAGE_FEATURE09:26
PinkSnakesomeone here can provide a recipe based on qt5 form arm arch ( rapi 3) ? I'm still stuck with QMAKE_INCDIR_OPENGL issue09:27
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-hgrslpvswtnuaxev> has joined #yocto09:28
malanecoraqt3d build is failing when running "bitbake meta-toolchain-qt5" in Yocto Thud09:47
*** AndersD_ <AndersD_!~AndersD@194-237-220-218.customer.telia.com> has joined #yocto09:51
*** AndersD <AndersD!~AndersD@194-237-220-218.customer.telia.com> has quit IRC09:51
*** comptroller <comptroller!~comptroll@47-213-222-253.paolcmtc01.res.dyn.suddenlink.net> has joined #yocto09:53
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto09:58
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has left #yocto09:59
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto09:59
kanavinRP: yep, disappointed to see that .pyc files are *not* arch-independent10:21
acrapmalanecora: 4 may be a big number if you gave minimal resources to your VM10:22
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has quit IRC10:26
*** berton <berton!~berton@181.220.86.121> has joined #yocto10:26
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-jsumpqbwdrufjabq> has quit IRC10:50
*** awe00 <awe00!~awe00@unaffiliated/awe00> has joined #yocto11:00
PinkSnakestill no info about build qt5base on raspi3 board ? :D11:04
PinkSnakei have followed tutorial --> https://doc.qt.io/QtForDeviceCreation/qtee-meta-qt5.html but i don't know which value is needed inside QMAKE_INCDIR_OPENGL[_ES2] variable ...11:05
mckoanPinkSnake: what's the problem? Which Yocto version are you using?11:08
*** a_saraf <a_saraf!~a_saraf@110.227.249.33> has joined #yocto11:13
*** a_saraf <a_saraf!~a_saraf@110.227.249.33> has quit IRC11:16
*** saraf <saraf!~a_saraf@123.252.238.18> has quit IRC11:16
*** a_saraf <a_saraf!~a_saraf@123.252.238.18> has joined #yocto11:17
*** saraf <saraf!~a_saraf@110.227.249.33> has joined #yocto11:28
*** saraf <saraf!~a_saraf@110.227.249.33> has quit IRC11:31
*** a_saraf <a_saraf!~a_saraf@123.252.238.18> has quit IRC11:32
*** saraf <saraf!~a_saraf@123.252.238.18> has joined #yocto11:32
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto11:38
*** Crofton <Crofton!~balister@2601:5c0:c100:b84:c22d:c40:ab44:9e37> has quit IRC11:55
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC12:00
*** Crofton <Crofton!~balister@2601:5c0:c100:b84:c22d:c40:ab44:9e37> has joined #yocto12:00
*** yann <yann!~yann@85.118.38.181> has quit IRC12:12
*** lfa <lfa!~lfa@217.19.35.51> has quit IRC12:12
*** yann <yann!~yann@85.118.38.181> has joined #yocto12:12
*** lfa <lfa!~lfa@217.19.35.51> has joined #yocto12:18
*** AndersD_ <AndersD_!~AndersD@194-237-220-218.customer.telia.com> has quit IRC12:22
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto12:46
*** ak77 <ak77!c12e4b03@gateway/web/freenode/ip.193.46.75.3> has quit IRC12:53
*** Crofton|work <Crofton|work!~Crofton@2601:5c0:c100:b84:1c14:fc57:7e41:92a0> has joined #yocto12:55
*** lfa_ <lfa_!~lfa@217.19.35.51> has joined #yocto13:03
*** lfa <lfa!~lfa@217.19.35.51> has quit IRC13:05
PinkSnakemckoan: I was on v2018.2 branch from Xilinx repo, i'm trying to switch to the official repo and build again. It's probably the trouble source :)13:20
malanecoraqtwebkit build freezes at 38% when trying to build. In addition, it eats all the RAM but keeps the processor nearly idle...13:24
PinkSnakehttp://cgit.openembedded.org/openembedded-core/tree/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb?h=sumo failed because of the commit number doesn't exist ...13:31
*** henriknj <henriknj!~hnje@193.106.123.182> has joined #yocto13:31
malanecoraYocto processes are marked as D (disk sleep)13:31
malanecoraCan this be due to the full RAM?13:33
malanecoraSwap memory is also full13:34
malanecoraWhat is strange13:34
kergothmalanecora: the final link with ld in qtwebkit needs like 4 gigs of ram by itself, iirc13:43
malanecorakergoth: wow, thats pretty much13:43
malanecorabtw I have 4GB of RAM13:43
kergothbig c++ projects...13:43
malanecoraAnd the same amount assigned to swap13:43
malanecoraYah...13:44
malanecoraThank you for the info!13:44
kergothi often have to reduce BB_NUMBER_THREADS just during its build to make sure its the only thing building. might be able to chnage the cflags to avoid building with debug symbols to reduce the memory usage slightly13:45
kergothgoogle it, maybe htere are other options, *shrug*13:45
malanecoraYes, rigth now I'm just building it in a standalone way but just stucks13:48
malanecoraI'll try to google that13:48
*** lfa_ <lfa_!~lfa@217.19.35.51> has quit IRC13:50
*** lfa <lfa!~lfa@217.19.35.51> has joined #yocto13:51
PinkSnakeafter updating to thud branch i got this error: ERROR: Unpack failure for URL: 'git://git.savannah.gnu.org/config.git'. No up to date source found: clone directory not available or not up to date -- any idea to fix that ?13:59
*** gtristan <gtristan!~tristanva@df-6nyb4yyyyyyyyyybct-3.rev.dnainternet.fi> has joined #yocto14:11
*** marka <marka!~masselst@128.224.252.2> has joined #yocto14:20
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has left #yocto14:21
*** maudat <maudat!~moda@64.18.88.250> has quit IRC14:28
*** maudat <maudat!~moda@64.18.88.250> has joined #yocto14:28
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC14:32
PinkSnakefor informatino it was dur to a mess in download dir ;)14:40
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto14:41
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has left #yocto14:41
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto14:41
*** zagor_ <zagor_!~zagor@rockbox/developer/Zagor> has quit IRC14:56
RPkanavin: they're not? ouch :(14:57
RPkanavin: I didn't dig into the failure14:57
kanavinRP: I looked, and the difference is only the embedded timestamp of the original .py module file14:57
RPkanavin: right, that makes more sense14:58
RPkanavin: we may get help from the reproducible code here14:58
kanavinRP: still, this means we can't really share them between multilibs, so I'm reverting to installing them in ${libdir}, which means a bit more patching14:58
kanavin.py files themselves are identical14:59
RPkanavin: if we enable reproducible build the timestamps should match15:02
RPkanavin: we can't do that everywhere but I'm wondering if we could enable some subset15:02
*** agust <agust!~agust@p508DEA88.dip0.t-ipconnect.de> has quit IRC15:10
kanavinRP: but as far as I understand, the timestamps are written into .pyc files at do_compile by python itself, do reproducible builds have special magic for it?15:13
RPkanavin: aren't the timestamps based on the source file?15:13
kanavinalso, those timestamps do matter, as python uses them at runtime to find out if pyc needs rebuilding15:13
RPkanavin: so if you have deterministic timestamps in the source, you can get the same value in the pyc?15:13
yatespaging Dr. derRichard15:14
yateswhois derRichard15:14
kanavinRP: right. I'm not sure why they differ actually15:14
yatesi hate it when i do that15:14
RPkanavin: I'm sure the reproducible stuff handled this somehow15:14
*** acrap <acrap!55ed2193@gateway/web/freenode/ip.85.237.33.147> has quit IRC15:17
malanecorakergoth: I assigned 8GB of RAM to the VM and now qtwebkit is taking every single bit of it15:26
kergothyikes15:26
malanecoraPlus the swap O.o15:26
*** agust <agust!~agust@p508DEA88.dip0.t-ipconnect.de> has joined #yocto15:28
LetoThe2ndi actually am not surprised.15:29
malanecoraNot even a bit? haha15:30
LetoThe2ndnot at all.15:30
neverpanicRP: https://reproducible-builds.org/blog/posts/144/ /.pyc15:30
LetoThe2nd08:16 < LetoThe2nd> depending on what you are running in parallel, 8gb can be tough15:31
LetoThe2nd08:17 < LetoThe2nd> and depending on what you are trying to build. if webkit or chrome or such is involved, that might be a killer15:31
LetoThe2ndmalanecora: i literally told you 8 hours ago.15:32
RPneverpanic: thanks, kanavin ^^^15:32
neverpanicRP: you'll probably need https://github.com/distropatches/cpython/commit/9edd2239a420e92f692ac0b1eff9d9a39cfc34ef15:32
malanecoraJust a VMware instance (the VM itself) + Chrome (5 tabs) + IExplorer (1 tab) + Slack + Outlook are running15:32
malanecoraMy machine has 16GB of RAM15:33
LetoThe2ndmalanecora: if you're building in vmware, you're basically timescrewed anyways.15:33
malanecoraLetoThe2nd: I agree, but it's a work imposed constraint :(15:35
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has quit IRC15:35
LetoThe2ndmalanecora: i'm just pointing out that this is the source of your problems. that, and lack of RAM15:36
LetoThe2nd:-)15:36
*** awe00 <awe00!~awe00@unaffiliated/awe00> has quit IRC15:38
malanecoraLetoThe2nd: Will try again closing everything which is "closable"15:38
malanecorabrb with news15:39
kanavinneverpanic, RP thanks, I was just looking at the same in source tree :)15:39
kanavinnot sure how hashing module sources on each run will affect runtime performance to be honest15:39
*** malanecora <malanecora!b23cc82c@gateway/web/freenode/ip.178.60.200.44> has quit IRC15:39
*** yann <yann!~yann@85.118.38.181> has quit IRC15:40
kanavinI think we can stay on the conservative side here, and keep time-based stamps15:40
*** malanecora <malanecora!b23cc82c@gateway/web/freenode/ip.178.60.200.44> has joined #yocto15:47
*** yann <yann!~yann@85.118.38.181> has joined #yocto15:47
malanecoraOfc it didn't work haha15:47
*** awe00 <awe00!~awe00@unaffiliated/awe00> has joined #yocto15:48
*** robbawebba <robbawebba!~robbawebb@cpe-104-173-199-40.socal.res.rr.com> has quit IRC15:49
*** gtristan <gtristan!~tristanva@df-6nyb4yyyyyyyyyybct-3.rev.dnainternet.fi> has quit IRC15:51
*** stephano <stephano!~stephano@134.134.139.75> has joined #yocto15:55
RPkanavin: no, I was worrying about what the alternative was15:58
RPkanavin: I think our reproducible code just makes the timestamps consistent15:58
kanavinRP: the reproducible builds class exports a magic environment variable which tells upstreams to not do timestamp-based decisions. Python starts honoring it from 3.7.2 onwards or so, by changing to storing hashes inside pyc.16:00
*** jobroe <jobroe!~manjaro-u@193.158.0.154> has quit IRC16:00
RPkanavin: ah, that sounds suboptimal :/16:01
*** yann <yann!~yann@85.118.38.181> has quit IRC16:01
*** gtristan <gtristan!~tristanva@df-6nyb4yyyyyyyyyybct-3.rev.dnainternet.fi> has joined #yocto16:03
kanavinRP: I'm still unsure why original .py files end up having different timestamps during build/install, but let's focus on getting the upgrade done and merged16:03
*** chandana73 <chandana73!~ckalluri@149.199.62.131> has joined #yocto16:04
RPkanavin: right, I was wondering about that. But yes.16:06
*** feddischson <feddischson!~feddischs@55d4e646.access.ecotel.net> has joined #yocto16:08
*** cvasilak <cvasilak!~cvasilak@ppp-2-86-172-177.home.otenet.gr> has quit IRC16:08
*** nighty- <nighty-!~nighty@b157153.ppp.asahi-net.or.jp> has quit IRC16:09
*** malanecora <malanecora!b23cc82c@gateway/web/freenode/ip.178.60.200.44> has quit IRC16:09
*** feddischson <feddischson!~feddischs@55d4e646.access.ecotel.net> has quit IRC16:11
*** luq <luq!~luq@modemcable114.129-37-24.static.videotron.ca> has joined #yocto16:12
*** luq_ <luq_!~luq@modemcable114.129-37-24.static.videotron.ca> has joined #yocto16:12
*** yann <yann!~yann@85.118.38.73> has joined #yocto16:14
*** bradleyb <bradleyb!~bradleyb@mail.fuzziesquirrel.com> has joined #yocto16:17
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has quit IRC16:18
*** jmiehe <jmiehe!~Thunderbi@p578c106e.dip0.t-ipconnect.de> has quit IRC16:25
kanavinRP: patchset send, hopefully this is the last one :)16:25
*** sjolley <sjolley!~sjolley@c-71-59-136-149.hsd1.or.comcast.net> has joined #yocto16:27
RPkanavin: lets see :)16:29
RPah, armpit beat me with a sumo16:29
*** varjag <varjag!~user@122.62-97-226.bkkb.no> has quit IRC16:29
RPkanavin: its queued to run next16:30
armpitRP ?? for what16:31
RParmpit: you're running a sumo-next, its fine16:32
armpitRP, sumo-nmut not next16:33
RParmpit: I backported a couple of key bitbake patches to thud btw16:33
RParmpit: yes, that, whatever ;-)16:33
armpitI saw.. any issues with what is in thud-next ?16:33
RParmpit: I didn't know there were patches16:33
armpitin poky proper..16:34
* armpit thought I sent a pull request..16:35
RParmpit: I may have missed it, sorry16:36
* armpit then poky/thud-next got updated... so confused16:36
RParmpit: can you rebase stable/thud-next please? It doesn't seem quite right16:37
kanavinrburton: is glmark update related to virgl by any chance? :)16:37
RParmpit: ah did I merge to the wrong branch?16:37
rburtonkanavin: sadly not16:37
armpitRP, sure I can rebase16:38
RParmpit: sorry, try now16:39
RParmpit: That clears our my -next tree16:39
armpitRP, thanks16:39
kanavinrburton: I can run benchmarks with it though, thanks for the tip :)16:40
kanavinkmscube or glxgears aren't exactly good for that16:40
rburtonkanavin: no16:40
rburtonglmark isn't a lot better but its better than nothing16:40
RPkanavin: I was hoping to run the virtgl changes through the build perf tests before we merged it16:40
RPkanavin: sadly the performance comparision code doesn't like comparing master to master-next :(16:40
RPkanavin: we can run the build, just don't get a comparison16:41
RPhttps://autobuilder.yocto.io/pub/non-release/20190206-3/testresults/buildperf-centos7/perf-centos7.yoctoproject.org_master_20190206030025_52faf80.html16:41
*** tprrt <tprrt!~tprrt@217.114.201.133> has quit IRC16:44
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC16:45
*** no_such_user <no_such_user!~no_such_u@mail.analogue-micro.com> has quit IRC16:50
kanavinRP: we could probably win a lot by splitting qemu into usermode and system recipes. system is not needed during the build, yet it's the one that's dependent on all the native graphical stuff.16:51
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC16:55
rburtontrue16:58
rburtonuser qemu is basically headness16:58
*** saraf <saraf!~a_saraf@123.252.238.18> has quit IRC16:58
*** adrianbunk <adrianbunk!~bunk@dsl-hkibng31-54fab3-123.dhcp.inet.fi> has quit IRC16:59
*** adrianbunk <adrianbunk!~bunk@dsl-hkibng31-54fab3-123.dhcp.inet.fi> has joined #yocto17:00
*** lusus <lusus!~lusus@62.91.23.180> has quit IRC17:01
*** frsc <frsc!~frsc@200116b8243ea700a0c375adc9e27956.dip.versatel-1u1.de> has quit IRC17:06
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC17:09
*** gtristan <gtristan!~tristanva@df-6nyb4yyyyyyyyyybct-3.rev.dnainternet.fi> has quit IRC17:09
*** sjolley <sjolley!~sjolley@c-71-59-136-149.hsd1.or.comcast.net> has quit IRC17:14
JPEWarmpit: The busybox upgraded landed on master, can it be backported to thud?17:15
*** yann <yann!~yann@85.118.38.73> has quit IRC17:19
*** cquast <cquast!~cquast@90.85.130.193> has quit IRC17:20
*** kroon <kroon!~jkroon@37-247-29-68.customers.ownit.se> has joined #yocto17:20
*** berton <berton!~berton@181.220.86.121> has quit IRC17:26
*** berton <berton!~berton@181.220.86.121> has joined #yocto17:30
*** mckoan is now known as mckoan|away17:30
*** kroon <kroon!~jkroon@37-247-29-68.customers.ownit.se> has quit IRC17:32
armpitJPEW, got it.. thanks for the reminder17:35
*** kroon <kroon!~jkroon@37-247-29-68.customers.ownit.se> has joined #yocto17:35
RPkanavin: that does sound quite appealing17:39
*** awe00 <awe00!~awe00@unaffiliated/awe00> has quit IRC17:41
*** neverpan1c <neverpan1c!~clemens@towel.neverpanic.de> has joined #yocto17:50
*** neverpanic <neverpanic!~clemens@towel.neverpanic.de> has quit IRC17:50
*** kroon <kroon!~jkroon@37-247-29-68.customers.ownit.se> has quit IRC17:58
*** fl0v0 <fl0v0!~fvo@i577B995F.versanet.de> has quit IRC17:59
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-axjodrjaqkwinvfq> has joined #yocto18:08
*** cdgarren <cdgarren!~cdgarren@207.67.30.60> has joined #yocto18:23
cdgarrenI'm trying to use cython on a module in a python application for my image. When I build I get an ImportError in the do_compile step saying "No moduel names Cython.Build". I thought that adding python-cython as a DEPENDS in my application recipe would be enough, but is not. Anyone know what I'm missing?18:25
*** robbawebba <robbawebba!~rob@47.180.176.91> has joined #yocto18:33
rburtonpython-cpython-native for a cpython youcan actually run at build time18:42
rburtonotherwise you just build the target one which isn't any use18:42
yatesif i use devtool to modify a recipe, and i subsequently do a "bitbake <image>", will that image be built with modified recipe from devtool?18:45
yatesi.e, prior to "devtool finish recipe layer"18:46
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has quit IRC18:48
kergothyes18:56
kergothdevtool modify adds the workspace layer to bblayers, unpacks and patches the sources, and creates a bbappend in the workspace that makes the recipe build using those sources18:56
kergothregardless of whether you're actually using devtool for every build18:56
yatesi see.18:57
yatesthat's good18:57
*** sno <sno!~sno@ip5b40f5e2.dynamic.kabel-deutschland.de> has quit IRC18:58
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto19:03
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto19:04
*** sno <sno!~sno@p4FF5E266.dip0.t-ipconnect.de> has joined #yocto19:10
*** kroon <kroon!~jkroon@37-247-29-68.customers.ownit.se> has joined #yocto19:15
*** sgw <sgw!~sgw@134.134.139.76> has joined #yocto19:19
*** stacktrust <stacktrust!~stacktrus@cpe-24-90-150-194.nyc.res.rr.com> has joined #yocto19:21
*** awe00 <awe00!~awe00@unaffiliated/awe00> has joined #yocto19:23
cdgarrenrburton: thanks for the pointer, figured it was something simple.19:42
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-hgrslpvswtnuaxev> has quit IRC20:07
*** kroon <kroon!~jkroon@37-247-29-68.customers.ownit.se> has quit IRC20:19
*** berton <berton!~berton@181.220.86.121> has quit IRC20:29
*** ComputerKarate <ComputerKarate!26519e03@gateway/web/freenode/ip.38.81.158.3> has joined #yocto20:53
ComputerKarateTrying to develop for a sweet sama5d3 board20:54
ComputerKarateI followed the instructions at: https://www.yoctoproject.org/docs/2.6.1/brief-yoctoprojectqs/brief-yoctoprojectqs.html20:54
ComputerKarateWorks until I try to create a layer20:54
ComputerKarateThe errors say that my setup is not compatible with thud but is compatible with sumo20:55
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-axjodrjaqkwinvfq> has quit IRC21:28
*** cdgarren <cdgarren!~cdgarren@207.67.30.60> has left #yocto21:35
*** flying_sausages <flying_sausages!~flying_sa@static.88-198-40-49.clients.your-server.de> has joined #yocto21:35
*** nate02 <nate02!~nate02@mail.validmanufacturing.com> has quit IRC21:38
*** marka <marka!~masselst@128.224.252.2> has quit IRC21:39
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has quit IRC21:42
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has joined #yocto21:43
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC21:44
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto21:48
*** paulg <paulg!~paulg@24-246-4-37.cable.teksavvy.com> has quit IRC21:50
*** paulg <paulg!~paulg@24-246-4-37.cable.teksavvy.com> has joined #yocto21:51
yoctiNew news from stackoverflow: Workaround for tar 1.27's bug in Ubuntu 14.04 <https://stackoverflow.com/questions/31226962/workaround-for-tar-1-27s-bug-in-ubuntu-14-04>21:51
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-qpwhdsfhzctejdpx> has joined #yocto21:51
*** ferlzc <ferlzc!~ferlzc@187.57.74.56> has quit IRC21:51
*** robbawebba <robbawebba!~rob@47.180.176.91> has quit IRC21:53
*** luq <luq!~luq@modemcable114.129-37-24.static.videotron.ca> has quit IRC21:54
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC22:04
*** bradleyb is now known as radsquirrel22:08
*** ComputerKarate <ComputerKarate!26519e03@gateway/web/freenode/ip.38.81.158.3> has quit IRC22:17
*** dev1990_ <dev1990_!~dev@dynamic-78-8-116-81.ssp.dialog.net.pl> has quit IRC22:28
*** dev1990 <dev1990!~dev@dynamic-78-8-116-81.ssp.dialog.net.pl> has joined #yocto22:28
*** dfaught <dfaught!~dfaught@12.179.39.33> has joined #yocto22:37
*** yann <yann!~yann@lfbn-idf1-1-103-67.w82-124.abo.wanadoo.fr> has joined #yocto22:42
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC23:03
*** agust <agust!~agust@p508DEA88.dip0.t-ipconnect.de> has quit IRC23:09
*** adelcast <adelcast!~adelcast@130.164.62.130> has quit IRC23:24
*** stephano <stephano!~stephano@134.134.139.75> has quit IRC23:27
*** ferlzc <ferlzc!~ferlzc@187.57.74.56> has joined #yocto23:30
*** tasslehoff <tasslehoff!~aronning@80.77.101.233> has quit IRC23:33
*** maudat <maudat!~moda@64.18.88.250> has quit IRC23:35
*** nacknick <nacknick!1fa801ba@gateway/web/freenode/ip.31.168.1.186> has quit IRC23:53
*** Quazil <Quazil!~shannon@2601:40e:8280:2d6e:fc78:92c7:93f5:6beb> has joined #yocto23:56
*** adelcast <adelcast!~adelcast@130.164.62.130> has joined #yocto23:59

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