*** ant_home <ant_home!~ant__@host205-252-dynamic.245-95-r.retail.telecomitalia.it> has quit IRC | 00:00 | |
*** grahamgelding <grahamgelding!ca86f31a@gateway/web/freenode/ip.202.134.243.26> has quit IRC | 00:06 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 00:26 | |
*** grahamgelding <grahamgelding!ca86f31a@gateway/web/freenode/ip.202.134.243.26> has joined #yocto | 00:28 | |
khem | RP: the os-release patch needs rework you have to drop it from master-next | 00:29 |
---|---|---|
grahamgelding | Hi, I'm trying to move from dizzy to sumo. We use EtherCAT and the RX packets are all being dropped using linux-yocto-rt_4.14. If I drop in the dizzy kernel (linux-yocto-rt_3.14) then it works. I'm assuming it's kernel config I need to change? I'm ok with the process of kernel_configme, menuconfig, diffconfig and adding fragments to my recipe. For testing out the new kernel is it ok to drop in the new bzImage and install the mo | 00:35 |
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has quit IRC | 00:47 | |
*** henriknj <henriknj!~hnje@193.106.123.182> has quit IRC | 01:05 | |
*** henriknj <henriknj!~hnje@193.106.123.182> has joined #yocto | 01:05 | |
*** FrostEyes_P1 <FrostEyes_P1!~frosteyes@152.115.47.4> has quit IRC | 01:06 | |
*** FrostEyes_P1 <FrostEyes_P1!~frosteyes@152.115.47.4> has joined #yocto | 01:06 | |
*** stephano <stephano!~stephano@134.134.139.72> has quit IRC | 01:13 | |
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has joined #yocto | 01:14 | |
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has joined #yocto | 01:14 | |
*** jkridner_ <jkridner_!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 01:38 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 01:38 | |
*** arielmr <arielmr!~quassel@187-163-217-93.static.axtel.net> has quit IRC | 01:39 | |
*** chandana73 <chandana73!~ckalluri@149.199.62.254> has quit IRC | 01:44 | |
*** jkridner|pd <jkridner|pd!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 01:51 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 01:54 | |
*** paulg <paulg!~paulg@198-84-238-126.cpe.teksavvy.com> has quit IRC | 02:09 | |
*** armpit <armpit!~armpit@2601:202:4180:c33:45cc:4239:c235:fa42> has quit IRC | 02:45 | |
*** armpit <armpit!~armpit@2601:202:4180:c33:45cc:4239:c235:fa42> has joined #yocto | 02:48 | |
*** linuxjacques <linuxjacques!~jacques@nslu2-linux/jacques> has quit IRC | 02:58 | |
*** thaytan <thaytan!~thaytan@121-200-23-18.cust.aussiebb.net> has quit IRC | 03:06 | |
*** thaytan <thaytan!~thaytan@121-200-23-18.cust.aussiebb.net> has joined #yocto | 03:11 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 03:25 | |
*** hundeboll <hundeboll!~hundeboll@open-mesh.org/catwoman/hundeboll> has quit IRC | 03:26 | |
*** kaspter <kaspter!~Instantbi@183.156.70.233> has quit IRC | 03:37 | |
*** kaspter <kaspter!~Instantbi@125.118.58.116> has joined #yocto | 03:38 | |
*** jdel_ <jdel_!~jdel@12.1.36.234> has joined #yocto | 04:05 | |
jdel_ | how does the FILES variable work when using setscene? | 04:05 |
jdel_ | specifically I have a recipe that's complaining about required files not being provided by any recipe | 04:05 |
jdel_ | but that recipe was restored from setscene | 04:06 |
jdel_ | and I can see the files in the sysroot-destdir | 04:06 |
jdel_ | the recipe having problems is a custom bbclass which I assume is somehow to blame | 04:07 |
jdel_ | but i'm not sure how to debug it | 04:07 |
kergoth | FILES is irrelevent to sysroot population. FILES Is used to control what files installed by do_install go into which binary packages. those are used to construct rootfs images, but those binary packages are not used to populate sysroot to satisfy dependencies | 04:12 |
jdel_ | so when I see an error like this: "QA Issue: /usr/lib/weston/hmi-controller.so contained in package weston requires libhdr_tm.so, but no providers found in RDEPENDS_weston? [file-rdeps]" | 04:20 |
jdel_ | how does it know that it's not present? | 04:20 |
jdel_ | or rather, how does it decide it's not present | 04:20 |
jdel_ | that file is present in tboth sysroot-destdir of the providing recipe *and* recipe-sysroot of the using recipe | 04:22 |
bluelightning | jdel_: it's present, the problem is you haven't specified an explicit dependency in the recipe to ensure that it is | 04:23 |
bluelightning | (well, I say you, I mean the recipe writer) | 04:24 |
bluelightning | https://www.yoctoproject.org/docs/current/ref-manual/ref-manual.html#qa-issue-file-rdeps | 04:24 |
bluelightning | I do recall thinking that message was somewhat misleading, I can't remember the details though | 04:26 |
jdel_ | ah, so if I understand | 04:27 |
jdel_ | the library is present for all build stages (as specified by the building package) | 04:27 |
jdel_ | but since that package isn't listed as a RDEPENDS for the building package, it can't count on the files actually being installed | 04:28 |
bluelightning | I seem to recall that DEPENDS is enough... does this recipe have the recipe that builds libhdr_tm.so in its DEPENDS? | 04:29 |
*** Aethenelle <Aethenelle!Elite19980@gateway/shell/elitebnc/x-egagkhhcpkbdvroo> has quit IRC | 04:30 | |
*** sa2ajj <sa2ajj!~quassel@dsl-hkibng21-54f864-131.dhcp.inet.fi> has quit IRC | 04:30 | |
*** Pharaoh_Atem <Pharaoh_Atem!~neal@fedora/ngompa> has quit IRC | 04:30 | |
*** sa2ajj <sa2ajj!~quassel@dsl-hkibng21-54f864-131.dhcp.inet.fi> has joined #yocto | 04:30 | |
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC | 04:38 | |
*** mjourdan <mjourdan!~mjourdan@62-210-129-144.rev.poneytelecom.eu> has quit IRC | 04:39 | |
*** u1106 <u1106!~quassel@163.172.172.46> has quit IRC | 04:39 | |
*** abelloni <abelloni!~abelloni@scw.piout.net> has quit IRC | 04:39 | |
*** u1106 <u1106!~quassel@163.172.172.46> has joined #yocto | 04:39 | |
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto | 04:40 | |
jdel_ | oh I see what's happening, I think | 04:44 |
jdel_ | instead of saying DEPENDS_${PN} it's adding it to some platform specific depends | 04:44 |
jdel_ | DEPENDS_<my soc name> | 04:44 |
jdel_ | does that actually add the dependency to a different recipe? | 04:45 |
kergoth | DEPENDS != RDEPENDS. DEPENDS_${PN} doesn't exist | 04:45 |
jdel_ | so when something does DEPENDS_foo += "a recipe" | 04:46 |
jdel_ | what does that do? | 04:46 |
bluelightning | unless foo is somehow in OVERRIDES then it will do nothing | 04:49 |
bluelightning | in case it's not obvious, DEPENDS are build-time dependencies, so they aren't per-package | 04:49 |
jdel_ | ie they are per recipe? | 04:50 |
bluelightning | yes | 04:50 |
jdel_ | ok | 04:50 |
jdel_ | there's a whole slew of these DEPENDS_<soc name> variables | 04:50 |
bluelightning | that will work, if <soc name> can appear in MACHINE or some other way of getting in OVERRIDES | 04:51 |
jdel_ | ah, yes it's the machine name | 04:51 |
bluelightning | it would be logically correct to use something like that if the dependencies were machine-specific | 04:51 |
bluelightning | they generally aren't though | 04:51 |
jdel_ | i think this recipe has stubs for some libraries on different platforms | 04:52 |
jdel_ | (eg platforms with/without screens) | 04:52 |
bluelightning | ok, fair enough | 04:54 |
jdel_ | maybe this will make sense with some sleep :) | 04:56 |
jdel_ | thank you for your help | 04:56 |
jdel_ | i will probably be back for more | 04:56 |
*** jdel_ <jdel_!~jdel@12.1.36.234> has quit IRC | 05:26 | |
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-ivkcfrungrhqxslf> has quit IRC | 05:57 | |
*** pohly <pohly!~pohly@p54BD55A3.dip0.t-ipconnect.de> has joined #yocto | 05:58 | |
*** ejoerns <ejoerns!~ejo@2001:67c:670:100:76d4:35ff:fee8:98b3> has joined #yocto | 06:01 | |
*** agust <agust!~agust@p508862E3.dip0.t-ipconnect.de> has joined #yocto | 06:16 | |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto | 06:23 | |
*** frsc <frsc!~frsc@200116b8241daa00efdeb9e4b7656656.dip.versatel-1u1.de> has joined #yocto | 06:26 | |
*** gtristan <gtristan!~tristanva@110.11.179.72> has joined #yocto | 06:40 | |
*** fl0v0 <fl0v0!~fvo@mue-88-130-98-102.dsl.tropolys.de> has joined #yocto | 06:42 | |
*** fdanis <fdanis!~fdanis@97.205.83.79.rev.sfr.net> has joined #yocto | 06:45 | |
*** fl0v0 <fl0v0!~fvo@mue-88-130-98-102.dsl.tropolys.de> has quit IRC | 06:45 | |
*** fl0v0 <fl0v0!~fvo@mue-88-130-98-102.dsl.tropolys.de> has joined #yocto | 06:46 | |
*** varjag <varjag!~user@122.62-97-226.bkkb.no> has joined #yocto | 07:22 | |
*** webloop <webloop!~abhijeetk@106.51.26.143> has joined #yocto | 07:31 | |
*** joaocfernandes <joaocfernandes!~Joao@88.157.234.132> has joined #yocto | 07:38 | |
*** mckoan|away is now known as mckoan | 07:44 | |
*** webloop <webloop!~abhijeetk@106.51.26.143> has quit IRC | 07:56 | |
*** abelloni <abelloni!~abelloni@scw.piout.net> has joined #yocto | 08:17 | |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto | 08:43 | |
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has joined #yocto | 08:43 | |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-dmeapwyerrljuxtw> has joined #yocto | 08:43 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 08:43 | |
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has quit IRC | 08:47 | |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto | 08:48 | |
mcfrisk | hmm, package.bbclass is not dumping the task log to console when "Fatal QA errors found". Any ideas how to change that? A bit tricky to debug failures in CI without.. | 08:53 |
*** gtristan <gtristan!~tristanva@110.11.179.72> has quit IRC | 08:54 | |
*** rburton <rburton!~textual@81.2.106.35> has joined #yocto | 09:20 | |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 09:20 | |
mcfrisk | hmm, why doesn't FILES_${PN}-dev_class-nativesdk += "blabl" work anymore in a bbappend to extend recipes from poky? seems like this ends up overwriting the complete variable instead of appending to it. same effect with both _append and += | 09:22 |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 09:25 | |
rburton | overrides and += don't do what you expect unless you understand how they work | 09:28 |
rburton | FILES_${PN}_dev_append_class-nativesdk = " blah" | 09:28 |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC | 09:29 | |
*** gtristan <gtristan!~tristanva@114.207.54.40> has joined #yocto | 09:29 | |
mcfrisk | rburton: ah, the other way round with append. original code was with FILES_${PN}-dev_class-nativesdk += and this ends up overwriting the whole variable from a bbappend. That's not expected. | 09:30 |
mcfrisk | but here using += seems wrong and _append works in the end when the class syntax is at the end. | 09:31 |
mcfrisk | rburton: thanks! | 09:31 |
*** armpit <armpit!~armpit@2601:202:4180:c33:45cc:4239:c235:fa42> has quit IRC | 09:38 | |
*** awe00 <awe00!~awe00@unaffiliated/awe00> has joined #yocto | 09:43 | |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto | 09:43 | |
yocti | New news from stackoverflow: git: Refusing to fetch into current branch - bitbake <https://stackoverflow.com/questions/52181960/git-refusing-to-fetch-into-current-branch-bitbake> | 09:52 |
mcfrisk | trying to extend a variable only in special class build target with += is an anti pattern and mostly ends up overwriting the original variable value. this scriplet find it: $ egrep -rn '(_class-native|_class-nativesdk|_class-target).*\+=' meta-* | grep -v '_append_' | 10:03 |
mcfrisk | but now I see this anti pattern in meta-openembedded and poky too. hmm. | 10:08 |
*** bluelightning_ is now known as bluelightning | 10:09 | |
bluelightning | mcfrisk: those should probably be fixed | 10:09 |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 10:12 | |
mcfrisk | is the best syntax for appending to variables _append with += which add the space? Or should those two not be mixed? | 10:17 |
*** morphis <morphis!~morphis@p200300CCFBEF7000D6C5E6B5B8F349E9.dip0.t-ipconnect.de> has joined #yocto | 10:22 | |
*** jkridner|pd is now known as jkridner | 10:23 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 10:24 | |
kanavin | RP: I find it very hard to be sympathetic to JaMa's situation | 10:27 |
kanavin | one year has passed, same complaints | 10:28 |
*** PinkSnake <PinkSnake!51ff1123@gateway/web/freenode/ip.81.255.17.35> has quit IRC | 10:36 | |
RP | kanavin: I can see this from both sides. Maintaining and moving meta-oe forwards is tough | 10:41 |
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto | 10:50 | |
mcfrisk | "Identifying dependency loops (this may take a short while)..." doesn't have a max time limit it seems, been 10+ minutes already | 10:51 |
kanavin | RP: I don't want to force this on people either, but the other option would be to wait another year, which will again achieve nothing, except 1.0 will be really close to EOL then | 10:52 |
RP | kanavin: as I said, I can see both sides. I did merge the patches to core | 10:56 |
kanavin | RP: I think it's a 'keep hands off keyboard' moment for me then :) | 11:04 |
*** mystictot <mystictot!~shyam@42.111.1.202> has joined #yocto | 11:16 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 11:17 | |
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC | 11:20 | |
yocti | New news from stackoverflow: Gif animation does not work on Yocto Pyro in Qt 5.8. How to build qtbase 5.8 in bitbake with libqgif.so? <https://stackoverflow.com/questions/52069205/gif-animation-does-not-work-on-yocto-pyro-in-qt-5-8-how-to-build-qtbase-5-8-in> | 11:22 |
*** mystictot <mystictot!~shyam@42.111.1.202> has quit IRC | 11:26 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 11:36 | |
*** armpit <armpit!~armpit@2601:202:4180:c33:45cc:4239:c235:fa42> has joined #yocto | 11:40 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 11:46 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 11:57 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 12:12 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 12:16 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 12:17 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 12:21 | |
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto | 12:24 | |
*** joaocfernandes <joaocfernandes!~Joao@88.157.234.132> has quit IRC | 12:29 | |
*** illarios <illarios!3e862e04@gateway/web/freenode/ip.62.134.46.4> has joined #yocto | 12:33 | |
illarios | Does anyone know how to use core-image-minimal-initramfs with an EFI shell? | 12:33 |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC | 12:51 | |
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has quit IRC | 13:05 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 13:10 | |
*** ant_home <ant_home!~ant__@host63-251-dynamic.54-79-r.retail.telecomitalia.it> has joined #yocto | 13:14 | |
*** marka <marka!~masselst@128.224.252.2> has joined #yocto | 13:14 | |
*** stephano <stephano!~stephano@134.134.139.72> has joined #yocto | 13:33 | |
*** Aethenelle <Aethenelle!Elite19980@gateway/shell/elitebnc/x-xqzxtmnedmgbepoo> has joined #yocto | 13:42 | |
RP | zeddii: Both 4.14 and 4.18 linux-yocto-tiny give config warnings. Would you like a bug for it or is knowing about it good enough? | 13:59 |
RP | zeddii: I assume we want to move to 4.18? | 13:59 |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC | 14:03 | |
*** gtristan <gtristan!~tristanva@114.207.54.40> has quit IRC | 14:05 | |
zeddii | RP: I'll take care of them. pinging me here is enough. | 14:09 |
zeddii | and yah. we should just forklift everything to 4.18 now. | 14:09 |
RP | zeddii: thanks. I'll sort the switch to 4.18 | 14:24 |
RP | ah, just realised why my "tiny" build was finding bugs. A rouge IMAGE_INSTALL putting its size at 300+MB :) | 14:29 |
RP | parallel install of new busybox and coreutils looks bust though | 14:30 |
RP | zeddii: MACHINE=qemux86 shows config warnings with 4.14 too | 14:31 |
RP | zeddii: CONFIG_IRQ_REMAP and CONFIG_X86_X2APIC | 14:32 |
*** vmeson <vmeson!~rmacleod@192-0-133-18.cpe.teksavvy.com> has joined #yocto | 14:43 | |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto | 14:57 | |
RP | zeddii: Also qemumips with 4.14 | 15:02 |
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC | 15:06 | |
*** illarios <illarios!3e862e04@gateway/web/freenode/ip.62.134.46.4> has quit IRC | 15:10 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 15:11 | |
*** Kitsok <Kitsok!~kitsok@2a02:6b8:0:506:d681:d7ff:fe6d:d499> has joined #yocto | 15:15 | |
Kitsok | Hi there! Could somebody help me with the recipe? I'm moving from the very old (2.2?) Yocto to 2.5 and having troubles with sysroots-components | 15:16 |
*** jacques <jacques!~jacques@nslu2-linux/jacques> has joined #yocto | 15:17 | |
*** jacques is now known as linuxjacques | 15:17 | |
*** frsc <frsc!~frsc@200116b8241daa00efdeb9e4b7656656.dip.versatel-1u1.de> has quit IRC | 15:28 | |
jdel | i've noticed a few checks that depend on the existence of the "image" directory in a given recipe | 15:32 |
jdel | eg a check in systemd for missing service files | 15:33 |
jdel | notably the checks are skipped if there's no "image" directory present | 15:33 |
jdel | which I believe is what happens after a setscene | 15:33 |
jdel | but i'm finding that the "image" directory is getting created in recipes that are otherwising skipping the build steps due to satisfying setscene restores | 15:34 |
jdel | so the recipes fail to build properly | 15:34 |
jdel | if I cleanall and do it again, the build correctly | 15:34 |
jdel | (notably the "image" directory is empty, since none of the build steps were performed) | 15:35 |
jdel | can someone suggest a way for me to find out who is creating this phantom "image" directory? | 15:35 |
*** lusus <lusus!~lusus@62.91.23.180> has quit IRC | 15:45 | |
*** micka <micka!~micka@reverse-75.fdn.fr> has quit IRC | 15:45 | |
*** micka <micka!~micka@reverse-75.fdn.fr> has joined #yocto | 15:46 | |
*** varjag <varjag!~user@122.62-97-226.bkkb.no> has quit IRC | 15:47 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 15:48 | |
*** ant_home <ant_home!~ant__@host63-251-dynamic.54-79-r.retail.telecomitalia.it> has quit IRC | 15:50 | |
*** arielmr <arielmr!~quassel@187-163-217-93.static.axtel.net> has joined #yocto | 15:51 | |
*** Pharaoh_Atem <Pharaoh_Atem!~neal@fedora/ngompa> has joined #yocto | 15:52 | |
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto | 15:53 | |
*** justinttt <justinttt!49e56612@gateway/web/freenode/ip.73.229.102.18> has joined #yocto | 15:58 | |
*** Kitsok <Kitsok!~kitsok@2a02:6b8:0:506:d681:d7ff:fe6d:d499> has quit IRC | 16:05 | |
*** fl0v0 <fl0v0!~fvo@mue-88-130-98-102.dsl.tropolys.de> has quit IRC | 16:16 | |
*** stephano <stephano!~stephano@134.134.139.72> has quit IRC | 16:17 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 16:19 | |
*** mckoan is now known as mckoan|away | 16:24 | |
*** stephano <stephano!~stephano@134.134.139.74> has joined #yocto | 16:24 | |
*** varjag <varjag!~user@ti0040a400-6639.bb.online.no> has joined #yocto | 16:24 | |
khem | RP: os-release another issue on master-next | 16:44 |
RP | khem: I suspect I'm aware of it, which master-next? :) | 16:46 |
RP | khem: I just repushed, try that | 16:47 |
*** khem <khem!~khem@unaffiliated/khem> has quit IRC | 16:47 | |
*** fdanis is now known as fdanis_away | 16:48 | |
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto | 16:48 | |
*** pohly <pohly!~pohly@p54BD55A3.dip0.t-ipconnect.de> has quit IRC | 16:48 | |
khem | RP: yes same one :) | 16:48 |
khem | RP: http://git.openembedded.org/openembedded-core-contrib/log/?h=kraj/misc | 16:48 |
khem | put this also into boiling pot | 16:49 |
*** scottrif <scottrif!~scottrif@47-40-108-60.dhcp.knwc.wa.charter.com> has joined #yocto | 16:50 | |
RP | khem: what issue are you seeing then? I thought we had them all | 16:51 |
khem | ah latest master-next is fixed | 16:52 |
khem | master-next does not have the patches | 16:52 |
RP | khem: I'm trying to get master-next merged before I take on more patches to break things | 16:52 |
RP | khem: you broke binutils ;-) I've sent a fix | 16:52 |
khem | OK no worries | 16:53 |
khem | as long as you have it in line | 16:53 |
khem | RP: saw that, :) thanks for fixing it. I was being idiot when I chose that variable, I usually invent obscure ones | 16:53 |
khem | I was seeing lot of rebuilds here, but thought it must be a different reason | 16:54 |
khem | RP: I am looking for automating h/w -ctestimage | 16:55 |
khem | probably generating a initramfs with full image and having large enough /boot to scp it and then reboot the box | 16:56 |
khem | seems simplest | 16:56 |
RP | khem: It was designed to be possible but we don't have provisioning code. I was asked to use lava rather than write any | 16:56 |
khem | bleh | 16:56 |
khem | does lava work then | 16:57 |
khem | or do I need java | 16:57 |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 17:00 | |
armpit | khem, I thought there was a patch set to fix h/w via testimage | 17:00 |
RP | armpit: there is but its a minefield patch :/ | 17:02 |
RP | really needs splitting up as I can't review it | 17:02 |
armpit | RP, may be a starting point for the Khem-ster | 17:02 |
khem | armpit: uri ? | 17:02 |
*** awe00 <awe00!~awe00@unaffiliated/awe00> has quit IRC | 17:03 | |
RP | khem: I've merged -next so we're onto the next round of patches | 17:04 |
armpit | https://patchwork.openembedded.org/patch/153625/ 153626, 153627 | 17:05 |
*** ntl <ntl!~nathanl@hsvwanfw1-nat.mentorg.com> has joined #yocto | 17:11 | |
khem | RP: cool | 17:12 |
khem | RP: python3 seems to be compiling faster now | 17:19 |
*** chandana73 <chandana73!~ckalluri@149.199.62.254> has joined #yocto | 17:23 | |
RP | khem: yes, dropped the -n 10 to -n 1. rburton has better things coming too | 17:24 |
khem | yeah I have been in discussions with him on some FDO/PGO ideas | 17:27 |
RP | khem: I just merged the other one as it stops burning some cpu time in the meantime | 17:28 |
aehs29 | RP: I sent some python manifest fixes, just wondering if you saw them | 17:33 |
RP | aehs29: not sure I did :/ | 17:34 |
khem | RP: do we plan to support Fedora 29 for 2.6 ? (releasing Oct 29) | 17:35 |
RP | aehs29: ironically, just scrolling back to them! :) | 17:35 |
aehs29 | RP: haha alright, I honestly just see no point in CCing you, I know you get 300k emails a day | 17:35 |
RP | khem: probably not initially. Curious what kind of problems we may have | 17:35 |
*** marka <marka!~masselst@128.224.252.2> has quit IRC | 17:36 | |
RP | aehs29: fancy fixing that two space indentation in the manifest script too? :) | 17:37 |
RP | aehs29: I put the patches in -next | 17:37 |
aehs29 | RP: sure, let me see if I find it | 17:39 |
RP | aehs29: just struck me as odd when glancing through the changes | 17:39 |
aehs29 | RP: I thought I changed it to 4 for all the script, but apparently not | 17:40 |
RP | khem: thoughts on dropping gcc 7 from core ? 8.x seems to be working ok most places? | 17:40 |
RP | khem: I don't like the precedent of carrying two gccs if we don't need to | 17:41 |
*** ant_home <ant_home!~ant__@host205-252-dynamic.245-95-r.retail.telecomitalia.it> has joined #yocto | 17:41 | |
khem | RP: lets keep it for another release. There are u-boot related issues that has been reported and some are fixed | 17:41 |
khem | RP: SOC vendors consider it a strike down against Yocto/OE that we upgrade/delete things too fast | 17:42 |
RP | khem: ok | 17:42 |
khem | may be we should resurrect toolchain-layer in meta-openembedded | 17:42 |
khem | may be it should be a new repo somewhere | 17:43 |
RP | khem: I think it may be time to rearrange things a bit in general | 17:43 |
aehs29 | RP: wow there was more indentation issues than I thought | 17:47 |
aehs29 | RP: I fixed it, do you want me to send a patch or should I just update the contrib branch? | 17:47 |
aehs29 | and ammend the last one | 17:47 |
RP | aehs29: just send an additional patch I can apply against -next please | 17:48 |
aehs29 | RP: alright | 17:48 |
aehs29 | RP: just rebased to master-next and sent | 17:53 |
*** tgraydon <tgraydon!~textual@134.134.139.76> has joined #yocto | 17:55 | |
*** likewise <likewise!~leon@188.206.99.38> has joined #yocto | 18:07 | |
*** varjag <varjag!~user@ti0040a400-6639.bb.online.no> has quit IRC | 18:07 | |
*** ntl <ntl!~nathanl@hsvwanfw1-nat.mentorg.com> has quit IRC | 18:09 | |
likewise | morning all | 18:10 |
*** varjag <varjag!~user@ti0040a400-6639.bb.online.no> has joined #yocto | 18:15 | |
khem | likewise likewise | 18:15 |
khem | long time | 18:15 |
likewise | khem: sure. I went into Yocto user mode, also known as leech mode. | 18:15 |
likewise | khem: but am coming back with patches :) | 18:16 |
likewise | khem: how are you doing, saw a lot of activities around musl and libssl | 18:17 |
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC | 18:31 | |
khem | likewise: glad to see you back | 18:33 |
khem | likewise: yeah I am trying to help the project as much as I can | 18:33 |
likewise | khem: it seems like you have a time machine where you can go hours back in time each day, to work on Yocto :) | 18:34 |
likewise | I'm trying to make meta-ostree into good shape, merging all the efforts out there (3 that I know of) | 18:35 |
likewise | but I can only work on it project-driven | 18:35 |
*** georgem <georgem!~georgem@216.21.169.52> has quit IRC | 18:43 | |
khem | bitbake plugin for vscode https://github.com/mholo65/vscode-bitbake | 18:45 |
khem | I like the logo RP and kergoth | 18:45 |
*** marka <marka!~masselst@184.175.21.48> has joined #yocto | 18:46 | |
*** georgem <georgem!~georgem@216.21.169.52> has joined #yocto | 18:47 | |
kergoth | ah nice | 18:47 |
kergoth | khem: fyi, https://marketplace.visualstudio.com/items?itemName=EugenWiens.bitbake has way more installs than the mholo branch, and is more recently updated | 18:48 |
kergoth | based on the other | 18:48 |
*** awe00 <awe00!~awe00@unaffiliated/awe00> has joined #yocto | 18:50 | |
likewise | khem: you using vscode on Linux? | 18:50 |
khem | likewise: yes | 18:51 |
khem | kergoth: interesting I think it is same what I see on marketplace | 18:52 |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-dmeapwyerrljuxtw> has quit IRC | 18:52 | |
khem | I just picked the link from derived from but have the same one you point to | 18:54 |
mcfrisk | anyone seen this error from sumo: ...recipe-sysroot-native/usr/bin/x86_64-linux/../../libexec/x86_64-linux/gcc/x86_64-linux/7.3.0/ld: cannot find /usr/lib/libpthread_nonshared.a ? seems to go away after cleaning recipe and sstate but had this with a number of recipes today. | 18:55 |
*** davenporten <davenporten!8b55c117@gateway/web/freenode/ip.139.85.193.23> has joined #yocto | 19:01 | |
davenporten | Hey, does any one know if there is an easy way to build a armv7l image in yocto? | 19:02 |
jdel | i think if you download the main yocto repo, you can set the machine configuration in local.conf to an armv7l target | 19:09 |
davenporten | jdel: Great, thanks, I'll give that a try | 19:10 |
likewise | grep doesn't find armv7l for me | 19:11 |
khem | davenporten: yes infact armv7l is default for beaglebone and raspberrypi3 etc | 19:12 |
davenporten | That does seem to be the case for me as well, but thanks for the help jdel | 19:13 |
khem | davenporten: so you might want to set MACHINE=beaglebone-yocto | 19:13 |
davenporten | khem: is beaglebone based on armv7l? I'll give that a try too | 19:15 |
davenporten | khem: Thanks | 19:15 |
khem | davenporten: yes | 19:19 |
khem | kergoth: https://pasteboard.co/HCwpEZT.png | 19:22 |
kergoth | awesome | 19:23 |
kergoth | i should try sshfs to play with that | 19:23 |
kergoth | need to tweak my dotfiles, my colors look like ass in a vscode terminal | 19:23 |
khem | absolutely, that setup is using sshfs as well | 19:23 |
khem | kergoth: I use dracula theme derivatives | 19:24 |
kergoth | ah nice, that one isn't bad | 19:25 |
*** jkprg <jkprg!~jkprg@62.48.251.38> has joined #yocto | 19:25 | |
kergoth | i've been using base16-tomorrow-night, using base16-shell to adjust the colors, but not all terminals allow colors to be altered with escape codes | 19:25 |
khem | true | 19:26 |
khem | so autocompletion Ctrl + Space works see https://pasteboard.co/HCwroWa.png :) | 19:27 |
kergoth | nice. | 19:27 |
*** davenporten <davenporten!8b55c117@gateway/web/freenode/ip.139.85.193.23> has quit IRC | 19:36 | |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto | 19:42 | |
justinttt | Will EXTRA_OEMAKE override variables defined in a makefile? or does it write those variables to the env? | 19:44 |
kergoth | it's passed on the make commandline | 19:46 |
kergoth | per the make documentation, commandline definitions override makeifle definitions | 19:47 |
kergoth | export FOO=1 would put it in the environment | 19:47 |
*** jkprg <jkprg!~jkprg@62.48.251.38> has quit IRC | 19:52 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 20:03 | |
*** jkprg <jkprg!~jkprg@62.48.251.38> has joined #yocto | 20:06 | |
*** ntl <ntl!~nathanl@hsvwanfw1-nat.mentorg.com> has joined #yocto | 20:12 | |
*** gtristan <gtristan!~tristanva@110.11.179.2> has joined #yocto | 20:13 | |
*** scottrif <scottrif!~scottrif@47-40-108-60.dhcp.knwc.wa.charter.com> has quit IRC | 20:16 | |
*** jkprg <jkprg!~jkprg@62.48.251.38> has quit IRC | 20:22 | |
*** jkprg <jkprg!~jkprg@62.48.251.38> has joined #yocto | 20:24 | |
*** likewise <likewise!~leon@188.206.99.38> has quit IRC | 20:31 | |
*** jkprg <jkprg!~jkprg@62.48.251.38> has quit IRC | 20:31 | |
*** morphis <morphis!~morphis@p200300CCFBEF7000D6C5E6B5B8F349E9.dip0.t-ipconnect.de> has quit IRC | 21:15 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 21:16 | |
*** AbleBacon <AbleBacon!~AbleBacon@unaffiliated/ablebacon> has quit IRC | 21:22 | |
*** marka <marka!~masselst@184.175.21.48> has quit IRC | 21:33 | |
*** ant_home <ant_home!~ant__@host205-252-dynamic.245-95-r.retail.telecomitalia.it> has quit IRC | 21:47 | |
*** varjag <varjag!~user@ti0040a400-6639.bb.online.no> has quit IRC | 21:58 | |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC | 21:59 | |
*** justinttt_ <justinttt_!49e56612@gateway/web/freenode/ip.73.229.102.18> has joined #yocto | 22:04 | |
*** dqx <dqx!~dqx@unaffiliated/dqx> has joined #yocto | 22:07 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 22:17 | |
*** agust <agust!~agust@p508862E3.dip0.t-ipconnect.de> has quit IRC | 22:22 | |
khem | RP: prelink-native is failing git/doc/Makefile.am: No such file or directory | 22:22 |
*** flying_sausages <flying_sausages!~flying_sa@static.88-198-40-49.clients.your-server.de> has quit IRC | 22:29 | |
RP | khem: fray ^^^ | 22:34 |
RP | khem: you're finding things faster than I am :) | 22:34 |
khem | RP: http://git.openembedded.org/openembedded-core-contrib/commit/?h=kraj/master | 22:38 |
RP | khem: curious how its managing to work for me... | 22:41 |
khem | I had to do bitbake -ccleanall as well | 22:46 |
khem | RP: using master branch should have been done anyway the staging branch and master branch are now same | 22:47 |
RP | khem: any ideas on bug 12918 ? | 22:53 |
yocti | Bug https://bugzilla.yoctoproject.org/show_bug.cgi?id=12918 normal, Undecided, ---, ross.burton, NEW , nightly-musl has build warnings | 22:53 |
*** dqx <dqx!~dqx@unaffiliated/dqx> has joined #yocto | 22:55 | |
*** flying_sausages <flying_sausages!~flying_sa@88.198.40.49> has joined #yocto | 22:59 | |
*** awe00 <awe00!~awe00@unaffiliated/awe00> has quit IRC | 23:01 | |
khem | RP: This is mostly due to fPIC -DPIC violation | 23:01 |
*** jkprg <jkprg!~jkprg@62.48.251.38> has joined #yocto | 23:01 | |
*** gabrbedd <gabrbedd!~beddingfi@li680-65.members.linode.com> has joined #yocto | 23:02 | |
khem | mesa has some clever code | 23:03 |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC | 23:03 | |
khem | which usually is wrong | 23:04 |
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-nsanlspdygcrllml> has joined #yocto | 23:22 | |
bluelightning | khem: FYI I did get past the acl/attr issue - I'd missed cleaning acl. I believe the issue is related to this: http://git.openembedded.org/openembedded-core/commit/?id=eb924bc684f92fc2d806715872667f241e54b365 | 23:23 |
khem | bluelightning: ah, yes coincidently I am running into simimar issue in another package | 23:28 |
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has quit IRC | 23:38 | |
*** justinttt_ <justinttt_!49e56612@gateway/web/freenode/ip.73.229.102.18> has quit IRC | 23:56 | |
*** justinttt <justinttt!49e56612@gateway/web/freenode/ip.73.229.102.18> has quit IRC | 23:59 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!