*** paulg <paulg!~paulg@173.239.178.230> has quit IRC | 00:10 | |
*** nighty <nighty!~nighty@d246113.ppp.asahi-net.or.jp> has joined #yocto | 00:18 | |
*** paulg <paulg!~paulg@198-84-239-75.cpe.teksavvy.com> has joined #yocto | 00:34 | |
*** dreyna <dreyna!~dreyna@unknown-216-201.windriver.com> has quit IRC | 00:34 | |
*** tjamison <tjamison!~tjamison@38.104.105.146> has left #yocto | 00:57 | |
*** evanmeagher <evanmeagher!~MongooseW@70-36-227-16.dsl.dynamic.fusionbroadband.com> has quit IRC | 01:02 | |
*** billr <billr!~wcrandle@134.134.139.70> has quit IRC | 01:08 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC | 01:24 | |
wrmrx | question - is there an easy way to add a repository that isn't available on git to a toaster configuration? i've tried editing toasterconf.json but i'm not sure where in the file it goes | 01:40 |
---|---|---|
wrmrx | i have some board support files from NXP that i need to be made available to bitbake but i'm not sure how to add it via the administrator interface nor through editing the json file, since both seem to want to be linked to a git repository | 01:41 |
*** crankslider <crankslider!~slidercra@unaffiliated/slidercrank> has quit IRC | 01:42 | |
khem | wrmrx:what kind of files are these | 01:45 |
khem | it could be better that you write a recipe for it and hold these files together in a tarball somewhere in your n/w | 01:45 |
wrmrx | n/w? | 01:45 |
wrmrx | it's a layer with some machine definitions and some patches | 01:46 |
bluelightning | as far as metadata goes, if you want to use local layers with Toaster you use the "import layer" function | 01:46 |
*** god <god!nchambers@carmelirc.duckdns.org> has quit IRC | 01:47 | |
wrmrx | from the toaster ui? doesn't that ask you for a remote repo name? | 01:47 |
khem | file:///path/to/local/fs might work too | 01:50 |
wrmrx | as vcs_url? | 01:50 |
*** paulg <paulg!~paulg@198-84-239-75.cpe.teksavvy.com> has quit IRC | 01:50 | |
wrmrx | also - currently, i'm putting the entry for the repo on the same level under "layers": [] listed here: http://www.yoctoproject.org/docs/2.0.2/toaster-manual/toaster-manual.html#layer-source-using-with-toaster | 01:51 |
wrmrx | is that correct or should it be a separate layer source? | 01:51 |
wrmrx | i'm assuming it should be okay because i put my non-tracked layer in the same folder as meta-yocto and meta-yocto-bsp | 01:52 |
bluelightning | the actual location on disk is not important (or it shouldn't be...) | 01:52 |
wrmrx | as long as it's within the scope of "../../" ? | 01:53 |
wrmrx | (as described by "apiurl" on the top level) | 01:53 |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 01:55 | |
wrmrx | i mean, isn't a local layer the procedure through which people might want to work on patches and build through toaster? | 01:58 |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has joined #yocto | 02:02 | |
bluelightning | AFAIK, layers should be specified using an absolute path, that means they can be anywhere | 02:05 |
wrmrx | ah, okay | 02:05 |
bluelightning | btw if you have Toaster-related questions that you don't get answers to, you might get more informed responses by posting to the toaster mailing list | 02:06 |
wrmrx | then, in the example toasterconf.json, why is it that the default apiurl is "../../" and all the layers on that source are relative to that? | 02:06 |
wrmrx | thanks, i'll keep that in mind | 02:06 |
bluelightning | I'm not sure I'm afraid | 02:07 |
wrmrx | i may just return to doin it by hand, i'm not sure toaster actually offers too much that i don't already have besides possibly a visual frontend | 02:07 |
bluelightning | it may be worth keeping in mind that toasterconf.json is just what gets used to create the database, once it's created you should use the Toaster main UI and/or the Toaster admin interface to configure it | 02:08 |
wrmrx | ah, okay | 02:08 |
bluelightning | being able to examine the build output through Toaster is useful, but then you don't need to actually start your builds through Toaster for that (there's another mode where it just collects data for a command-line build) | 02:09 |
wrmrx | yep, that's where you launch it with source, correct? | 02:12 |
*** cference <cference!~cference@104-222-118-95.cpe.teksavvy.com> has quit IRC | 02:14 | |
wrmrx | also -- quick last question -- thanks so much for helping me thus far -- i'm trying to compile yocto with kernel dynamic debug messages turned on, and i've tried a few different things | 02:15 |
wrmrx | as per this file (https://www.kernel.org/doc/Documentation/dynamic-debug-howto.txt) i see that i'm supposed to enable a flag in the kernel config file, which as i understand it gets built up from many config files throughout the layers | 02:16 |
wrmrx | so what's the easiest way to just set one flag? i tried writing a patch to add a config fragment, but it didn't seem to work; and the only kernel flag that i can set with bitbake -c menuconfig doesn't give me the level of logging that i want | 02:16 |
armpit | mmm, toast | 02:19 |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has quit IRC | 02:21 | |
bluelightning | wrmrx: by "the only kernel flag you could set" do you mean CONFIG_DYNAMIC_DEBUG ? | 02:22 |
bluelightning | wrmrx: which other ones are there? | 02:22 |
wrmrx | the one listed in menuconfig is just DYNAMIC_DEBUG | 02:24 |
bluelightning | right, the same thing then | 02:24 |
wrmrx | so that should work? | 02:24 |
bluelightning | it should, I don't see any others listed in that document | 02:24 |
bluelightning | I don't have any knowledge of dynamic debugging in the kernel though | 02:25 |
wrmrx | i'll give it another shot | 02:25 |
bluelightning | just going by what I read in that text file | 02:25 |
wrmrx | alright | 02:25 |
bluelightning | note that just turning that option on isn't enough according to that, it looks like you actually need to tell it to turn on debug output for individual files at runtime | 02:25 |
wrmrx | yep | 02:26 |
wrmrx | however | 02:26 |
wrmrx | i haven't gotten it to the point where anything is visible at /sys/kernel/debug/dynamic_debug | 02:26 |
wrmrx | it mounts debugfs ok but the dynamic_debug directory isn't there | 02:26 |
bluelightning | you may need to talk to someone with actual kernel experience then I'm afraid | 02:27 |
bluelightning | I can certainly tell you how to determine if that option is really on for the kernel you built though | 02:27 |
wrmrx | ah that is very useful | 02:29 |
wrmrx | yes p&ty | 02:29 |
wrmrx | esp. given that i've been calling menuconfig with the target virtual/kernel and im' not 100% on whether that actually applies to my target, which is for a specific SCM | 02:31 |
bluelightning | first run bitbake -e virtual/kernel | grep ^STAGING_KERNEL_BUILDDIR= | 02:44 |
bluelightning | then grep CONFIG_DYNAMIC_DEBUG on the .config file in the directory that reports | 02:44 |
wrmrx | tytytyty | 02:45 |
*** wrmrx <wrmrx!0cc9f26a@gateway/web/freenode/ip.12.201.242.106> has quit IRC | 02:49 | |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has joined #yocto | 02:52 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 03:25 | |
*** moto-timo <moto-timo!~ttorling@134.134.139.78> has joined #yocto | 03:52 | |
*** moto-timo <moto-timo!~ttorling@fsf/member/moto-timo> has joined #yocto | 03:52 | |
*** yann|work <yann|work!~yann@85-171-21-92.rev.numericable.fr> has quit IRC | 04:00 | |
*** marquiz_ <marquiz_!~marquiz@134.191.220.75> has quit IRC | 04:03 | |
*** ulf^ <ulf^!~ulf@static-50-53-65-202.bvtn.or.frontiernet.net> has joined #yocto | 04:13 | |
*** yann|work <yann|work!~yann@85-171-21-92.rev.numericable.fr> has joined #yocto | 04:15 | |
*** _stephan <_stephan!~stephan@213.168.84.195> has joined #yocto | 04:15 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 04:29 | |
*** ulf^ <ulf^!~ulf@static-50-53-65-202.bvtn.or.frontiernet.net> has quit IRC | 04:40 | |
*** gtristan <gtristan!~tristanva@110.11.179.37> has quit IRC | 05:02 | |
*** AndersD <AndersD!~anders@213-64-218-130-no126.business.telia.com> has joined #yocto | 05:10 | |
*** AndersD <AndersD!~anders@213-64-218-130-no126.business.telia.com> has quit IRC | 05:13 | |
*** AndersD <AndersD!~anders@213-64-218-130-no126.business.telia.com> has joined #yocto | 05:13 | |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has quit IRC | 05:15 | |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has joined #yocto | 05:16 | |
*** aehs29 <aehs29!~aehernan@134.134.137.75> has left #yocto | 05:18 | |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has quit IRC | 05:21 | |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has joined #yocto | 05:29 | |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-rxpumzpimvioweef> has joined #yocto | 05:31 | |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has quit IRC | 05:33 | |
*** wenzong <wenzong!~wfan@106.120.101.38> has quit IRC | 05:42 | |
*** wenzong <wenzong!~wfan@106.120.101.38> has joined #yocto | 05:43 | |
*** gtristan <gtristan!~tristanva@121.131.110.69> has joined #yocto | 05:49 | |
*** mwarning <mwarning!~mwarning@2001:a60:a07d:1:f1a7:7fd5:cd33:a84c> has joined #yocto | 05:56 | |
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto | 06:09 | |
*** frsc <frsc!~frsc@80.149.173.67> has joined #yocto | 06:10 | |
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has joined #yocto | 06:11 | |
*** pohly <pohly!~pohly@p5DE8FB93.dip0.t-ipconnect.de> has joined #yocto | 06:12 | |
*** TobSnyder <TobSnyder!~schneider@ip9234b44d.dynamic.kabel-deutschland.de> has joined #yocto | 06:15 | |
*** toanju <toanju!~toanju@185.27.182.30> has joined #yocto | 06:15 | |
*** demonimin <demonimin!~demonimin@unaffiliated/demonimin> has quit IRC | 06:16 | |
*** WarheadsSE <WarheadsSE!~WarheadsS@c-174-54-190-115.hsd1.pa.comcast.net> has quit IRC | 06:22 | |
*** agust <agust!~agust@p4FCB6E25.dip0.t-ipconnect.de> has joined #yocto | 06:23 | |
*** WarheadsSE <WarheadsSE!~WarheadsS@c-174-54-190-115.hsd1.pa.comcast.net> has joined #yocto | 06:23 | |
*** ziggo <ziggo!~ziggo@217.89.178.116> has quit IRC | 06:39 | |
*** ziggo <ziggo!~ziggo@217.89.178.116> has joined #yocto | 06:39 | |
*** obsrwr <obsrwr!~otp-amois@89.121.200.102> has joined #yocto | 06:52 | |
-YoctoAutoBuilder- build #928 of nightly is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly/builds/928 | 06:52 | |
*** jbrianceau <jbrianceau!uid10952@gateway/web/irccloud.com/x-fpovqwirngwiqkyp> has joined #yocto | 06:54 | |
*** sambaran <sambaran!~sambaran@14.141.45.13> has joined #yocto | 06:55 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto | 06:56 | |
sambaran | guys is toaster working with the master branch? | 06:56 |
sambaran | for me it shows error | 06:56 |
*** townxelliot <townxelliot!~ell@176.251.41.101> has joined #yocto | 06:59 | |
*** oan <oan!~oan@c83-254-9-28.bredband.comhem.se> has quit IRC | 07:00 | |
*** townxelliot <townxelliot!~ell@176.251.41.101> has joined #yocto | 07:01 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto | 07:04 | |
*** fredcadete <fredcadete!d4a63893@gateway/web/freenode/ip.212.166.56.147> has left #yocto | 07:06 | |
*** fredcadete <fredcadete!d4a63893@gateway/web/freenode/ip.212.166.56.147> has joined #yocto | 07:06 | |
*** phatina <phatina!~phatina@82-119-96-90.static.chello.sk> has quit IRC | 07:08 | |
*** phatina <phatina!~phatina@82-119-96-90.static.chello.sk> has joined #yocto | 07:08 | |
*** bachp <bachp!~bachp@194.204.66.58> has joined #yocto | 07:09 | |
*** fl0v0 <fl0v0!~fvo@pD9F6A8D6.dip0.t-ipconnect.de> has joined #yocto | 07:13 | |
*** rajm <rajm!~robertmar@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 07:13 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 07:26 | |
*** boucman_work <boucman_work!~boucman@247.37.0.109.rev.sfr.net> has joined #yocto | 07:28 | |
*** jku <jku!jku@nat/intel/x-kgomgpmfcpiipylj> has joined #yocto | 07:30 | |
*** mathieu1 <mathieu1!~mathieu@92-111-78-37.static.chello.nl> has joined #yocto | 07:33 | |
*** sno <sno!~sno@p578b540c.dip0.t-ipconnect.de> has quit IRC | 07:33 | |
*** joshuagl <joshuagl!joshuagl@nat/intel/x-ipbdcjqjpwitatci> has joined #yocto | 07:33 | |
*** vdehors_ <vdehors_!~vdehors@bob75-2-81-56-46-209.fbx.proxad.net> has joined #yocto | 07:44 | |
*** josep <josep!~josep@c-a0e4e455.010-118-73746f7.cust.bredbandsbolaget.se> has quit IRC | 07:44 | |
*** vdehors <vdehors!~vdehors@193.56.60.161> has quit IRC | 07:48 | |
*** edbart <edbart!ebartosh@nat/intel/x-phmcznotkstaegrr> has joined #yocto | 07:51 | |
*** rburton <rburton!~Adium@home.burtonini.com> has joined #yocto | 07:53 | |
*** toscalix <toscalix!~toscalix@149.100.1.68> has joined #yocto | 07:53 | |
*** crankslider <crankslider!~slidercra@unaffiliated/slidercrank> has joined #yocto | 07:56 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 07:57 | |
*** rubdos <rubdos!~rubdos@d54c65054.access.telenet.be> has joined #yocto | 08:00 | |
*** CoLa|work <CoLa|work!~cordlandw@195.243.131.130> has joined #yocto | 08:06 | |
*** fredcadete <fredcadete!d4a63893@gateway/web/freenode/ip.212.166.56.147> has quit IRC | 08:09 | |
*** fredcadete <fredcadete!d4a63893@gateway/web/freenode/ip.212.166.56.147> has joined #yocto | 08:13 | |
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC | 08:16 | |
*** maxin <maxin!~maxin@37-219-242-214.nat.bb.dnainternet.fi> has joined #yocto | 08:18 | |
*** Biliogadafr <Biliogadafr!~pin@nat3-minsk-pool-46-53-183-225.telecom.by> has joined #yocto | 08:21 | |
*** oan <oan!~oan@c83-254-9-28.bredband.comhem.se> has joined #yocto | 08:40 | |
*** sno <sno!~sno@62.157.143.22> has joined #yocto | 08:43 | |
*** belen <belen!Adium@nat/intel/x-jkvvzilzvysqiruy> has joined #yocto | 08:49 | |
*** belen <belen!Adium@nat/intel/x-jkvvzilzvysqiruy> has quit IRC | 08:51 | |
*** belen <belen!~Adium@134.134.137.71> has joined #yocto | 08:51 | |
*** sameo_ <sameo_!~samuel@192.55.54.40> has joined #yocto | 08:54 | |
*** belen <belen!~Adium@134.134.137.71> has quit IRC | 08:55 | |
*** sgw_ <sgw_!~sgw_@134.134.139.82> has quit IRC | 08:59 | |
*** belen <belen!~Adium@134.134.139.77> has joined #yocto | 08:59 | |
*** sgw_ <sgw_!~sgw_@134.134.139.82> has joined #yocto | 09:00 | |
*** crankslider <crankslider!~slidercra@unaffiliated/slidercrank> has quit IRC | 09:00 | |
*** RzR <RzR!~RzR@82.236.136.171> has quit IRC | 09:03 | |
*** RzR <RzR!~RzR@unaffiliated/rzr> has joined #yocto | 09:03 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC | 09:13 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto | 09:14 | |
*** mathieu_la <mathieu_la!~root@92-111-78-37.static.chello.nl> has joined #yocto | 09:14 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 09:16 | |
*** gaurang <gaurang!74c5b80b@gateway/web/freenode/ip.116.197.184.11> has joined #yocto | 09:21 | |
gaurang | hi developers | 09:26 |
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto | 09:26 | |
gaurang | how can we maintain linux kernel continuous development out of the yocto tree, still having some dependent recipes (like perf) inside yocto layer | 09:27 |
gaurang | any suggestion | 09:27 |
boucman_work | hmm | 09:27 |
boucman_work | do you need to modify perf or just recompile it with your modified kernel ? | 09:28 |
boucman_work | (I am not sure how tools like perf are built, yocto-wise) | 09:28 |
gaurang | there are even some kernel dependent recipes as well | 09:29 |
boucman_work | gaurang: and how do you develop your kernel ? do you use devtool (I think devtool can be used on kernels) externalsrc ? or do you just compile out of yocto and then replace the kernel on the generate images ? | 09:29 |
gaurang | currently it is inside yocto only | 09:30 |
gaurang | but like for continous development environment | 09:30 |
gaurang | like shall i build full yocto everytime when kernel developer commit their changes in git ?? | 09:31 |
-YoctoAutoBuilder- build #929 of nightly is complete: Failure [failed] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly/builds/929 | 09:32 | |
boucman_work | ok, so your devs work on their own git, then push to a repo and your CI infrastructure pulls from that repo, right ? | 09:32 |
gaurang | we have seperate kernel developers, who will keep committing their changes in git | 09:32 |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has joined #yocto | 09:32 | |
gaurang | yes kernel recipe is pointing to private repo | 09:33 |
gaurang | so for each commit, is it OK to build Yocto everytime? I don't think this is good idea | 09:33 |
gaurang | and I also need to take care kernel dependent other recipes | 09:34 |
gaurang | so confused like what is the best way to maintain always TOT of kernel ? | 09:34 |
boucman_work | gaurang: i am not sure I understand your question... it depends on the capacity of your CI, it's not really a yocto question | 09:34 |
gaurang | so you mean to say, per kernel commit, one yocto build ?? | 09:35 |
boucman_work | I personnaly would rebuild nightly rather than on every commit, but that's really a question for you to answer... | 09:35 |
boucman_work | yocto is good at building "only what is needed" but when the kernel is changed, "what is needed" can be quite large | 09:36 |
gaurang | yes correct | 09:36 |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has quit IRC | 09:37 | |
gaurang | because not i need to maintain kernel build, dependent recipe should also be built when there is a kernel change | 09:38 |
gaurang | so that is a big problem | 09:38 |
fredcadete | gaurang: are there that many recipes dependent on the *kernel*? considering that linux-libc-headers are separate | 09:40 |
gaurang | i would say for me its 8-9 recipes | 09:41 |
boucman_work | that's not many, you can probably rebuild at every commit... | 09:41 |
*** chatter <chatter!~chatter@92-111-78-37.static.chello.nl> has joined #yocto | 09:42 | |
*** chatter is now known as mathieu_la | 09:42 | |
*** mathieu1 <mathieu1!~mathieu@92-111-78-37.static.chello.nl> has quit IRC | 09:44 | |
*** mathieu_la <mathieu_la!~chatter@92-111-78-37.static.chello.nl> has joined #yocto | 09:44 | |
*** nighty <nighty!~nighty@d246113.ppp.asahi-net.or.jp> has quit IRC | 09:47 | |
*** mathieu_la <mathieu_la!~chatter@92-111-78-37.static.chello.nl> has quit IRC | 09:53 | |
*** lewiatan_ <lewiatan_!~piotr@b2b-94-79-174-114.unitymedia.biz> has joined #yocto | 09:54 | |
fredcadete | gaurang: maybe I'm not understanding your cost of "build full Yocto". Consider as well that if you reuse sstate, only the kernel+dependent recipes are built for that use case | 09:55 |
*** mathieu_la <mathieu_la!~chatter@92-111-78-37.static.chello.nl> has joined #yocto | 09:55 | |
gaurang | yes cost is not much, but i would like to understand what is the best practise available and yocto developers are using | 09:57 |
lewiatan_ | Hi. What will happen if I set do_configure_prepend() in my *.bbappend but such task is already in *.bb? I'm asking because I need to prepend something to existing prepend without changing original recipe. | 09:58 |
fredcadete | gaurang: ack. I'd also like to know of a better way if there is one | 09:59 |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC | 10:04 | |
*** armpit <armpit!~akuster@2601:202:4001:9ea0:ddc0:e30a:8ba7:370c> has quit IRC | 10:05 | |
rburton | lewiatan_: you can have multiple _prepends or _appends and they all apply | 10:06 |
lewiatan_ | Great. Thank you rburton (and sorry to others for getting in the middle of conversation) | 10:07 |
*** armpit <armpit!~akuster@2601:202:4001:9ea0:ddc0:e30a:8ba7:370c> has joined #yocto | 10:08 | |
*** maxin <maxin!~maxin@37-219-242-214.nat.bb.dnainternet.fi> has quit IRC | 10:09 | |
*** mathieu_la <mathieu_la!~chatter@92-111-78-37.static.chello.nl> has quit IRC | 10:13 | |
-YoctoAutoBuilder- build #240 of nightly-checkuri is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-checkuri/builds/240 | 10:16 | |
*** mathieu_ <mathieu_!~mathieu@92-111-78-37.static.chello.nl> has joined #yocto | 10:17 | |
*** RzR <RzR!~RzR@unaffiliated/rzr> has left #yocto | 10:22 | |
*** maxin <maxin!~maxin@2001:998:22:0:a9ed:7d21:23f1:b8d7> has joined #yocto | 10:29 | |
*** clopez <clopez!~tau@neutrino.es> has quit IRC | 10:29 | |
*** clopez <clopez!~tau@neutrino.es> has joined #yocto | 10:33 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC | 10:33 | |
*** gaurang <gaurang!74c5b80b@gateway/web/freenode/ip.116.197.184.11> has quit IRC | 10:43 | |
*** fl0v01 <fl0v01!~fvo@pD9F6A260.dip0.t-ipconnect.de> has joined #yocto | 10:48 | |
*** fl0v0 <fl0v0!~fvo@pD9F6A8D6.dip0.t-ipconnect.de> has quit IRC | 10:50 | |
*** gtristan <gtristan!~tristanva@121.131.110.69> has quit IRC | 10:51 | |
*** learning_yocto <learning_yocto!d997f20f@gateway/web/freenode/ip.217.151.242.15> has joined #yocto | 10:51 | |
learning_yocto | Hi! Is there any yocto variable with the absolute path of the layer in which your recipe is? | 10:51 |
*** belen <belen!~Adium@134.134.139.77> has quit IRC | 10:52 | |
*** present <present!~present@46.218.87.184> has joined #yocto | 10:55 | |
*** belen <belen!~Adium@134.134.139.77> has joined #yocto | 10:56 | |
-YoctoAutoBuilder- build #395 of nightly-wic is complete: Failure [failed BuildImages_3 CreateWicImages_2 CreateWicImages_3 CreateWicImages_4] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-wic/builds/395 | 10:58 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto | 11:02 | |
rburton | learning_yocto: THISDIR? | 11:11 |
learning_yocto | That points to the recipe dir... I guess could do ../../.. from there | 11:12 |
learning_yocto | but it would be nice if there was a varaible for the layer paht | 11:12 |
*** nighty <nighty!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto | 11:12 | |
fredcadete | learning_yocto: LAYERDIR? | 11:13 |
fredcadete | oops it's only for layer.conf | 11:13 |
*** frsc <frsc!~frsc@80.149.173.67> has quit IRC | 11:17 | |
boucman_work | learning_yocto: out of curiosity, why do you need that ? | 11:29 |
*** maxin1 <maxin1!~maxin@37-219-242-214.nat.bb.dnainternet.fi> has joined #yocto | 11:30 | |
*** maxin <maxin!~maxin@2001:998:22:0:a9ed:7d21:23f1:b8d7> has quit IRC | 11:31 | |
*** townxelliot <townxelliot!~ell@176.251.41.101> has quit IRC | 11:35 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 11:42 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 11:45 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 11:46 | |
*** frsc <frsc!~frsc@80.149.173.67> has joined #yocto | 11:47 | |
*** phatina <phatina!~phatina@82-119-96-90.static.chello.sk> has quit IRC | 11:47 | |
*** phatina <phatina!~phatina@82-119-96-90.static.chello.sk> has joined #yocto | 11:49 | |
learning_yocto | fredcadete: Yes.. I wish that was available from the recipies too.... | 11:50 |
learning_yocto | boucman_work: because I have some scripts in a "scripts" folder under the layer. some packages need to call these scripts, so I need the path | 11:50 |
rburton | set a variable in the layer.conf | 11:51 |
*** frsc <frsc!~frsc@80.149.173.67> has quit IRC | 11:52 | |
*** frsc <frsc!~frsc@80.149.173.67> has joined #yocto | 11:54 | |
*** ziggo <ziggo!~ziggo@217.89.178.116> has quit IRC | 11:55 | |
learning_yocto | Umh, I will try that | 11:58 |
learning_yocto | thanks! | 11:58 |
learning_yocto | BTW, is there a variable with the name of the workspace? | 11:59 |
learning_yocto | with the path * | 11:59 |
boucman_work | what do you mean by workspace ? $TOPDIR ? | 12:00 |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 12:03 | |
learning_yocto | Yes! thanks | 12:14 |
*** obsrwr <obsrwr!~otp-amois@89.121.200.102> has quit IRC | 12:19 | |
*** lamego <lamego!~jose@134.134.139.76> has joined #yocto | 12:23 | |
*** mago__ <mago__!~mago@unaffiliated/blastur> has quit IRC | 12:24 | |
*** fledermaus <fledermaus!~vivek@2a00:1098:5:0:49b6:6ca:be5e:7b6c> has joined #yocto | 12:24 | |
*** berton <berton!~fabio@177.100.227.79> has joined #yocto | 12:34 | |
*** _stephan <_stephan!~stephan@213.168.84.195> has quit IRC | 12:42 | |
learning_yocto | I am trying to make a recipe for some binaries which are needed on the development machine. They should also be included ni the sdk | 12:46 |
*** jku <jku!jku@nat/intel/x-kgomgpmfcpiipylj> has quit IRC | 12:46 | |
learning_yocto | I have used BBCLASSEXTEND = "native nativesdk" and I have added "DEPENDS += " mypackage-native" in those packages which need them | 12:46 |
boucman_work | DEPENDS is a recipe name, not a package name IIRC | 12:47 |
learning_yocto | Not sure how to implement the do_install() on the recipe for the native packages... The do_compile() generates several binaries in different paths. How should I implement the do_install method in order to have the binaries I need copieed? | 12:47 |
boucman_work | hmm | 12:47 |
boucman_work | or am I confused... | 12:47 |
*** WarheadsSE <WarheadsSE!~WarheadsS@c-174-54-190-115.hsd1.pa.comcast.net> has left #yocto | 12:47 | |
rburton | everyone is confused! | 12:49 |
rburton | the recipe should use bbclassextend to be buildable for native and nativesdk | 12:49 |
learning_yocto | Yep, I have done that | 12:49 |
rburton | what do_install does is up to how the source builds, but generally speaking a do_install should work for all instances | 12:49 |
rburton | then a recipe which needs foo-native to build should depend on foo-native, as you say | 12:50 |
learning_yocto | yeah, so my source is a little bit special | 12:50 |
learning_yocto | In the do_compile several bianries are created | 12:50 |
*** ziggo <ziggo!~ziggo@p2003006CCD49590036363BFFFED11AA2.dip0.t-ipconnect.de> has joined #yocto | 12:50 | |
learning_yocto | now I think in the do_install I need to copy them to some folder (${D}${bindir} ... ?) in order to be able to use them from any recipe | 12:50 |
rburton | yeah | 12:51 |
learning_yocto | oh, so is ${D}${bindir} the right folder? | 12:51 |
learning_yocto | do I also need to create any symbolic link? | 12:51 |
rburton | yes, and only if you want to make symlinks | 12:51 |
rburton | you don't need to | 12:51 |
learning_yocto | ok | 12:52 |
rburton | if you want nativesdk-foo in your SDK too - so you can run the binaries whilst using the sdk - then you need a variable i can't recall the name of | 12:52 |
learning_yocto | yes, I also need that | 12:52 |
learning_yocto | too bad you can recall that number =( | 12:52 |
learning_yocto | that name * | 12:52 |
learning_yocto | that name * | 12:53 |
rburton | SDK_RDEPENDS? | 12:55 |
learning_yocto | oh, i see what you mean | 12:55 |
learning_yocto | ok, i will look for that variable | 12:55 |
learning_yocto | thanks! | 12:55 |
rburton | yeah maybe append SDK_RDEPENDS in your image recipe with nativesdk-foo | 12:56 |
rburton | clearly this bit needs better documentation | 12:56 |
learning_yocto | shouldn't it be SDK_DEPENDS rather than SDK_RDEPENDS? | 12:57 |
learning_yocto | these are compile time dependencies | 12:57 |
*** igor2 <igor2!~igor@177.159.144.73> has joined #yocto | 13:00 | |
rburton | SDK_DEPENDS is stuff that you need to build the sdk with | 13:01 |
*** ntl <ntl!~nathanl@99-127-51-4.lightspeed.austtx.sbcglobal.net> has joined #yocto | 13:01 | |
rburton | you want RDEPENDS, things you want in the SDK | 13:01 |
rburton | (I think) | 13:01 |
learning_yocto | okey | 13:01 |
learning_yocto | thanks again | 13:01 |
*** paulg <paulg!~paulg@198-84-239-75.cpe.teksavvy.com> has joined #yocto | 13:02 | |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-rxpumzpimvioweef> has quit IRC | 13:17 | |
*** gtristan <gtristan!~tristanva@110.11.179.37> has joined #yocto | 13:23 | |
*** edbart <edbart!ebartosh@nat/intel/x-phmcznotkstaegrr> has quit IRC | 13:25 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 13:30 | |
*** edbart <edbart!ebartosh@nat/intel/x-yhoeaksmhpffbxzg> has joined #yocto | 13:30 | |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has joined #yocto | 13:33 | |
*** agust <agust!~agust@p4FCB6E25.dip0.t-ipconnect.de> has quit IRC | 13:35 | |
*** evanmeagher <evanmeagher!~MongooseW@c-73-71-33-109.hsd1.ca.comcast.net> has quit IRC | 13:38 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 13:55 | |
*** nisha <nisha!~nisha@38.104.105.146> has joined #yocto | 13:56 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 13:56 | |
*** nisha is now known as Guest54017 | 13:56 | |
*** Guest54017 <Guest54017!~nisha@38.104.105.146> has quit IRC | 13:57 | |
*** nish <nish!~nisha@38.104.105.146> has joined #yocto | 13:57 | |
*** nish is now known as nisha | 13:58 | |
*** AndersD <AndersD!~anders@213-64-218-130-no126.business.telia.com> has quit IRC | 13:58 | |
*** madisox <madisox!~madison@12.30.244.5> has joined #yocto | 14:03 | |
*** tjamison <tjamison!~tjamison@38.104.105.146> has joined #yocto | 14:06 | |
*** agust <agust!~agust@p4FCB612D.dip0.t-ipconnect.de> has joined #yocto | 14:07 | |
*** sambaran <sambaran!~sambaran@14.141.45.13> has quit IRC | 14:11 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 14:12 | |
*** jku <jku!~jku@dyj170ycrv18---3wlh9y-3.rev.dnainternet.fi> has joined #yocto | 14:13 | |
*** mathieu_la <mathieu_la!~weechatte@92-111-78-37.static.chello.nl> has joined #yocto | 14:16 | |
*** mathieu_ <mathieu_!~mathieu@92-111-78-37.static.chello.nl> has quit IRC | 14:16 | |
*** moto-timo <moto-timo!~ttorling@fsf/member/moto-timo> has quit IRC | 14:16 | |
*** abelloni_ is now known as abelloni | 14:26 | |
*** belen <belen!~Adium@134.134.139.77> has quit IRC | 14:29 | |
*** belen <belen!~Adium@134.134.139.77> has joined #yocto | 14:29 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has left #yocto | 14:29 | |
*** billr <billr!~billr@c-67-171-128-109.hsd1.or.comcast.net> has joined #yocto | 14:33 | |
*** igor2 <igor2!~igor@177.159.144.73> has quit IRC | 14:33 | |
*** igor2 <igor2!~igor@177.159.144.73> has joined #yocto | 14:33 | |
*** aehs29 <aehs29!~aehernan@134.134.139.77> has joined #yocto | 14:42 | |
*** TobSnyder <TobSnyder!~schneider@ip9234b44d.dynamic.kabel-deutschland.de> has quit IRC | 14:43 | |
*** yann|work <yann|work!~yann@85-171-21-92.rev.numericable.fr> has quit IRC | 14:48 | |
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto | 14:48 | |
*** bachp <bachp!~bachp@194.204.66.58> has quit IRC | 14:59 | |
*** yann|work <yann|work!~yann@85-171-21-92.rev.numericable.fr> has joined #yocto | 15:03 | |
*** ziggo <ziggo!~ziggo@p2003006CCD49590036363BFFFED11AA2.dip0.t-ipconnect.de> has quit IRC | 15:03 | |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-onijlmcefcqpyvun> has joined #yocto | 15:08 | |
joshuagl | vmeson: could you CC me, or let me know the # here, when you file the createrepo bug? | 15:09 |
*** frsc <frsc!~frsc@80.149.173.67> has quit IRC | 15:12 | |
*** toanju <toanju!~toanju@185.27.182.30> has quit IRC | 15:13 | |
*** ntl <ntl!~nathanl@99-127-51-4.lightspeed.austtx.sbcglobal.net> has quit IRC | 15:17 | |
*** maxin1 <maxin1!~maxin@37-219-242-214.nat.bb.dnainternet.fi> has quit IRC | 15:18 | |
*** fredcadete <fredcadete!d4a63893@gateway/web/freenode/ip.212.166.56.147> has quit IRC | 15:22 | |
*** benjamirc <benjamirc!~besquive@134.134.139.83> has joined #yocto | 15:24 | |
*** lpapp <lpapp!~lpapp@kde/lpapp> has joined #yocto | 15:24 | |
lpapp | hey, why cannot opkg overwrite symlinks if some nasty colleague replaces symlinks manually in /usr/lib? | 15:24 |
lpapp | if I say opkg install mylib. | 15:24 |
*** billr <billr!~billr@c-67-171-128-109.hsd1.or.comcast.net> has quit IRC | 15:26 | |
*** paulg <paulg!~paulg@198-84-239-75.cpe.teksavvy.com> has quit IRC | 15:27 | |
*** lewiatan_ <lewiatan_!~piotr@b2b-94-79-174-114.unitymedia.biz> has left #yocto | 15:28 | |
*** sgw_ <sgw_!~sgw_@134.134.139.82> has quit IRC | 15:32 | |
*** sgw_ <sgw_!~sgw_@134.134.139.82> has joined #yocto | 15:32 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC | 15:37 | |
*** rajm <rajm!~robertmar@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 15:42 | |
*** boucman_work <boucman_work!~boucman@247.37.0.109.rev.sfr.net> has quit IRC | 15:51 | |
*** florin <florin!~florin@79.115.204.37> has joined #yocto | 15:53 | |
florin | hi guys | 15:53 |
*** mwarning <mwarning!~mwarning@2001:a60:a07d:1:f1a7:7fd5:cd33:a84c> has quit IRC | 15:53 | |
*** florin is now known as Guest80793 | 15:54 | |
Guest80793 | how can one know which version of bitbake works with a certain branch of openembedded? | 15:54 |
Guest80793 | hi all | 15:54 |
Guest80793 | more specifically, I need to know which version of bitbake works with the krogoth branch of openembedded | 15:54 |
Guest80793 | openembedded-core that is | 15:55 |
*** present <present!~present@46.218.87.184> has quit IRC | 15:55 | |
rburton | Guest80793: https://wiki.yoctoproject.org/wiki/Releases, second table | 15:55 |
*** ntl <ntl!~nathanl@cpe-24-242-74-130.austin.res.rr.com> has joined #yocto | 15:57 | |
*** joshuagl <joshuagl!joshuagl@nat/intel/x-ipbdcjqjpwitatci> has quit IRC | 15:57 | |
Guest80793 | rburton, I tried that, using bitbake 1.30 and openembedded-core krogoth but I get this error | 15:58 |
Guest80793 | http://pastebin.com/BZhbBrfV | 15:58 |
Guest80793 | whereas this does not happen if using master of bitbake | 15:58 |
Guest80793 | so I thought I did not get the correct matching between bitbake and openembedded-core but apparently there is a problem there | 15:59 |
*** jku <jku!~jku@dyj170ycrv18---3wlh9y-3.rev.dnainternet.fi> has quit IRC | 15:59 | |
*** evanmeagher <evanmeagher!~MongooseW@70-36-227-16.dsl.dynamic.fusionbroadband.com> has joined #yocto | 16:04 | |
*** billr <billr!~wcrandle@134.134.139.74> has joined #yocto | 16:05 | |
*** belen <belen!~Adium@134.134.139.77> has quit IRC | 16:09 | |
*** belen <belen!~Adium@134.134.139.77> has joined #yocto | 16:10 | |
*** maxin <maxin!~maxin@37-219-242-214.nat.bb.dnainternet.fi> has joined #yocto | 16:16 | |
*** maxin <maxin!~maxin@37-219-242-214.nat.bb.dnainternet.fi> has quit IRC | 16:22 | |
*** anselmolsm <anselmolsm!~anselmols@192.55.54.43> has joined #yocto | 16:28 | |
*** edbart <edbart!ebartosh@nat/intel/x-yhoeaksmhpffbxzg> has quit IRC | 16:32 | |
*** obsrwr_home <obsrwr_home!~obsrwr@188.24.232.225> has joined #yocto | 16:32 | |
*** edbart <edbart!ebartosh@nat/intel/x-izxxzpdahgpgrssr> has joined #yocto | 16:33 | |
*** edbart1 <edbart1!ebartosh@nat/intel/x-eqsgmevywehonugv> has joined #yocto | 16:35 | |
*** edbart <edbart!ebartosh@nat/intel/x-izxxzpdahgpgrssr> has quit IRC | 16:39 | |
*** edbart1 <edbart1!ebartosh@nat/intel/x-eqsgmevywehonugv> has quit IRC | 16:40 | |
*** sa2ajj <sa2ajj!~quassel@dsl-espbrasgw1-50de2f-243.dhcp.inet.fi> has joined #yocto | 16:52 | |
*** sno <sno!~sno@62.157.143.22> has quit IRC | 16:55 | |
*** yann|work <yann|work!~yann@85-171-21-92.rev.numericable.fr> has quit IRC | 16:58 | |
*** grma <grma!~gruberm@80.93.38.128> has quit IRC | 16:59 | |
*** fl0v01 <fl0v01!~fvo@pD9F6A260.dip0.t-ipconnect.de> has quit IRC | 17:08 | |
*** aehs29 <aehs29!~aehernan@134.134.139.77> has left #yocto | 17:10 | |
*** jbrianceau is now known as jbrianceau_away | 17:18 | |
*** belen <belen!~Adium@134.134.139.77> has quit IRC | 17:25 | |
*** obsrwr_6 <obsrwr_6!~obsrwr@188.24.232.225> has joined #yocto | 17:29 | |
*** obsrwr_home <obsrwr_home!~obsrwr@188.24.232.225> has quit IRC | 17:29 | |
-YoctoAutoBuilder- build #396 of nightly-wic is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-wic/builds/396 | 17:30 | |
*** benjamirc1 <benjamirc1!~besquive@134.134.139.83> has joined #yocto | 17:31 | |
*** benjamirc <benjamirc!~besquive@134.134.139.83> has quit IRC | 17:31 | |
-YoctoAutoBuilder- build #875 of nightly-x86-64 is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64/builds/875 | 17:32 | |
*** paulg <paulg!~paulg@198-84-239-75.cpe.teksavvy.com> has joined #yocto | 17:34 | |
*** benjamirc1 <benjamirc1!~besquive@134.134.139.83> has quit IRC | 17:36 | |
*** fredcadete_ <fredcadete_!51f356a0@gateway/web/freenode/ip.81.243.86.160> has quit IRC | 17:49 | |
*** belen <belen!~Adium@134.134.139.77> has joined #yocto | 17:54 | |
khem | lpapp: opkg by default will not override however it does have options to do so | 17:55 |
khem | and if you are overriting files from different package its going to land you in trouble later when you update the original package. | 17:56 |
khem | so its better to resolve the namesapce issue beforehand | 17:56 |
*** obsrwr_home <obsrwr_home!~obsrwr@188.24.232.225> has joined #yocto | 17:58 | |
lpapp | khem: it did not seem to overwrite with the overwrite options, either. | 17:58 |
*** obsrwr_6 <obsrwr_6!~obsrwr@188.24.232.225> has quit IRC | 17:59 | |
khem | did you use --force-overwrite | 17:59 |
lpapp | khem: I tried --force-overwrite and --force-reinstall | 17:59 |
khem | interesting. here it has worked | 18:00 |
khem | whenever tried | 18:00 |
*** lpapp <lpapp!~lpapp@kde/lpapp> has quit IRC | 18:00 | |
*** fester <fester!~fester@rhlug/fester> has joined #yocto | 18:08 | |
fester | so i have a device that boots an image that i think was built from yocto, how can i tell which target image it has? | 18:10 |
fester | like core-image-full-cmdline or core-image-lsb-sdk ? | 18:11 |
khem | fester: I dont think we have a standard way to denote that, however you may ask your device vendor if they have a version info file embedded into your rootfs | 18:13 |
fester | is there a typical location where that info might be found? | 18:16 |
fester | khem: thanks, by the way | 18:17 |
*** aehs29 <aehs29!~aehernan@134.134.139.83> has joined #yocto | 18:19 | |
*** DriverCoder <DriverCoder!~mdrustad@134.134.139.74> has joined #yocto | 18:21 | |
*** sameo_ <sameo_!~samuel@192.55.54.40> has quit IRC | 18:22 | |
-YoctoAutoBuilder- build #580 of nightly-oe-selftest is complete: Failure [failed Running oe-selftest] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-oe-selftest/builds/580 | 18:30 | |
*** toscalix <toscalix!~toscalix@149.100.1.68> has quit IRC | 18:31 | |
*** evanmeagher <evanmeagher!~MongooseW@70-36-227-16.dsl.dynamic.fusionbroadband.com> has quit IRC | 18:32 | |
*** billr <billr!~wcrandle@134.134.139.74> has quit IRC | 18:32 | |
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC | 18:37 | |
*** toanju <toanju!~toanju@x4e37d794.dyn.telefonica.de> has joined #yocto | 18:39 | |
*** bluelightning <bluelightning!~paul@85.219.69.111.dynamic.snap.net.nz> has joined #yocto | 18:49 | |
*** bluelightning <bluelightning!~paul@85.219.69.111.dynamic.snap.net.nz> has quit IRC | 18:49 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 18:49 | |
*** evanmeagher <evanmeagher!~MongooseW@70-36-227-16.dsl.dynamic.fusionbroadband.com> has joined #yocto | 18:52 | |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-onijlmcefcqpyvun> has quit IRC | 19:07 | |
*** dmoseley <dmoseley!~dmoseley@6532158hfc157.tampabay.res.rr.com> has joined #yocto | 19:11 | |
*** toanju <toanju!~toanju@x4e37d794.dyn.telefonica.de> has quit IRC | 19:14 | |
*** crankslider <crankslider!~slidercra@unaffiliated/slidercrank> has joined #yocto | 19:17 | |
*** sno <sno!~sno@p578b540c.dip0.t-ipconnect.de> has joined #yocto | 19:22 | |
*** benjamirc <benjamirc!~besquive@134.134.139.78> has joined #yocto | 19:24 | |
khem | fester: if the image has a package management tool like rpm or opkg on it then you may see what all packages are installed and deduce from that | 19:26 |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-fpovqwirngwiqkyp> has quit IRC | 19:29 | |
*** dreyna <dreyna!~dreyna@unknown-216-198.windriver.com> has joined #yocto | 19:42 | |
*** jku <jku!~jku@dyj170ycrv18---3wlh9y-3.rev.dnainternet.fi> has joined #yocto | 19:46 | |
*** maxin <maxin!~maxin@37-219-242-214.nat.bb.dnainternet.fi> has joined #yocto | 19:47 | |
*** ecdhe_ <ecdhe_!~ecdhe@173-22-126-166.client.mchsi.com> has quit IRC | 19:52 | |
*** ecdhe <ecdhe!~ecdhe@173-22-126-166.client.mchsi.com> has quit IRC | 19:52 | |
*** belen <belen!~Adium@134.134.139.77> has quit IRC | 19:52 | |
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto | 20:04 | |
*** fledermaus <fledermaus!~vivek@2a00:1098:5:0:49b6:6ca:be5e:7b6c> has quit IRC | 20:04 | |
*** moto-timo <moto-timo!~ttorling@134.134.139.78> has joined #yocto | 20:05 | |
*** moto-timo <moto-timo!~ttorling@134.134.139.78> has quit IRC | 20:05 | |
*** moto-timo <moto-timo!~ttorling@fsf/member/moto-timo> has joined #yocto | 20:05 | |
*** jku <jku!~jku@dyj170ycrv18---3wlh9y-3.rev.dnainternet.fi> has quit IRC | 20:13 | |
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has quit IRC | 20:14 | |
*** psadro <psadro!~Thunderbi@216.234.148.134> has quit IRC | 20:15 | |
*** DriverCoder <DriverCoder!~mdrustad@134.134.139.74> has quit IRC | 20:20 | |
*** dmoseley <dmoseley!~dmoseley@6532158hfc157.tampabay.res.rr.com> has quit IRC | 20:21 | |
*** tripzero <tripzero!~tripzero@134.134.139.83> has quit IRC | 20:28 | |
*** ntl <ntl!~nathanl@cpe-24-242-74-130.austin.res.rr.com> has quit IRC | 20:29 | |
*** psadro <psadro!~Thunderbi@216.234.148.134> has joined #yocto | 20:31 | |
*** tripzero <tripzero!~tripzero@134.134.139.83> has joined #yocto | 20:36 | |
-YoctoAutoBuilder- build #876 of nightly-x86-64 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64/builds/876 | 20:37 | |
*** __karthik <__karthik!~karthik@192.91.75.29> has quit IRC | 20:44 | |
*** __karthik <__karthik!~karthik@192.91.75.30> has joined #yocto | 20:44 | |
*** sgw_ <sgw_!~sgw_@134.134.139.82> has quit IRC | 20:48 | |
*** pohly <pohly!~pohly@p5DE8FB93.dip0.t-ipconnect.de> has quit IRC | 20:56 | |
*** khem <khem!~khem@unaffiliated/khem> has quit IRC | 21:03 | |
*** maxin <maxin!~maxin@37-219-242-214.nat.bb.dnainternet.fi> has quit IRC | 21:06 | |
*** sgw_ <sgw_!~sgw_@134.134.139.77> has joined #yocto | 21:07 | |
*** Guest80793 is now known as florin_ | 21:08 | |
*** florin_ is now known as florin | 21:08 | |
*** florin is now known as flor__ | 21:08 | |
flor__ | rburton, any clue about the rror I posted above? | 21:08 |
*** lamego <lamego!~jose@134.134.139.76> has quit IRC | 21:09 | |
*** obsrwr_home <obsrwr_home!~obsrwr@188.24.232.225> has quit IRC | 21:09 | |
*** aehs29 <aehs29!~aehernan@134.134.139.83> has left #yocto | 21:10 | |
RP | flor__: it looks like you're trying to run bitbake master with python2 ? | 21:16 |
RP | flor__: either use oe-core master with bitbake master, or use the 1.30 branch of bitbake with the krogoth branch of oe-core. Master uses python3, the older 1.30 uses python2 | 21:17 |
flor__ | that error above is with oe-core krogoth and bitbake 1.30, Richard | 21:18 |
flor__ | using oe-core krogoth and master bitbake works | 21:19 |
*** berton <berton!~fabio@177.100.227.79> has quit IRC | 21:23 | |
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto | 21:24 | |
kergoth | bluelightning, RP: I notice dthe sstate mirror object availability progress bar replaces the preceding initializing tasks progress bar. I think there'd be value in keeping the previous one with its final completion time in the output. Would just need a newline on completion, I expect. | 21:27 |
bluelightning | kergoth: hmm perhaps yes - I think probably the issue is not calling finish() on the progressbar | 21:28 |
kergoth | ah, that'd make sense | 21:28 |
*** rubdos <rubdos!~rubdos@d54c65054.access.telenet.be> has quit IRC | 21:38 | |
RP | flor__: it is not oe-core krogoth branch there. This is the code in the oe-core krogoth branch: http://git.yoctoproject.org/cgit.cgi/poky/tree/meta/lib/oe/maketype.py?h=krogoth#n56 and the get_callable_args() function does not have an inspect.signature() call. | 21:40 |
*** maxin <maxin!~maxin@37-219-159-187.nat.bb.dnainternet.fi> has joined #yocto | 21:40 | |
*** maxin <maxin!~maxin@37-219-159-187.nat.bb.dnainternet.fi> has left #yocto | 21:40 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 21:40 | |
RP | well, http://git.openembedded.org/openembedded-core/tree/meta/lib/oe/maketype.py?h=krogoth#n56 but its the same code | 21:41 |
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto | 21:51 | |
*** yann|work is now known as yann | 21:52 | |
*** fester <fester!~fester@rhlug/fester> has left #yocto | 21:52 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 21:55 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC | 22:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 22:01 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto | 22:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 22:01 | |
*** gtristan <gtristan!~tristanva@110.11.179.37> has quit IRC | 22:02 | |
*** anselmolsm <anselmolsm!~anselmols@192.55.54.43> has quit IRC | 22:03 | |
*** Crofton|work <Crofton|work!~balister@pool-71-171-10-138.ronkva.east.verizon.net> has quit IRC | 22:06 | |
*** rburton <rburton!~Adium@home.burtonini.com> has quit IRC | 22:12 | |
*** tjamison <tjamison!~tjamison@38.104.105.146> has left #yocto | 22:28 | |
*** igor2 <igor2!~igor@177.159.144.73> has quit IRC | 22:44 | |
*** benjamirc <benjamirc!~besquive@134.134.139.78> has quit IRC | 22:46 | |
*** evanmeagher <evanmeagher!~MongooseW@70-36-227-16.dsl.dynamic.fusionbroadband.com> has quit IRC | 22:50 | |
*** agust <agust!~agust@p4FCB612D.dip0.t-ipconnect.de> has quit IRC | 22:54 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 23:01 | |
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has quit IRC | 23:16 | |
*** nisha <nisha!~nisha@38.104.105.146> has quit IRC | 23:17 | |
*** evanmeagher <evanmeagher!~MongooseW@70-36-227-16.dsl.dynamic.fusionbroadband.com> has joined #yocto | 23:17 | |
*** mattsm <mattsm!uid128834@gateway/web/irccloud.com/x-izghcrahbgvsbfku> has joined #yocto | 23:20 | |
*** nighty <nighty!~nighty@s229123.ppp.asahi-net.or.jp> has quit IRC | 23:46 | |
*** dreyna <dreyna!~dreyna@unknown-216-198.windriver.com> has quit IRC | 23:49 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 23:55 | |
*** paulg <paulg!~paulg@198-84-239-75.cpe.teksavvy.com> has quit IRC | 23:59 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!