*** stefandxm <stefandxm!~stefan@deusexmachinae.se> has joined #yocto | 00:03 | |
stefandxm | hola | 00:03 |
---|---|---|
stefandxm | iam trying to understand the runqemu approach | 00:03 |
stefandxm | is there any exhaustive material on how this works? | 00:04 |
stefandxm | if possible i want to run it outside the yocto enviroment in total | 00:08 |
stefandxm | building yocto in a dockers container | 00:08 |
stefandxm | preferably running the tests outside | 00:08 |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 00:10 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 00:22 | |
*** agust <agust!~agust@pD95F11D0.dip0.t-ipconnect.de> has quit IRC | 00:26 | |
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has quit IRC | 00:28 | |
*** rokm <rokm!rokm@freeshell.de> has joined #yocto | 00:29 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 00:41 | |
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has joined #yocto | 00:42 | |
*** flihp <flihp!~flihp@76.243.124.129> has quit IRC | 00:44 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 00:47 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 00:52 | |
*** kovalevsky <kovalevsky!~kovalevsk@fedora/kovalevsky> has quit IRC | 00:54 | |
alejandrohs | stefandxm: I dont think theres any documentation other than the code itself which is inside scripts/runqemu, it does rely on the data grabbed from bitbake, so you would still need to do that to get the required variables about the system it'll run, a lot of those are inside the qemuboot.conf file on your deploy directory, which are set on the qemuboot class, you can easily share directories between | 01:09 |
alejandrohs | the container and your host which would allow you to do something similar to that | 01:09 |
stefandxm | thats fair | 01:15 |
stefandxm | ponder i want to run 10x tests in parallel taking days | 01:16 |
stefandxm | hmm, should work | 01:16 |
stefandxm | sorry, was thinking loud :) | 01:16 |
stefandxm | but main question remains tho. albeit its my own fault | 01:18 |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 01:18 | |
stefandxm | runqemu documentation? i had some difficulties with it yesterday | 01:18 |
stefandxm | i see now our shell scripts do not export stuff | 01:22 |
stefandxm | but pondering this works | 01:22 |
stefandxm | we should be able to stage the qemuboot.conf right? | 01:23 |
stefandxm | with the image? | 01:23 |
stefandxm | (iam a bit out of the loop, just a programmer :) | 01:23 |
*** vineela <vineela!~vtummala@134.134.137.77> has quit IRC | 01:25 | |
alejandrohs | technically the qemuboot.conf would still be generated within the build, so inside the container | 01:29 |
alejandrohs | stefandxm: but if you share the build directory of such container with your host, you can run the same environment that was used to build on your host | 01:30 |
alejandrohs | and it would grab the correct qemuboot.conf automatically | 01:30 |
alejandrohs | thats just AN approach that comes to mind cant say its the most efficient possible | 01:31 |
alejandrohs | so what I'm saying is you dont have to stage it, from outside the container you can just use the one created inside | 01:32 |
*** kaspter <kaspter!~Instantbi@101.93.194.160> has joined #yocto | 01:32 | |
stefandxm | yeah we have mounted into the dockers container | 01:33 |
stefandxm | i want to stage it | 01:33 |
stefandxm | but i do it manually with some python scripts | 01:33 |
alejandrohs | you would have to source the oe-env from outside and then nothing stops you from running runqemu at that point | 01:34 |
stefandxm | its mostly because i want many short-tests | 01:34 |
stefandxm | yeah | 01:34 |
alejandrohs | as in you are using testimage? | 01:34 |
stefandxm | yes | 01:34 |
stefandxm | i think i will attack runqemu and make it more permanent to our test system | 01:34 |
stefandxm | in the end i guess its all qemu system right? | 01:35 |
alejandrohs | stefandxm: please dont attack our code | 01:36 |
stefandxm | the reason for staging is because our generic testing system runs 1-~10 tests | 01:36 |
alejandrohs | jk | 01:36 |
stefandxm | and we do a dry run, quick test, quick test * 2 | 01:36 |
stefandxm | and then some longer tests | 01:36 |
alejandrohs | you can define different test suites | 01:36 |
stefandxm | yeah, but the tests depend on evironment | 01:37 |
stefandxm | not talking about the shell environment but databases/perpherials etc | 01:37 |
stefandxm | a complete test takes 2 weeks :o | 01:37 |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 01:38 | |
stefandxm | its nothing advanced. just staging :) | 01:38 |
stefandxm | in this case the yocto image is an edge device | 01:39 |
stefandxm | or, even several | 01:39 |
stefandxm | and each image depends on a production enviroment | 01:39 |
stefandxm | yocto in total.. i have no idea :D | 01:41 |
stefandxm | for what we are using it for it seems a bit over engineered | 01:41 |
stefandxm | maybe its time for some separation | 01:41 |
stefandxm | but it works great :) | 01:41 |
alejandrohs | I think its achievable, my one suggestion would just be not to deviate too much from upstream, in case some behavior changes and that way you don thave to rebase your work | 01:41 |
stefandxm | indeed | 01:42 |
stefandxm | i will do full copy in the staging though | 01:42 |
stefandxm | since you never know what triggers an issue | 01:42 |
stefandxm | with yocto so many stages can create new behaviour | 01:42 |
stefandxm | but we are in desperate need of emulator to get to valgrind etc | 01:43 |
stefandxm | the hardware is just not fast enough | 01:43 |
*** ssajal <ssajal!~ssajal@otwaon1146w-lp140-01-64-229-138-221.dsl.bell.ca> has joined #yocto | 01:43 | |
dp | When building offline, I notice that yocto really wants to contact a git server in the case of recipes using tags for SRCREV. I see the advice is to "use SHAs instead, silly" but I would like to leave my recipes looking pretty. Is there a way I can get it not to try and fetch tags when offline (e.g. BB_NO_NETWORK)? | 01:43 |
dp | I understand the problems around tags potentially changing definition upstream, but if I'm building offline I don't 100% care about that from a developer perspective, since I'd have imagined offline builds to use local versions of tags | 01:44 |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 01:44 | |
stefandxm | alejandrohs: you work on yocto? | 01:49 |
stefandxm | dp: sorry i dont know | 01:49 |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 01:49 | |
*** ssajal <ssajal!~ssajal@otwaon1146w-lp140-01-64-229-138-221.dsl.bell.ca> has quit IRC | 02:08 | |
*** nerdboy <nerdboy!~sarnold@47.143.129.85> has joined #yocto | 02:11 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 02:12 | |
alejandrohs | stefandxm: I mean tecnically we all contribute to it | 02:12 |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 02:12 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 02:13 | |
stefandxm | alejandrohs: i just adressed you because of the original comment of yours :) but you are a maintainer no? | 02:14 |
stefandxm | we are very happy with yocto | 02:14 |
stefandxm | iam working for a company trying to get away from some lock ins | 02:15 |
stefandxm | and personally iam an avid open source contributor | 02:15 |
stefandxm | having some projects on my own | 02:15 |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has quit IRC | 02:16 | |
stefandxm | but we are new to yocto :) | 02:16 |
stefandxm | and while trying to do some stuff yourself until you learn i love the synergy of asking questions when it can help you | 02:17 |
*** fury <fury!uid193779@gateway/web/irccloud.com/x-rnsglwsmwissymib> has left #yocto | 02:17 | |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has joined #yocto | 02:17 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 02:25 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 02:32 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 02:33 | |
yocti | New news from stackoverflow: Config parsing error on xl create for Xen Guest DomU <https://stackoverflow.com/questions/55907917/config-parsing-error-on-xl-create-for-xen-guest-domu> | 02:35 |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 02:47 | |
*** chandana731 <chandana731!~ckalluri@149.199.62.129> has quit IRC | 02:52 | |
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has joined #yocto | 02:53 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 02:53 | |
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has quit IRC | 02:53 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 02:57 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 03:34 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 03:34 | |
*** ssajal <ssajal!~ssajal@otwaon1146w-lp140-01-64-229-138-221.dsl.bell.ca> has joined #yocto | 03:46 | |
*** ssajal <ssajal!~ssajal@otwaon1146w-lp140-01-64-229-138-221.dsl.bell.ca> has quit IRC | 03:58 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 03:58 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 04:05 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 04:10 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 04:37 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 04:43 | |
*** jobroe <jobroe!~manjaro-u@p579EBA5B.dip0.t-ipconnect.de> has joined #yocto | 04:46 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 04:49 | |
*** jobroe <jobroe!~manjaro-u@p579EBA5B.dip0.t-ipconnect.de> has quit IRC | 04:51 | |
*** jobroe_ <jobroe_!~manjaro-u@193.158.0.154> has joined #yocto | 04:51 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 04:54 | |
alejandrohs | stefandxm: yes, usually you can get help from the community through these channels | 05:06 |
*** AndersD <AndersD!~AndersD@h83-209-96-136.cust.a3fiber.se> has joined #yocto | 05:18 | |
*** AndersD_ <AndersD_!~AndersD@h83-209-96-136.cust.a3fiber.se> has joined #yocto | 05:20 | |
*** AndersD <AndersD!~AndersD@h83-209-96-136.cust.a3fiber.se> has quit IRC | 05:23 | |
*** ibinderwolf <ibinderwolf!~quassel@host232-105-dynamic.31-79-r.retail.telecomitalia.it> has joined #yocto | 05:23 | |
*** xyzzy42 <xyzzy42!~tpiepho@75-172-26-164.tukw.qwest.net> has quit IRC | 05:28 | |
*** dv_ <dv_!~dv@62.178.50.190> has quit IRC | 05:29 | |
*** dv_ <dv_!~dv@62-178-50-190.cable.dynamic.surfer.at> has joined #yocto | 05:43 | |
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has quit IRC | 05:53 | |
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto | 05:54 | |
*** nerdboy <nerdboy!~sarnold@47.143.129.87> has joined #yocto | 05:54 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 05:57 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 05:57 | |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto | 05:58 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 05:58 | |
*** pohly <pohly!~pohly@p5B05600C.dip0.t-ipconnect.de> has joined #yocto | 05:59 | |
*** ebail <ebail!~ebail@2a01cb089000af00a7a4ea50b7eddc65.ipv6.abo.wanadoo.fr> has quit IRC | 06:02 | |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC | 06:03 | |
*** zeddii <zeddii!~zeddii@CPE04d4c4975b80-CM64777d5e8820.cpe.net.cable.rogers.com> has quit IRC | 06:07 | |
*** guerinoni <guerinoni!~guerinoni@host9-78-dynamic.251-95-r.retail.telecomitalia.it> has joined #yocto | 06:11 | |
*** vineela <vineela!vtummala@nat/intel/x-rgmvkkfseotsechi> has joined #yocto | 06:13 | |
*** Guest5241 <Guest5241!a5e14925@gateway/web/cgi-irc/kiwiirc.com/ip.165.225.73.37> has joined #yocto | 06:14 | |
*** Guest5241 is now known as PatrickE | 06:14 | |
*** zeddii <zeddii!~zeddii@CPE04d4c4975b80-CM64777d5e8820.cpe.net.cable.rogers.com> has joined #yocto | 06:18 | |
*** pharaon2502 <pharaon2502!~manjaro-u@cpe-188-129-77-144.dynamic.amis.hr> has joined #yocto | 06:18 | |
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has joined #yocto | 06:20 | |
*** frsc <frsc!~frsc@220-67-142-46.pool.kielnet.net> has joined #yocto | 06:29 | |
*** agust <agust!~agust@pD95F11D0.dip0.t-ipconnect.de> has joined #yocto | 06:33 | |
*** vineela <vineela!vtummala@nat/intel/x-rgmvkkfseotsechi> has quit IRC | 06:36 | |
*** Zajc <Zajc!~Zajc@user140.c8.vrhnika.kabelnet.net> has quit IRC | 06:37 | |
*** gtristan <gtristan!~tristanva@61.82.32.35> has joined #yocto | 06:38 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 06:45 | |
*** AndersD_ <AndersD_!~AndersD@h83-209-96-136.cust.a3fiber.se> has quit IRC | 06:48 | |
*** mckoan|away is now known as mckoan | 07:00 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 07:14 | |
*** leon-anavi <leon-anavi!~Leon@78.130.197.211> has joined #yocto | 07:18 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 07:20 | |
*** lukma <lukma!~lukma@85-222-111-42.dynamic.chello.pl> has joined #yocto | 07:22 | |
*** armpit <armpit!~armpit@2601:202:4180:a5c0:4888:3169:3bd:8440> has quit IRC | 07:23 | |
*** armpit <armpit!~armpit@2601:202:4180:a5c0:4888:3169:3bd:8440> has joined #yocto | 07:26 | |
*** lukma <lukma!~lukma@85-222-111-42.dynamic.chello.pl> has quit IRC | 07:30 | |
yocti | New news from stackoverflow: Installing Mosquitto on Yocto <https://stackoverflow.com/questions/61095064/installing-mosquitto-on-yocto> | 07:36 |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 07:44 | |
*** lukma <lukma!~lukma@85-222-111-42.dynamic.chello.pl> has joined #yocto | 07:49 | |
*** fl0v0 <fl0v0!~fvo@2a01:c22:a420:8a00:6c27:d486:3bf8:85f8> has joined #yocto | 07:49 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 07:50 | |
*** nerdboy <nerdboy!~sarnold@47.143.129.87> has quit IRC | 07:52 | |
*** nerdboy <nerdboy!~sarnold@47.143.129.87> has joined #yocto | 07:52 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 07:53 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 07:59 | |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has quit IRC | 08:05 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 08:05 | |
*** rburton <rburton!~rburton@134.191.227.39> has joined #yocto | 08:08 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 08:10 | |
*** ribalda <ribalda!sid306640@gateway/web/irccloud.com/x-pbmsvpphqxjspipd> has quit IRC | 08:22 | |
*** ribalda <ribalda!sid306640@gateway/web/irccloud.com/x-omfnqzppsrvrchwg> has joined #yocto | 08:22 | |
*** armpit <armpit!~armpit@2601:202:4180:a5c0:4888:3169:3bd:8440> has quit IRC | 08:24 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 08:36 | |
*** aurelienbouin <aurelienbouin!~aurelienb@anantes-650-1-167-61.w2-0.abo.wanadoo.fr> has joined #yocto | 08:38 | |
*** zopsi <zopsi!zopsi@2600:3c00::f03c:91ff:fe14:551f> has quit IRC | 08:38 | |
*** zopsi <zopsi!~zopsi@irc.dir.ac> has joined #yocto | 08:38 | |
aurelienbouin | Hello everybody, I am looking for a yocto build machine, I would like at least 32 threads (16 cores), have you buy something like that ? Do you have a website to advise me ? Thank you very much | 08:39 |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 08:39 | |
*** armpit <armpit!~armpit@c-67-181-203-136.hsd1.ca.comcast.net> has joined #yocto | 08:39 | |
qschulz | aurelienbouin: there was a thread recently on the mailing list, let me find it | 08:41 |
aurelienbouin | qschulz: oh really, yes please show me it ! thank you | 08:43 |
qschulz | aurelienbouin: ah not exactly... there was discussion on what were the factors for speedy yocto builds | 08:48 |
qschulz | https://lists.yoctoproject.org/g/yocto/topic/72047879#48885 | 08:52 |
*** AndersD <AndersD!~AndersD@h83-209-96-136.cust.a3fiber.se> has joined #yocto | 08:57 | |
aurelienbouin | qschulz yes interesting, but where to buy ;-) | 08:57 |
*** leon-anavi <leon-anavi!~Leon@78.130.197.211> has quit IRC | 08:57 | |
*** AndersD_ <AndersD_!~AndersD@195-67-57-138.customer.telia.com> has joined #yocto | 08:59 | |
*** ebail <ebail!~ebail@2a01cb089000af00a7a4ea50b7eddc65.ipv6.abo.wanadoo.fr> has joined #yocto | 09:00 | |
*** AndersD <AndersD!~AndersD@h83-209-96-136.cust.a3fiber.se> has quit IRC | 09:02 | |
paulbarker | aurelienbouin: Are you looking to buy a physical server or just rent one in a datacentre somewhere? I use Hetzner (DE) and OVH (FR/GB) servers | 09:10 |
aurelienbouin | As a yocto build machine I was planning to use AMD EPYC 7302P (Lenovo ThinkSystem SR635), but I don't know if it is worth it compare to AMD Ryzen 9 3900X | 09:11 |
aurelienbouin | paulbarker : The problem is my internet connection bandwidth, else i would rent AWS or any other machine online, things that i do for my customers ... | 09:12 |
paulbarker | https://www.cpubenchmark.net/compare/AMD-EPYC-7302P-vs-AMD-Ryzen-9-3900X/3610vs3493 | 09:13 |
aurelienbouin | Maybe better to buy two AMD Ryzen 9 then | 09:13 |
aurelienbouin | paulbarker: Maybe better to buy two AMD Ryzen 9 then | 09:14 |
paulbarker | Personally I'd take the Ryzen 9. | 09:14 |
aurelienbouin | Is there a way to split yocto build among multiple machine on a network ? | 09:14 |
paulbarker | Not that I know of. Multiple machines would help if you've got more than one build to do at a time though, I often find I have 3 machines running different builds | 09:15 |
aurelienbouin | paulbarker: yes the same for me the problem is that sometime we need to wait until a build finished for so small modifications ... | 09:16 |
mcfrisk | aurelienbouin: pool of throw away build machines and jenkins... | 09:16 |
aurelienbouin | mcfrisk: yes actually using bamboo those times but yes the way to go I guess | 09:18 |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 09:18 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 09:19 | |
RobertBerger | @aurelienbouin: Is there a way to split yocto build among multiple machine on a network ? - Yes you can try icecream | 09:19 |
mcfrisk | aurelienbouin: measure your builds:CPU, RAM, IO, disk, networking.. take machines where you can extend at least memory and disk if needed. our builds are not bound by CPUs nor RAM nor disk or network. It's an annoying combination of them which is hard to optimize... | 09:20 |
RobertBerger | @aurelienbouin: there is a bbclass for it in poky: http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/classes/icecc.bbclass | 09:21 |
mcfrisk | I didn't see any build time improvements with icecc...switching from virtual machines to real throw away ones brought the biggest reliability and performance gains beyond rm_work, sstate caches/mirrors, download caches.. | 09:22 |
aurelienbouin | RobertBerger: really interesting ! Reading on it : https://elinux.org/images/c/cc/Sweeten_Your_Yocto_Build_Times_with_Icecream.pdf if you have a better link I am also interested | 09:22 |
*** fl0v0 <fl0v0!~fvo@2a01:c22:a420:8a00:6c27:d486:3bf8:85f8> has quit IRC | 09:23 | |
aurelienbouin | mcfrisk: I prefer to use docker instead of VM, a lot more convenient to share folders; reproduce builds;move build etc | 09:23 |
mcfrisk | we use lxc, docker would do as well. but mainly for host contamination and easier portability of all build tools and their versions. | 09:25 |
aurelienbouin | I share sstate-cache dir and downloads folder through docker, example of a launch : DOWNLOADS_SHARED_DIRECTORY="/media/hddhome/bouin/yocto/downloads/" && SSTATE_SHARED_DIRECTORY="/media/hddhome/bouin/yocto/sstate-cache/" && docker run --rm -it -v ${PWD}:/workdir -v ${DOWNLOADS_SHARED_DIRECTORY}:/workdir/downloads -v ${SSTATE_SHARED_DIRECTORY}:/workdir/sstate-cache crops/poky:ubuntu-18.04 --workdir=/workdir bash | 09:27 |
mcfrisk | docker images are not reproducible by default... | 09:28 |
RobertBerger | @aurelienbouin: here are a few notes I made about it: http://reliableembeddedsystems.com/wiki/index.php?title=Technonolgies_to_check#UB_18 | 09:29 |
RobertBerger | @aurelienbouin: http://reliableembeddedsystems.com/wiki/index.php?title=Technonolgies_to_check#icecream | 09:30 |
RobertBerger | @aurelienbouin: I use proxmox and lxr containers which docker running in there - much better performance than vm + container | 09:34 |
*** ebail <ebail!~ebail@2a01cb089000af00a7a4ea50b7eddc65.ipv6.abo.wanadoo.fr> has quit IRC | 09:34 | |
aurelienbouin | mcfrisk: don't you think that buy 2x 12 cores processors combined with icecc won't get better performance than 1x16 cores processor ? of course with RAM and NvME etc | 09:34 |
*** caiortp <caiortp!d57f6fca@gateway/web/cgi-irc/kiwiirc.com/ip.213.127.111.202> has joined #yocto | 09:40 | |
aurelienbouin | Thank you all for your time RobertBerger mcfrisk paulbarker qschulz | 09:43 |
*** elGamal <elGamal!~elg@103.221.233.93> has quit IRC | 09:51 | |
*** elfGamal <elfGamal!~elg@66.115.177.142> has joined #yocto | 09:51 | |
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@5.171.136.38> has joined #yocto | 09:58 | |
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has joined #yocto | 09:58 | |
*** dreyna <dreyna!~dreyna@2601:646:4201:b1a0:3024:aeb8:62df:3ab4> has quit IRC | 10:16 | |
*** Saur <Saur!pkj@nat/axis/x-mfhsackhynbotrqs> has quit IRC | 10:22 | |
*** Saur <Saur!~pkj@85.235.16.180> has joined #yocto | 10:46 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 10:49 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 10:50 | |
*** leon-anavi <leon-anavi!~Leon@78.130.197.211> has joined #yocto | 10:53 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 10:58 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 10:58 | |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:814:9df1:db5d:1af9> has joined #yocto | 11:14 | |
*** dv_ <dv_!~dv@62-178-50-190.cable.dynamic.surfer.at> has quit IRC | 11:16 | |
*** dv_ <dv_!~dv@62.178.50.190> has joined #yocto | 11:31 | |
*** aurelienbouin <aurelienbouin!~aurelienb@anantes-650-1-167-61.w2-0.abo.wanadoo.fr> has quit IRC | 11:33 | |
*** berton <berton!~berton@181.220.114.167> has joined #yocto | 11:34 | |
*** berton <berton!~berton@181.220.114.167> has quit IRC | 11:37 | |
*** berton <berton!~berton@181.220.114.167> has joined #yocto | 11:38 | |
*** rob_w_ <rob_w_!~bob@dslb-084-062-252-232.084.062.pools.vodafone-ip.de> has joined #yocto | 11:39 | |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has joined #yocto | 11:41 | |
*** jobroe <jobroe!~manjaro-u@p579EB668.dip0.t-ipconnect.de> has joined #yocto | 11:48 | |
*** jobroe_ <jobroe_!~manjaro-u@193.158.0.154> has quit IRC | 11:48 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 11:49 | |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:814:9df1:db5d:1af9> has quit IRC | 12:00 | |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has quit IRC | 12:03 | |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has joined #yocto | 12:06 | |
*** kovalevsky <kovalevsky!~kovalevsk@fedora/kovalevsky> has joined #yocto | 12:11 | |
*** emrius <emrius!5edfbc5d@dslb-094-223-188-093.094.223.pools.vodafone-ip.de> has joined #yocto | 12:12 | |
emrius | Hello together, I ran into a strange error: do_package_qa: QA Issue: non debug package contains .debug directory. | 12:12 |
emrius | This is strange 1. because the stated .debug directory doesn't exist and 2. I have no idea why that directory was created. | 12:13 |
emrius | The recipe compiles some c code through a makefile | 12:13 |
emrius | Can anyone shed some light onto 1. or 2.? | 12:13 |
*** dev1990 <dev1990!~dev@asx191.neoplus.adsl.tpnet.pl> has joined #yocto | 12:18 | |
emrius | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" fixed that for now. But I'm still a little confused about number 1. | 12:21 |
emrius | anyway... | 12:21 |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has quit IRC | 12:24 | |
*** emrius <emrius!5edfbc5d@dslb-094-223-188-093.094.223.pools.vodafone-ip.de> has quit IRC | 12:25 | |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has joined #yocto | 12:26 | |
*** vermaete <vermaete!51f6329a@mail.oip.be> has joined #yocto | 12:29 | |
vermaete | Hi, | 12:29 |
vermaete | Is there a way to set the compiler options to a more strict was (e.g. -Wall, pedantic, ...) in a recipe or local.conf? | 12:30 |
vermaete | I could like to use this in the CI to do some QA measurements. | 12:30 |
vermaete | I know there is insane.bbclass, but this seems to be more about yocto itself and not the compiler of some bb recipes. | 12:31 |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has joined #yocto | 12:33 | |
qschulz | vermaete: CFLAGS += in your recipe? | 12:35 |
vermaete | Could work, but if possible I was looking for an option at local.conf that would be used for all recipes. | 12:36 |
vermaete | Well, I was just wondering how Yocto/OE of users where doing this. | 12:36 |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has quit IRC | 12:39 | |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has joined #yocto | 12:40 | |
mcfrisk | vermaete: meta/conf/bitbake.conf and *OPTMIZIATION flags, you can change these in distro or local.conf | 12:41 |
mcfrisk | note that some recipes do overwrite e.g. -O2 optimization with -O3, so for Os builds for example some patches will be needed to make these effective. inspection of buildhistory for sizes with Os or do_compile logs for other flags will be needed. | 12:42 |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has quit IRC | 12:45 | |
*** maudat <maudat!~moda@107-190-37-226.cpe.teksavvy.com> has joined #yocto | 12:47 | |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has joined #yocto | 12:52 | |
qschulz | mcfrisk: and if I can add, I got bit recently by a SW that would work with -O0 only :) | 12:52 |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has quit IRC | 12:57 | |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has joined #yocto | 12:58 | |
vermaete | thanks! I will check these things. | 12:59 |
mcfrisk | qschulz: I've been there too. it was an expensive bit of SW too. well done from their sales team.. | 13:00 |
qschulz | mcfrisk: signing tool for secure boot from the SoC vendor for me :) | 13:00 |
mcfrisk | oh, those are fun.. | 13:01 |
mcfrisk | should we start the daily/weekly BSP bashing rant? | 13:01 |
PatrickE | hey i created a simple recipe, now i get ERROR: Function failed: BUILDSPEC any advice? | 13:05 |
PatrickE | :q | 13:05 |
paulbarker | PatrickE: Can you share the full error via a pastebin? | 13:05 |
PatrickE | iam already pasting it | 13:06 |
PatrickE | http://dpaste.com/1CC2T5P | 13:07 |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 13:09 | |
*** vermaete <vermaete!51f6329a@mail.oip.be> has quit IRC | 13:09 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 13:09 | |
paulbarker | PatrickE: The full bitbake output would make things clearer | 13:11 |
*** ericch <ericch!~ericch@pool-108-34-251-214.prvdri.fios.verizon.net> has joined #yocto | 13:13 | |
PatrickE | paulbarker its the same | 13:21 |
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has quit IRC | 13:24 | |
paulbarker | PatrickE: So you ran bitbake and that was the full output? | 13:24 |
paulbarker | What was the bitbake command? | 13:25 |
PatrickE | yes | 13:25 |
*** jobroe <jobroe!~manjaro-u@p579EB668.dip0.t-ipconnect.de> has quit IRC | 13:25 | |
PatrickE | error: line 6: Empty tag: Group: | 13:30 |
PatrickE | This is the error | 13:30 |
*** kroon <kroon!~kroon@213.185.29.22> has joined #yocto | 13:37 | |
*** caiortp <caiortp!d57f6fca@gateway/web/cgi-irc/kiwiirc.com/ip.213.127.111.202> has quit IRC | 13:40 | |
paulbarker | PatrickE: Please share the command you executed and the full output printed, we can't really help from what you've shared so far | 13:41 |
*** ssajal <ssajal!~ssajal@otwaon1146w-lp140-01-64-229-138-221.dsl.bell.ca> has joined #yocto | 13:43 | |
*** berton_ <berton_!~berton@181.220.114.167> has joined #yocto | 13:46 | |
*** PatrickE <PatrickE!a5e14925@gateway/web/cgi-irc/kiwiirc.com/ip.165.225.73.37> has quit IRC | 13:47 | |
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has quit IRC | 13:47 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 13:47 | |
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@5.171.136.38> has joined #yocto | 13:47 | |
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has joined #yocto | 13:47 | |
*** berton <berton!~berton@181.220.114.167> has quit IRC | 13:48 | |
*** otavio <otavio!~otavio@debian/developer/otavio> has quit IRC | 13:49 | |
*** otavio <otavio!~otavio@181.220.114.167> has joined #yocto | 13:50 | |
*** otavio <otavio!~otavio@debian/developer/otavio> has joined #yocto | 13:50 | |
*** dmoseley <dmoseley!~dmoseley@24.214.86.237> has joined #yocto | 13:51 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 13:53 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 13:58 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 13:59 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 13:59 | |
qschulz | has anyone ever had an issue with a file-rdeps issue for lib32-gstreamer1.0-plugins-good-cairo package? | 14:06 |
qschulz | QA Issue: /usr/lib/gstreamer-1.0/libgstcairo.so requires libcairo-gobject.so.2, but no providers found in RDEPEND | 14:09 |
*** kroon <kroon!~kroon@213.185.29.22> has quit IRC | 14:12 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 14:12 | |
*** ibinderwolf <ibinderwolf!~quassel@host232-105-dynamic.31-79-r.retail.telecomitalia.it> has quit IRC | 14:17 | |
*** thomas_dee79 <thomas_dee79!91fdde45@145.253.222.69> has joined #yocto | 14:18 | |
*** thomas_dee <thomas_dee!91fdde45@145.253.222.69> has joined #yocto | 14:18 | |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has quit IRC | 14:20 | |
thomas_dee | Hello, when bitbaking the linux kernel, there might be some unset CONFIG-switches. The build then aborts with an error message stating the missing CONFIG. | 14:20 |
thomas_dee | The problem ist now: I have a lot of unset CONFIG switches and I have to run bitbake again and agian to add all the missing swicthes step by step. | 14:20 |
thomas_dee | Is there a global "set all unset CONFIG switches to [n]" | 14:21 |
thomas_dee | ? | 14:21 |
*** rob_w_ <rob_w_!~bob@dslb-084-062-252-232.084.062.pools.vodafone-ip.de> has quit IRC | 14:21 | |
thomas_dee | Additional info: we use a custom default-config | 14:22 |
*** pi2 <pi2!~pi@ti0005q162-3189.bb.online.no> has joined #yocto | 14:24 | |
paulbarker | thomas_dee: How did you generate the custom config? | 14:26 |
*** pi____ <pi____!~pi@ti0005q162-3196.bb.online.no> has joined #yocto | 14:27 | |
thomas_dee | We used menuconfig and then saved it. BUT, we also "add" cfg snippets in the do_configure_append. And those (there set) CONFIG switches adds some more CONFIG-dependencies which I want to default to [n] | 14:27 |
*** pi_____ <pi_____!~pi@ti0005q162-1987.bb.online.no> has quit IRC | 14:28 | |
*** pi2 <pi2!~pi@ti0005q162-3189.bb.online.no> has quit IRC | 14:30 | |
*** pi2 <pi2!~pi@ti0005q162-3212.bb.online.no> has joined #yocto | 14:30 | |
*** pi_____ <pi_____!~pi@ti0005q162-3287.bb.online.no> has joined #yocto | 14:32 | |
*** berton_ <berton_!~berton@181.220.114.167> has quit IRC | 14:33 | |
*** pi______ <pi______!~pi@ti0005q162-3367.bb.online.no> has joined #yocto | 14:33 | |
*** AndersD_ <AndersD_!~AndersD@195-67-57-138.customer.telia.com> has quit IRC | 14:33 | |
*** pi____ <pi____!~pi@ti0005q162-3196.bb.online.no> has quit IRC | 14:33 | |
*** pi2 <pi2!~pi@ti0005q162-3212.bb.online.no> has quit IRC | 14:34 | |
*** pi_____ <pi_____!~pi@ti0005q162-3287.bb.online.no> has quit IRC | 14:36 | |
*** joseppc <joseppc!~josep@c-df07225c.010-118-73746f7.bbcust.telenor.se> has joined #yocto | 14:37 | |
*** joseppc <joseppc!~josep@unaffiliated/joseppc> has joined #yocto | 14:37 | |
*** pi2 <pi2!~pi@ti0005q162-3481.bb.online.no> has joined #yocto | 14:37 | |
*** joseppc <joseppc!~josep@unaffiliated/joseppc> has left #yocto | 14:38 | |
*** pi______ <pi______!~pi@ti0005q162-3367.bb.online.no> has quit IRC | 14:40 | |
*** otavio <otavio!~otavio@debian/developer/otavio> has quit IRC | 14:48 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 14:49 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 14:49 | |
*** otavio <otavio!~otavio@debian/developer/otavio> has joined #yocto | 14:50 | |
*** pi____ <pi____!~pi@ti0005q162-3640.bb.online.no> has joined #yocto | 14:51 | |
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC | 14:52 | |
*** pi2 <pi2!~pi@ti0005q162-3481.bb.online.no> has quit IRC | 14:54 | |
qschulz | wth. So... cairo-gobject package is created but not lib32-cairo-gobject... | 14:57 |
qschulz | but there is a packages-split directory for it with the correct lib in it | 14:57 |
qschulz | how could this happen? | 14:57 |
*** nameclash <nameclash!~gollum@ip1f11b23e.dynamic.kabel-deutschland.de> has joined #yocto | 14:58 | |
nameclash | hi everyone, is there anything special in baking meta packages? I want to bake meta-toolchain-qt5 which works fine when passing it directly to bitbake, however when I add it to IMAGE_INSTALL in core-image-minimal.bbappend it fails complaining "No package meta-toolchain-qt5 available" .... I'm confused and can't find anything really useful on this out there | 15:02 |
jpuhlman | nameclash: Yeah meta packages do not generate packages that can be included in an image. | 15:02 |
jpuhlman | meta-toolchain-qt5 is a build target for generating an SDK. | 15:03 |
nameclash | ok, I see | 15:03 |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 15:04 | |
jpuhlman | nameclash, The target part you want in your image is likely packagegroup-qt5-toolchain-target | 15:04 |
nameclash | actually that was my ultimate goal anyway, I just needed qmake to be included in an SDK | 15:04 |
*** pi2 <pi2!~pi@ti0005q162-3888.bb.online.no> has joined #yocto | 15:04 | |
nameclash | thanks @jpuhlman, that's reasonable info | 15:05 |
*** ningauble <ningauble!~ningauble@c-73-157-47-121.hsd1.wa.comcast.net> has quit IRC | 15:06 | |
*** pi____ <pi____!~pi@ti0005q162-3640.bb.online.no> has quit IRC | 15:08 | |
jpuhlman | nameclash, in a normal case you could add the packaagegroup to your image, and run the image -c populate_sdk or -c populates_ext_sdk and it will give you a working sdk with qt5. However the qt5 toolchain sdk also adds in nativesdk-qttools-tools to make the sdk more usable for qt development. | 15:08 |
nameclash | I'm running a build with nativesdk-packagegroup-qt5-toolchain-host now and see what I get | 15:10 |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 15:10 | |
nameclash | it should include nativesdk-packagegroup-sdk-host, nativesdk-qttools-tools and nativesdk-qtbase-tools | 15:10 |
*** thomas_dee <thomas_dee!91fdde45@145.253.222.69> has quit IRC | 15:13 | |
jpuhlman | nameclash yeah. that will build the packages that are used to assemble the meta-toolchain-qt5 sdk, but it won't actually build the sdk itself. | 15:13 |
nameclash | sdk creation is already in place, I'm just adding more packages in there | 15:14 |
qschulz | ok, found it. It's a license issue. LICENSE_${PN}-gobject does not seem to work for the lib32 variant for some reason..... | 15:14 |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 15:15 | |
*** guerinoni <guerinoni!~guerinoni@host9-78-dynamic.251-95-r.retail.telecomitalia.it> has quit IRC | 15:17 | |
jpuhlman | You would need to rebuild the sdk in order for new packages to be added. | 15:17 |
*** pi____ <pi____!~pi@ti0005q162-4037.bb.online.no> has joined #yocto | 15:19 | |
*** guerinoni <guerinoni!~guerinoni@host9-78-dynamic.251-95-r.retail.telecomitalia.it> has joined #yocto | 15:19 | |
jpuhlman | if you built meta-toolchain-qt5 they should already exist since that is what it keys off of. You have to alter TOOLCHAIN_HOST_TASK to add new nativesdk packages and TOOLCHAIN_TARGET_TASK to add new target packages to the sdk. | 15:19 |
*** pi2 <pi2!~pi@ti0005q162-3888.bb.online.no> has quit IRC | 15:22 | |
nameclash | I added nativesdk-packagegroup-qt5-toolchain-host to TOOLCHAIN_HOST_TASK_append | 15:24 |
jpuhlman | So looking at the meta-toolchain task they are doing some extra env output likely to enable additional stuff. | 15:24 |
nameclash | yeah they're adding the target toolchain and qtcreator, I don't need any of these | 15:26 |
nameclash | packagegroup-qt5-toolchain-target and packagegroup-qt5-qtcreator-debug ... dont need em | 15:27 |
nameclash | thanks jpuhlman, gotta go afk now before my wife freaks out | 15:28 |
nameclash | homeoffice around the globe is cool but you gotta know where to make the cut :) | 15:29 |
*** pi2 <pi2!~pi@ti0005q162-4222.bb.online.no> has joined #yocto | 15:32 | |
*** pi____ <pi____!~pi@ti0005q162-4037.bb.online.no> has quit IRC | 15:35 | |
yocti | New news from stackoverflow: How do I enable bridged networking in Xen guest? <https://stackoverflow.com/questions/55907917/how-do-i-enable-bridged-networking-in-xen-guest> | 15:38 |
*** locutus_ <locutus_!~LocutusOf@5.171.137.33> has joined #yocto | 15:42 | |
nameclash | jpuhlman, I'm getting "environment-setup.d conflicts between attempted installs of nativesdk-cmake-3.8.2-r0.x86_64_nativesdk and nativesdk-qtbase-tools-5.9.8+git0+82eb6aa08e-r0.x86_64_nativesdk" on do_populate_sdk now, do I interpret this right that the two are populating overlapping artifacts? | 15:42 |
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has quit IRC | 15:45 | |
*** pi____ <pi____!~pi@ti0005q162-4439.bb.online.no> has joined #yocto | 15:47 | |
jpuhlman | Perhaps, can you put the error in pastbin? | 15:47 |
*** pi2 <pi2!~pi@ti0005q162-4222.bb.online.no> has quit IRC | 15:49 | |
*** vmeson <vmeson!~rmacleod@192-0-133-244.cpe.teksavvy.com> has quit IRC | 15:54 | |
*** pi2 <pi2!~pi@ti0005q162-4517.bb.online.no> has joined #yocto | 15:56 | |
*** rcw <rcw!~rcw@45.72.195.246> has joined #yocto | 15:58 | |
*** pi____ <pi____!~pi@ti0005q162-4439.bb.online.no> has quit IRC | 15:59 | |
*** pi_____ <pi_____!~pi@ti0005q162-4618.bb.online.no> has joined #yocto | 15:59 | |
*** vmeson <vmeson!~rmacleod@192-0-133-244.cpe.teksavvy.com> has joined #yocto | 16:00 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 16:01 | |
*** pi2 <pi2!~pi@ti0005q162-4517.bb.online.no> has quit IRC | 16:02 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 16:06 | |
yocti | New news from stackoverflow: gnome.gtk-doc() gives permission denied error in Yocto (do_install) <https://stackoverflow.com/questions/61104614/gnome-gtk-doc-gives-permission-denied-error-in-yocto-do-install> | 16:08 |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 16:12 | |
*** pi2 <pi2!~pi@ti0005q162-4884.bb.online.no> has joined #yocto | 16:14 | |
*** JaMa <JaMa!~martin@109.238.218.228> has joined #yocto | 16:16 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 16:16 | |
*** pi_____ <pi_____!~pi@ti0005q162-4618.bb.online.no> has quit IRC | 16:16 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 16:25 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 16:25 | |
*** pi____ <pi____!~pi@ti0005q162-5107.bb.online.no> has joined #yocto | 16:27 | |
*** pi2 <pi2!~pi@ti0005q162-4884.bb.online.no> has quit IRC | 16:30 | |
*** mckoan is now known as mckoan|away | 16:38 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 16:42 | |
*** pi2 <pi2!~pi@ti0005q162-5491.bb.online.no> has joined #yocto | 16:42 | |
*** pi____ <pi____!~pi@ti0005q162-5107.bb.online.no> has quit IRC | 16:44 | |
*** bradfa <bradfa!uid297668@gateway/web/irccloud.com/x-ufijrweccvynhjsw> has joined #yocto | 16:47 | |
*** pi____ <pi____!~pi@ti0005q162-5678.bb.online.no> has joined #yocto | 16:53 | |
*** frsc <frsc!~frsc@220-67-142-46.pool.kielnet.net> has quit IRC | 16:54 | |
*** pi_____ <pi_____!~pi@ti0005q162-5680.bb.online.no> has joined #yocto | 16:55 | |
*** pi2 <pi2!~pi@ti0005q162-5491.bb.online.no> has quit IRC | 16:56 | |
*** pi____ <pi____!~pi@ti0005q162-5678.bb.online.no> has quit IRC | 16:58 | |
*** vineela <vineela!vtummala@nat/intel/x-prwliipvrzudvcdk> has joined #yocto | 16:59 | |
*** kovalevsky <kovalevsky!~kovalevsk@fedora/kovalevsky> has quit IRC | 17:08 | |
*** amaury_d <amaury_d!~amaury_@lfbn-idf1-1-361-18.w86-195.abo.wanadoo.fr> has quit IRC | 17:10 | |
*** pi2 <pi2!~pi@ti0005q162-5909.bb.online.no> has joined #yocto | 17:11 | |
*** pi_____ <pi_____!~pi@ti0005q162-5680.bb.online.no> has quit IRC | 17:14 | |
*** robert_yang <robert_yang!~robert@60.247.85.82> has quit IRC | 17:18 | |
moto-timo | JPEW: dunfell branch created. thank you for the reminder | 17:18 |
*** robert_yang <robert_yang!~robert@60.247.85.82> has joined #yocto | 17:19 | |
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has joined #yocto | 17:19 | |
*** maudat <maudat!~moda@107-190-37-226.cpe.teksavvy.com> has quit IRC | 17:22 | |
*** pi____ <pi____!~pi@ti0005q162-6014.bb.online.no> has joined #yocto | 17:22 | |
*** pi2 <pi2!~pi@ti0005q162-5909.bb.online.no> has quit IRC | 17:25 | |
*** nerdboy <nerdboy!~sarnold@47.143.129.125> has joined #yocto | 17:27 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 17:27 | |
*** milloni <milloni!~milloni@preemptable.org> has quit IRC | 17:27 | |
*** milloni <milloni!~milloni@preemptable.org> has joined #yocto | 17:31 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 17:32 | |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has joined #yocto | 17:33 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 17:36 | |
*** pi2 <pi2!~pi@ti0005q162-6290.bb.online.no> has joined #yocto | 17:38 | |
qschulz | OK, there is definitely a LICENSE issue with multilib packages. | 17:39 |
*** falk0n <falk0n!~falk0n@a95-93-70-118.cpe.netcabo.pt> has quit IRC | 17:39 | |
*** falk0n <falk0n!~falk0n@a81-84-41-184.cpe.netcabo.pt> has joined #yocto | 17:40 | |
*** pi____ <pi____!~pi@ti0005q162-6014.bb.online.no> has quit IRC | 17:41 | |
The_Pacifist | don't want to dox anyone but is there someone here names phillip who went to VT? | 17:45 |
*** maudat <maudat!~moda@107-190-37-226.cpe.teksavvy.com> has joined #yocto | 17:48 | |
*** pi____ <pi____!~pi@ti0005q162-6469.bb.online.no> has joined #yocto | 17:50 | |
*** pi2 <pi2!~pi@ti0005q162-6290.bb.online.no> has quit IRC | 17:53 | |
*** vineela <vineela!vtummala@nat/intel/x-prwliipvrzudvcdk> has quit IRC | 18:04 | |
*** pi2 <pi2!~pi@ti0005q162-6705.bb.online.no> has joined #yocto | 18:05 | |
*** pi____ <pi____!~pi@ti0005q162-6469.bb.online.no> has quit IRC | 18:09 | |
*** pi____ <pi____!~pi@ti0005q162-6851.bb.online.no> has joined #yocto | 18:18 | |
*** falk0n <falk0n!~falk0n@a81-84-41-184.cpe.netcabo.pt> has quit IRC | 18:19 | |
*** pi2 <pi2!~pi@ti0005q162-6705.bb.online.no> has quit IRC | 18:21 | |
*** vineela <vineela!~vtummala@134.134.139.74> has joined #yocto | 18:23 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 18:24 | |
*** vineela <vineela!~vtummala@134.134.139.74> has quit IRC | 18:30 | |
*** vineela <vineela!~vtummala@134.134.139.74> has joined #yocto | 18:31 | |
*** pi2 <pi2!~pi@ti0005q162-7120.bb.online.no> has joined #yocto | 18:33 | |
bluelightning | The_Pacifist: I believe there is yes | 18:35 |
bluelightning | I will poke him and he will get in contact | 18:36 |
*** pi____ <pi____!~pi@ti0005q162-6851.bb.online.no> has quit IRC | 18:36 | |
Crofton|road | it is no secret | 18:39 |
Crofton|road | The_Pacifist: I am likely the person you seek | 18:40 |
*** khem <khem!~khem@unaffiliated/khem> has quit IRC | 18:41 | |
*** pi____ <pi____!~pi@ti0005q162-7214.bb.online.no> has joined #yocto | 18:44 | |
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto | 18:45 | |
armpit | I would have asked why they are looking for you before raising your hand. | 18:47 |
*** pi2 <pi2!~pi@ti0005q162-7120.bb.online.no> has quit IRC | 18:47 | |
armpit | maybe that philip is involved in some sort of love triangle | 18:48 |
zeddii | lets start some rumours | 18:49 |
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto | 18:50 | |
*** bradfa <bradfa!uid297668@gateway/web/irccloud.com/x-ufijrweccvynhjsw> has quit IRC | 18:57 | |
*** kovalevsky <kovalevsky!~kovalevsk@181.168.100.76> has joined #yocto | 18:58 | |
*** kovalevsky <kovalevsky!~kovalevsk@fedora/kovalevsky> has joined #yocto | 18:58 | |
*** pi2 <pi2!~pi@ti0005q162-7400.bb.online.no> has joined #yocto | 19:01 | |
*** pi____ <pi____!~pi@ti0005q162-7214.bb.online.no> has quit IRC | 19:04 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 19:08 | |
*** pi____ <pi____!~pi@ti0005q162-7493.bb.online.no> has joined #yocto | 19:12 | |
paulg | ooh, worked for the giant electronic conglomerate Phillips, I heard. | 19:13 |
khem | is it equilateral or one-sides triangle | 19:13 |
paulg | stole top sekrit plans for a new screwdriver too. | 19:14 |
*** locutus_ <locutus_!~LocutusOf@5.171.137.33> has quit IRC | 19:15 | |
*** pi2 <pi2!~pi@ti0005q162-7400.bb.online.no> has quit IRC | 19:15 | |
*** pharaon2502 <pharaon2502!~manjaro-u@cpe-188-129-77-144.dynamic.amis.hr> has quit IRC | 19:15 | |
*** vineela <vineela!~vtummala@134.134.139.74> has quit IRC | 19:19 | |
*** amaury_d <amaury_d!~amaury_@lfbn-idf1-1-361-18.w86-195.abo.wanadoo.fr> has joined #yocto | 19:22 | |
zeddii | had to admit that robertson is superior to phillips | 19:23 |
* zeddii wonders if only the canadians got that reference. | 19:24 | |
paulg | funny, since I was thinking of typing a square head reference too.... | 19:24 |
*** vineela <vineela!~vtummala@134.134.139.74> has joined #yocto | 19:25 | |
paulg | That should be a Canadian immigration test. List the robertson colours from smallest to largest. | 19:26 |
paulg | automatic fail if you spell colour wrong. | 19:26 |
zeddii | harsh! | 19:27 |
paulg | gotta keep the heathens out, and we can't afford to build a wall. ;) | 19:28 |
*** pi2 <pi2!~pi@ti0005q162-0146.bb.online.no> has joined #yocto | 19:28 | |
khem | export Tim Hortons to other countries then you wont need wall :) | 19:30 |
mischief1 | it looks like commit 8946c65c8f0 broke using icecc with a kernel recipe. is that expected? | 19:30 |
*** pi____ <pi____!~pi@ti0005q162-7493.bb.online.no> has quit IRC | 19:31 | |
paulg | khem, https://locations.timhortons.com/us.html | 19:32 |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has quit IRC | 19:32 | |
*** pi____ <pi____!~pi@ti0005q162-0303.bb.online.no> has joined #yocto | 19:40 | |
*** pi2 <pi2!~pi@ti0005q162-0146.bb.online.no> has quit IRC | 19:42 | |
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@5.171.137.64> has joined #yocto | 19:43 | |
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has joined #yocto | 19:43 | |
*** pi2 <pi2!~pi@ti0005q162-0505.bb.online.no> has joined #yocto | 19:56 | |
*** pi____ <pi____!~pi@ti0005q162-0303.bb.online.no> has quit IRC | 20:00 | |
*** nerdboy <nerdboy!~sarnold@47.143.129.26> has joined #yocto | 20:02 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 20:02 | |
*** pi____ <pi____!~pi@ti0005q162-0701.bb.online.no> has joined #yocto | 20:07 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 20:09 | |
*** pi2 <pi2!~pi@ti0005q162-0505.bb.online.no> has quit IRC | 20:10 | |
*** rcw <rcw!~rcw@45.72.195.246> has quit IRC | 20:12 | |
*** rcw <rcw!~rcw@45.72.195.246> has joined #yocto | 20:13 | |
mischief1 | i filed a bug about icecc, i hope using BZ is the right approach.. | 20:18 |
*** aidanh_ <aidanh_!~aidanh@unaffiliated/aidanh> has joined #yocto | 20:19 | |
*** aidanh <aidanh!~aidanh@unaffiliated/aidanh> has quit IRC | 20:21 | |
*** aidanh_ is now known as aidanh | 20:22 | |
*** pi2 <pi2!~pi@ti0005q162-0942.bb.online.no> has joined #yocto | 20:24 | |
*** dev1990 <dev1990!~dev@asx191.neoplus.adsl.tpnet.pl> has quit IRC | 20:24 | |
*** pi____ <pi____!~pi@ti0005q162-0701.bb.online.no> has quit IRC | 20:27 | |
*** pi____ <pi____!~pi@ti0005q162-1032.bb.online.no> has joined #yocto | 20:35 | |
*** guerinoni <guerinoni!~guerinoni@host9-78-dynamic.251-95-r.retail.telecomitalia.it> has quit IRC | 20:38 | |
*** pi2 <pi2!~pi@ti0005q162-0942.bb.online.no> has quit IRC | 20:38 | |
*** adelcast <adelcast!~adelcast@cpe-68-203-3-226.austin.res.rr.com> has joined #yocto | 20:39 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has quit IRC | 20:39 | |
*** flihp <flihp!~flihp@76.243.124.129> has joined #yocto | 20:40 | |
*** pi2 <pi2!~pi@ti0005q162-1190.bb.online.no> has joined #yocto | 20:51 | |
*** pi____ <pi____!~pi@ti0005q162-1032.bb.online.no> has quit IRC | 20:55 | |
*** JaMa <JaMa!~martin@109.238.218.228> has quit IRC | 20:59 | |
*** rburton <rburton!~rburton@134.191.227.39> has quit IRC | 21:01 | |
*** pi____ <pi____!~pi@ti0005q162-1393.bb.online.no> has joined #yocto | 21:03 | |
*** pi2 <pi2!~pi@ti0005q162-1190.bb.online.no> has quit IRC | 21:05 | |
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has quit IRC | 21:07 | |
*** pohly <pohly!~pohly@p5B05600C.dip0.t-ipconnect.de> has quit IRC | 21:13 | |
*** rcw <rcw!~rcw@45.72.195.246> has quit IRC | 21:18 | |
*** pi2 <pi2!~pi@ti0005q162-1513.bb.online.no> has joined #yocto | 21:19 | |
*** pi____ <pi____!~pi@ti0005q162-1393.bb.online.no> has quit IRC | 21:22 | |
*** pi____ <pi____!~pi@ti0005q162-1607.bb.online.no> has joined #yocto | 21:30 | |
*** pi2 <pi2!~pi@ti0005q162-1513.bb.online.no> has quit IRC | 21:33 | |
*** timemaster5 <timemaster5!~timemaste@cpc108963-cmbg20-2-0-cust781.5-4.cable.virginm.net> has joined #yocto | 21:37 | |
*** pi2 <pi2!~pi@ti0005q162-1748.bb.online.no> has joined #yocto | 21:47 | |
*** pi____ <pi____!~pi@ti0005q162-1607.bb.online.no> has quit IRC | 21:50 | |
nameclash | I'm trying to configure a qt based project for my target platform using qmake that I baked into the nativesdk and get this error: | 21:51 |
nameclash | Checking for Qt using qmake ......... no (Qt include directory "/home/user/work/montavista/meta-user/opencgx-xilinx-2.4/project/tmp/work/x86_64-nativesdk-montavistasdk-linux/nativesdk-qtbase/5.9.8+gitAUTOINC+82eb6aa08e-r0/recipe-sysroot/opt/montavista/sysroots/x86_64-montavistasdk-linux/usr/include/qt5" does not exist) | 21:51 |
nameclash | somehow the tmp directory from the build process has found its way into the built qmake. I don't understand what's going on -- does this look familiar to any of you? (maybe also in the context of other recipes?) | 21:52 |
*** nerdboy <nerdboy!~sarnold@47.143.129.79> has joined #yocto | 21:55 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 21:55 | |
*** pi____ <pi____!~pi@ti0005q162-1831.bb.online.no> has joined #yocto | 21:58 | |
khem | nameclash: your SDK vendor should be right entity to help you | 22:00 |
*** nameclash <nameclash!~gollum@ip1f11b23e.dynamic.kabel-deutschland.de> has quit IRC | 22:00 | |
khem | if you can reproduce it with master perhaps someone here might be able to assist you better | 22:01 |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has joined #yocto | 22:01 | |
*** pi2 <pi2!~pi@ti0005q162-1748.bb.online.no> has quit IRC | 22:01 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 22:04 | |
*** hpsy <hpsy!55cb0f78@85.203.15.120> has joined #yocto | 22:06 | |
*** nameclash <nameclash!~gollum@ip1f11b23e.dynamic.kabel-deutschland.de> has joined #yocto | 22:07 | |
*** leon-anavi <leon-anavi!~Leon@78.130.197.211> has quit IRC | 22:08 | |
yocti | New news from stackoverflow: Recipe Build Failure for requests-unixsocket <https://stackoverflow.com/questions/61110730/recipe-build-failure-for-requests-unixsocket> | 22:09 |
*** pi2 <pi2!~pi@ti0005q162-1971.bb.online.no> has joined #yocto | 22:14 | |
*** pi____ <pi____!~pi@ti0005q162-1831.bb.online.no> has quit IRC | 22:17 | |
*** pi____ <pi____!~pi@ti0005q162-2062.bb.online.no> has joined #yocto | 22:25 | |
*** hpsy <hpsy!55cb0f78@85.203.15.120> has quit IRC | 22:27 | |
*** pi2 <pi2!~pi@ti0005q162-1971.bb.online.no> has quit IRC | 22:28 | |
*** leon-anavi <leon-anavi!~Leon@78.130.197.211> has joined #yocto | 22:33 | |
*** pi2 <pi2!~pi@ti0005q162-2258.bb.online.no> has joined #yocto | 22:41 | |
*** pi____ <pi____!~pi@ti0005q162-2062.bb.online.no> has quit IRC | 22:44 | |
*** pi____ <pi____!~pi@ti0005q162-2354.bb.online.no> has joined #yocto | 22:53 | |
*** pi2 <pi2!~pi@ti0005q162-2258.bb.online.no> has quit IRC | 22:56 | |
*** leon-anavi <leon-anavi!~Leon@78.130.197.211> has quit IRC | 22:56 | |
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has quit IRC | 23:05 | |
*** pi2 <pi2!~pi@ti0005q162-2476.bb.online.no> has joined #yocto | 23:09 | |
*** pi____ <pi____!~pi@ti0005q162-2354.bb.online.no> has quit IRC | 23:12 | |
*** pi____ <pi____!~pi@ti0005q162-2542.bb.online.no> has joined #yocto | 23:20 | |
*** pi2 <pi2!~pi@ti0005q162-2476.bb.online.no> has quit IRC | 23:23 | |
*** pi2 <pi2!~pi@ti0005q162-2768.bb.online.no> has joined #yocto | 23:37 | |
*** agust <agust!~agust@pD95F11D0.dip0.t-ipconnect.de> has quit IRC | 23:37 | |
yocti | New news from stackoverflow: imx6qsabresd Yocto compile driver selftest/demo application on the linux-imx recipe <https://stackoverflow.com/questions/61111628/imx6qsabresd-yocto-compile-driver-selftest-demo-application-on-the-linux-imx-rec> | 23:39 |
*** pi____ <pi____!~pi@ti0005q162-2542.bb.online.no> has quit IRC | 23:40 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 23:42 | |
*** mauz555 <mauz555!~mauz555@2a01:e0a:56d:9090:dd4:468f:5afc:d70b> has quit IRC | 23:43 | |
*** pi____ <pi____!~pi@ti0005q162-2842.bb.online.no> has joined #yocto | 23:48 | |
*** pi2 <pi2!~pi@ti0005q162-2768.bb.online.no> has quit IRC | 23:51 |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!