*** fatalhalt <fatalhalt!~fatalhalt@c-67-163-60-93.hsd1.il.comcast.net> has joined #yocto | 00:04 | |
*** adelcast <adelcast!~adelcast@130.164.62.198> has quit IRC | 00:06 | |
*** quijote <quijote!~dqx@unaffiliated/dqx> has joined #yocto | 03:39 | |
*** edgar444 <edgar444!uid214381@gateway/web/irccloud.com/x-xxciembbovdzjezf> has joined #yocto | 04:17 | |
*** fatalhalt <fatalhalt!~fatalhalt@c-67-163-60-93.hsd1.il.comcast.net> has quit IRC | 05:22 | |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has joined #yocto | 05:30 | |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has quit IRC | 05:33 | |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has joined #yocto | 05:35 | |
*** mihai <mihai!~mihai@unaffiliated/mihai> has joined #yocto | 05:36 | |
*** thaytan <thaytan!~thaytan@180-150-69-32.b49645.syd.nbn.aussiebb.net> has quit IRC | 05:51 | |
*** thaytan <thaytan!~thaytan@180-150-69-32.b49645.syd.nbn.aussiebb.net> has joined #yocto | 05:53 | |
*** JaMa <JaMa!~martin@ip-217-030-068-212.aim-net.cz> has joined #yocto | 06:05 | |
*** alessioigor <alessioigor!~alessioig@140.105.207.227> has joined #yocto | 06:06 | |
*** cvasilak <cvasilak!~cvasilak@2a02:587:8118:a100:d0b1:8d83:b978:99f6> has joined #yocto | 06:19 | |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has quit IRC | 06:38 | |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has joined #yocto | 06:39 | |
*** thaytan <thaytan!~thaytan@180-150-69-32.b49645.syd.nbn.aussiebb.net> has quit IRC | 06:43 | |
*** luckywho <luckywho!~quassel@49.207.50.14> has joined #yocto | 06:46 | |
*** agust <agust!~agust@p508B63E2.dip0.t-ipconnect.de> has joined #yocto | 06:46 | |
luckywho | LetoThe2nd: rburton: few days back i had some query related to python missing modules. I'm able to fix that i got all python modules and pip packages. Thanks for your advice. | 06:50 |
---|---|---|
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto | 07:22 | |
*** mccc <mccc!~mccc@c-73-239-24-228.hsd1.wa.comcast.net> has quit IRC | 07:22 | |
*** cvasilak_ <cvasilak_!~cvasilak@ppp-94-64-12-74.home.otenet.gr> has joined #yocto | 07:43 | |
*** cvasilak <cvasilak!~cvasilak@2a02:587:8118:a100:d0b1:8d83:b978:99f6> has quit IRC | 07:44 | |
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto | 07:44 | |
*** OutBackDingo <OutBackDingo!~quassel@unaffiliated/outbackdingo> has quit IRC | 08:53 | |
*** OutBackDingo <OutBackDingo!~quassel@unaffiliated/outbackdingo> has joined #yocto | 08:55 | |
*** sk_tandt <sk_tandt!~sk_tandt@net-5-88-141-17.cust.vodafonedsl.it> has joined #yocto | 08:58 | |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 09:18 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 09:22 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto | 09:24 | |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 09:39 | |
luckywho | rburton: few days back i had some query related to python missing modules. I'm able to fix that i got all python modules and pip packages. Thanks for your advice. | 10:05 |
qschulz | luckywho: do you mind explaining what were your mistakes and/or how you fixed them? This chan is archived so it might be helpful for people to know how you did it :0 | 10:18 |
qschulz | :)* | 10:18 |
luckywho | Custom yocto meta files, python is available but missing lot of python modules(/usr/lib/python2.7/). I need to identify correct image file. After identifying correct base image file. Added IMAGE_INSTALL += "python-modules", IMAGE_INSTALL += "python-misc", IMAGE_INSTALL += "python-pip". | 10:24 |
*** diego_r <diego_r!~diego@host57-224-static.7-79-b.business.telecomitalia.it> has joined #yocto | 10:25 | |
qschulz | luckywho: why do you need those python packages in the first place? | 10:50 |
qschulz | is any of your scripts/SW/packages using those? | 10:50 |
qschulz | if yes, you might want to identify your packages and add an RDEPENDS_${PN} += "python-misc python-pip python-modules"to each of the ones than requires something? That way your packages are not actually dependent on images | 10:52 |
luckywho | qshulz: Python modules are required in target filesystem. I'm trying to get mozilla web of things work on development board to understand IOT. | 10:57 |
qschulz | but are required by whom? Is the package depending on python-modules/pip/misc installed by Yocto in the filesystem? | 11:04 |
qschulz | For example, I could very much give the ability to my users to install python packages by using pip, then IMAGE_INSTALL += "python-pip" is the way to go. | 11:04 |
qschulz | However, if I have a software calling pip directly in a script (init script for example or updating dependencies for example), then python-pip should be a RDEPENDS of the said package | 11:05 |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 11:18 | |
*** thaytan <thaytan!~thaytan@180-150-69-32.b49645.syd.nbn.aussiebb.net> has joined #yocto | 11:43 | |
*** berton <berton!~berton@181.220.86.53> has joined #yocto | 11:47 | |
*** berton <berton!~berton@181.220.86.53> has quit IRC | 11:55 | |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has quit IRC | 11:55 | |
*** berton <berton!~berton@181.220.86.53> has joined #yocto | 11:56 | |
*** yacar_ <yacar_!~yacar@2a01:e0a:1a4:9320:8452:e774:f155:8d00> has joined #yocto | 12:09 | |
*** geissonator <geissonator!~geissonat@32.97.110.57> has joined #yocto | 12:14 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:1b0a> has joined #yocto | 12:45 | |
*** AndersD <AndersD!~AndersD@h83-209-191-235.cust.a3fiber.se> has joined #yocto | 12:53 | |
*** AndersD_ <AndersD_!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has joined #yocto | 12:55 | |
*** AndersD <AndersD!~AndersD@h83-209-191-235.cust.a3fiber.se> has quit IRC | 12:58 | |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 13:04 | |
*** JPEW <JPEW!cc4da337@gateway/web/freenode/ip.204.77.163.55> has joined #yocto | 13:25 | |
*** AndersD_ <AndersD_!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has quit IRC | 13:31 | |
RP | JPEW: I've added a patch to sort out the mutliconfig backwards compatibility | 13:39 |
RP | JPEW: can you check if that works for you | 13:39 |
RP | ? | 13:39 |
JPEW | RP: Oh, thanks! | 13:39 |
JPEW | Yes, I will do that | 13:39 |
RP | JPEW: didn't want to merge the others until we got that sorted | 13:40 |
JPEW | Also, good news: my weird qemu hang was due to my machine acting up. I don't think it was any fault in OE. | 13:43 |
RP | JPEW: ok, good to have it tracked down | 13:45 |
RP | JPEW: we're seeing a lot of weirdness atm :/ | 13:45 |
JPEW | RP: Anything that would be useful for me to try? | 13:49 |
RP | JPEW: no, its mostly autobuilder stuff now I think. Process limits, the weird gpg locked memory race and so on | 13:52 |
JPEW | K | 13:52 |
RP | JPEW: the AB UI is acting odd too :( | 13:52 |
RP | On the positive side we are managing to get the bug counts sort of under control: https://wiki.yoctoproject.org/charts/combo.html | 13:53 |
JPEW | Thats good.... the scale on that graph makes it a little hard to see the recent trend :) | 13:56 |
*** rcw <rcw!~rcw@128.224.252.2> has joined #yocto | 13:57 | |
RP | JPEW: we just have a worrying increase in the number of medium+ bugs | 13:57 |
*** tprrt <tprrt!~tprrt@upc31-1-78-208-110-13.fbx.proxad.net> has joined #yocto | 13:59 | |
JPEW | Ya, It seems to be the default category | 14:03 |
*** gaulishcoin <gaulishcoin!~gaulishco@anice-652-1-118-199.w83-201.abo.wanadoo.fr> has joined #yocto | 14:13 | |
*** tprrt <tprrt!~tprrt@upc31-1-78-208-110-13.fbx.proxad.net> has quit IRC | 14:30 | |
* RP wonders whether master is ready to build M1 | 14:36 | |
*** Crofton_ <Crofton_!~Crofton@23-25-123-169-static.hfc.comcastbusiness.net> has joined #yocto | 14:42 | |
*** Crofton_ is now known as Crofton|road | 14:43 | |
*** Crofton|road is now known as Crofton|work | 14:43 | |
*** cvasilak_ <cvasilak_!~cvasilak@ppp-94-64-12-74.home.otenet.gr> has quit IRC | 14:45 | |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC | 15:04 | |
*** jacques <jacques!~jacques@nslu2-linux/jacques> has quit IRC | 15:10 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 15:28 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 15:41 | |
*** ecdhe <ecdhe!~quassel@unaffiliated/ecdhe> has joined #yocto | 15:45 | |
armpit | RP, let me know if you kick off an M1 build | 15:46 |
*** jacques <jacques!~jacques@nslu2-linux/jacques> has joined #yocto | 15:47 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC | 15:49 | |
*** rburton_ <rburton_!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto | 15:49 | |
*** rburton_ <rburton_!~rburton@35.106.2.81.in-addr.arpa> has quit IRC | 15:52 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto | 15:52 | |
JPEW | If I run "bitbake --setscene-only core-image-minimal && bitbake --no-setscene core-image-minimal" is that functionally equivalent to "bitbake core-image-minimal" ? | 15:56 |
RP | JPEW: approximately, I can imagine it perhaps doing something slightly differently | 16:01 |
RP | armpit: curious why but will do :) | 16:09 |
ecdhe | New to yocto, want to make a recipe to place a single python script in an arbitrary location on the filesystem... any quickstart examples of this? | 16:11 |
armpit | so i don't build at same time | 16:14 |
*** sk_tandt <sk_tandt!~sk_tandt@net-5-88-141-17.cust.vodafonedsl.it> has quit IRC | 16:16 | |
rburton | ecdhe: put the script url in SRC_URI, copy it in do_install | 16:23 |
ecdhe | thanks rburton | 16:24 |
*** geissonator <geissonator!~geissonat@32.97.110.57> has quit IRC | 16:28 | |
*** yacar_ <yacar_!~yacar@2a01:e0a:1a4:9320:8452:e774:f155:8d00> has quit IRC | 16:31 | |
*** robbawebba <robbawebba!~rob@47.180.176.91> has quit IRC | 16:36 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 16:38 | |
*** vineela <vineela!~vtummala@134.134.139.75> has joined #yocto | 16:41 | |
RP | armpit: its started | 16:48 |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:1b0a> has quit IRC | 16:55 | |
*** diego_r <diego_r!~diego@host57-224-static.7-79-b.business.telecomitalia.it> has quit IRC | 17:16 | |
*** dl9pf <dl9pf!~quassel@opensuse/member/dl9pf> has joined #yocto | 17:25 | |
*** edgar444 <edgar444!uid214381@gateway/web/irccloud.com/x-xxciembbovdzjezf> has quit IRC | 17:27 | |
*** tprrt <tprrt!~tprrt@upc31-1-78-208-110-13.fbx.proxad.net> has joined #yocto | 17:35 | |
*** geissonator <geissonator!~geissonat@45-18-127-186.lightspeed.austtx.sbcglobal.net> has joined #yocto | 17:37 | |
*** Crofton|work <Crofton|work!~Crofton@23-25-123-169-static.hfc.comcastbusiness.net> has quit IRC | 17:58 | |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto | 18:16 | |
*** Crofton_ <Crofton_!~Crofton@23-25-123-169-static.hfc.comcastbusiness.net> has joined #yocto | 18:18 | |
*** dv_ <dv_!~dv@62.178.50.190> has quit IRC | 18:40 | |
*** dv_ <dv_!~dv@62.178.50.190> has joined #yocto | 18:54 | |
*** Crofton__ <Crofton__!~Crofton@23-25-123-169-static.hfc.comcastbusiness.net> has joined #yocto | 19:14 | |
*** Crofton__ <Crofton__!~Crofton@23-25-123-169-static.hfc.comcastbusiness.net> has joined #yocto | 19:14 | |
*** Crofton__ is now known as Crofton|road | 19:16 | |
*** Crofton_ <Crofton_!~Crofton@23-25-123-169-static.hfc.comcastbusiness.net> has quit IRC | 19:17 | |
*** lazyape <lazyape!~lazyape@athedsl-211560.home.otenet.gr> has joined #yocto | 19:24 | |
*** mccc <mccc!~mccc@c-73-239-24-228.hsd1.wa.comcast.net> has joined #yocto | 20:09 | |
mccc | Hi LetoThe2nd, I'm sorry I missed you last week. I'd be really interested to hear your experiences using Yocto to build cloud web server images. | 20:10 |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 20:11 | |
*** diego_r <diego_r!~diego@81.29.205.101> has joined #yocto | 20:22 | |
*** robbawebba <robbawebba!~rob@47.180.176.91> has joined #yocto | 20:24 | |
*** diego_r <diego_r!~diego@81.29.205.101> has quit IRC | 20:27 | |
*** geissonator <geissonator!~geissonat@45-18-127-186.lightspeed.austtx.sbcglobal.net> has quit IRC | 20:34 | |
*** yacar_ <yacar_!~yacar@80.215.2.22> has joined #yocto | 20:44 | |
*** yacar_ <yacar_!~yacar@80.215.2.22> has left #yocto | 20:45 | |
* armpit if you play LetoThe2nd videos backwards, it says "armpit it the devil" | 20:46 | |
*** JaMa <JaMa!~martin@ip-217-030-068-212.aim-net.cz> has quit IRC | 20:57 | |
JPEW | armpit: You have to play them backwards? ;) | 21:13 |
*** vineela <vineela!~vtummala@134.134.139.75> has quit IRC | 21:14 | |
*** flying_sausages <flying_sausages!~flying_sa@static.88-198-40-49.clients.your-server.de> has quit IRC | 21:15 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 21:17 | |
*** flying_sausages <flying_sausages!~flying_sa@static.88-198-40-49.clients.your-server.de> has joined #yocto | 21:19 | |
*** tprrt <tprrt!~tprrt@upc31-1-78-208-110-13.fbx.proxad.net> has quit IRC | 21:26 | |
*** berton <berton!~berton@181.220.86.53> has quit IRC | 21:27 | |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC | 21:28 | |
*** agust <agust!~agust@p508B63E2.dip0.t-ipconnect.de> has quit IRC | 21:36 | |
armpit | JPEW, : ) so its just given knowledge | 21:36 |
*** rcw <rcw!~rcw@128.224.252.2> has quit IRC | 21:40 | |
*** Crofton|road <Crofton|road!~Crofton@23-25-123-169-static.hfc.comcastbusiness.net> has quit IRC | 21:43 | |
*** gaulishcoin <gaulishcoin!~gaulishco@anice-652-1-118-199.w83-201.abo.wanadoo.fr> has quit IRC | 22:03 | |
*** Crofton|road <Crofton|road!~Crofton@38.90.133.135> has joined #yocto | 22:12 | |
*** fatalhalt <fatalhalt!~fatalhalt@c-67-163-60-93.hsd1.il.comcast.net> has joined #yocto | 22:15 | |
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-aumceoiuuvjqglge> has joined #yocto | 22:39 | |
*** sudobash1 <sudobash1!~sudobash1@96-95-138-177-static.hfc.comcastbusiness.net> has quit IRC | 23:32 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 23:38 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!