Tuesday, 2018-08-28

khemderek007: you need to be updating poky layer00:08
khemthere has been handskake between meta-openembedded and oe-core w.r.t this file it move to oe-core few weeks back00:08
derek007khem, thanks, yes, I do see that file in oe-core, do you mean update poky to latest version?00:16
khemyes poky in your case00:17
derek007khem, got it, Thanks!00:22
*** flying_sausages <flying_sausages!~flying_sa@static.88-198-40-49.clients.your-server.de> has quit IRC00:32
*** flying_sausages <flying_sausages!~flying_sa@static.88-198-40-49.clients.your-server.de> has joined #yocto00:33
*** scottrif <scottrif!~scottrif@47-40-108-60.dhcp.knwc.wa.charter.com> has quit IRC00:33
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has joined #yocto01:00
*** kaspter <kaspter!~Instantbi@115.206.63.225> has joined #yocto01:16
*** chandana73 <chandana73!~ckalluri@149.199.62.254> has quit IRC01:48
*** anujm <anujm!~anujm@192.198.146.171> has joined #yocto02:22
*** derek007 <derek007!d05b0202@gateway/web/freenode/ip.208.91.2.2> has quit IRC02:41
*** armpit <armpit!~armpit@2601:202:4180:c33:548d:64c4:7713:42f0> has quit IRC03:35
*** kaspter <kaspter!~Instantbi@115.206.63.225> has quit IRC03:38
*** kaspter1 <kaspter1!~Instantbi@183.156.70.233> has joined #yocto03:38
*** kaspter1 is now known as kaspter03:41
*** armpit <armpit!~armpit@2601:202:4180:c33:4de4:4bff:337d:ee91> has joined #yocto03:48
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto03:59
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has joined #yocto04:11
*** linuxjacques <linuxjacques!~jacques@nslu2-linux/jacques> has quit IRC04:12
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC04:19
*** dl9pf <dl9pf!~quassel@opensuse/member/dl9pf> has quit IRC04:25
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has quit IRC05:12
*** MarcWe <MarcWe!~hmw@zimbra.welvaarts.com> has joined #yocto05:24
*** aehs29 <aehs29!~aehs29@149.199.62.254> has joined #yocto05:27
aehs29khem: sorry my computer died again and couldnt see if you replied to the compiler-rt-native stuff05:28
aehs29khem: is this a known issue?05:28
*** MarcWe <MarcWe!~hmw@zimbra.welvaarts.com> has joined #yocto05:29
illariosHello guys n girls!!05:30
illariosDoes anyone know how to get an initramfs.img out of the yocto core-image-minimal ??05:30
khemaehs29: I did not reply yes,05:31
khemcompiler-rt is disabled due to a bug that was reported by some end user05:31
khemif we enable compiler-rt for native then it will also mean that cross-clang will link with compiler-rt too05:34
khemeventually I want to be there05:34
khemtest it out and let me know if it all pans ok05:34
*** rohanmahy <rohanmahy!~rohan@142-254-101-25.dsl.dynamic.fusionbroadband.com> has joined #yocto05:39
*** rohanmahy <rohanmahy!~rohan@142-254-101-25.dsl.dynamic.fusionbroadband.com> has joined #yocto05:40
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-lplkifvedrfmxswm> has quit IRC05:44
rohanmahyHi, With some helpful advice from this IRC channel (thanks @kergoth ), I used local variables and OVERRIDES to create a single recipe which could build from multiple sources of the same software package (a specific tagged release, the HEAD of our develop branch, or local source). The override worked perfectly except that bitbake also rebuilt all the packages in the image, including many of the native05:45
rohanmahypackages. So not so good as a time saver...05:45
rohanmahyNext I created 3 recipes: foo-release, and foo-git-head, and foo-local. I could build each one individually from a clean tmp/, but otherwise bitbake complains that the target files are already in tmp/sysroots and refuses to build. (Even if I delete tmp/sysroots and the manifest file, knowledge of what used to be in tmp/sysroots persists.)05:45
rohanmahyNext I created 3 versions of the same recipe:  foo_0.3.1.bb , foo_0.3.1+git.bb and foo_0.3.1+local. I can build each fine if I do a bitbake -c cleansstate foo between them, but if I build more than one I get the following error:05:45
rohanmahyERROR: Multiple versions of foo are due to be built (/home/ubuntu/fsl-release-bsp/sources/meta-foo/recipes-foo/foo/foo_0.3.1.bb /home/ubuntu/fsl-release-bsp/sources/meta-foo/recipes-foo/foo/foo_0.3.1+local.bb). Only one version of a given PN should be built in any given build. You likely need to set PREFERRED_VERSION_foo to select the correct version or don't depend on multiple versions.05:45
rohanmahyDid I miss something implementing one of these three approaches? Is there another way to accomplish this (ex: maybe find a practical use case for BBVERSIONS)?.05:45
*** webreformer <webreformer!~webreform@106.51.29.139> has joined #yocto05:53
khemyou can use only one recipe at a time for this since practically you are building same s/w05:54
khembut it will be good to understand your usecase.. why do you need these different versions05:54
*** webreformer <webreformer!~webreform@106.51.29.139> has quit IRC05:59
rohanmahykhem, the use case is that I want to switch frequently from one source of the software to another. For example I want to try a feature on my local branch. If I find a bug, I want to quickly rebuild the package with the release or HEAD version and see if it has the same behavior.06:04
rohanmahyPreviously we had different versions of SRC_URI and a few other variables commented out and would edit this to switch sources. Predictably this is error prone and requires an extra step before checking in legitimate changes to the recipe.06:05
*** webreformer <webreformer!~webreform@27.59.122.32> has joined #yocto06:05
rohanmahyWe only ever use one of these versions at a time, but being able to build one and then the other is something we do all the time--sometimes to incorporate in an image, but sometimes I just update the target rpm on my board using smart install.06:06
aehs29khem: yeah I tried enabling it but compiler-rt-native doesnt build, I think cmake was complaining about not finding llvmConfig.toolchain or something06:09
aehs29khem: I can give it another shot once I get my computer back06:09
khemit should not build it it, infact that a bug06:09
khemrohanmahy: look at devtool I think you can get this done effectively with it06:10
khemwhich version are you on ?06:10
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has joined #yocto06:11
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto06:13
rohanmahykhem: we are on morty. it looks like devtool just creates the recipes. I have all the variants of the recipes. I just need to be able to switch quickly among them. Did I miss something in devtool that does that?06:13
*** webreformer <webreformer!~webreform@27.59.122.32> has quit IRC06:14
*** dc13ff <dc13ff!uid190567@gateway/web/irccloud.com/x-agxbdeywthqkokez> has joined #yocto06:15
khemrohanmahy: you could be in better shape with yocto versions newer than morty becase it uses recipe specific syroot06:17
rohanmahykhem: that is useful. I have been trying to convince some managers to switch to rocko where we also have board support.06:18
khemso I would suggest that you make SRC_URI overridsabele, eg SRC_URI += "${NOW_URI}"06:18
khemand then override NOW_URI from local.conf06:18
khemNOW_URI_pn-<recipe> = "git://,,,,"06:19
rohanmahyoverriding from local.conf triggers almost a full build. I had that working on friday.  ;-)06:19
rohanmahyIs anyone planning to add package-specific overrides anytime soon?  (Just like OVERRIDES, but scope is limited to the current package).06:21
*** varjag <varjag!~user@122.62-97-226.bkkb.no> has joined #yocto06:21
*** fdanis_away is now known as fdanis06:24
rohanmahykhem: thanks for the info. I will try out the multiple recipes approach in rocko and see if it works better there.06:26
khemrohanmahy: the rebuild will depend on how deep the dependencies on this recipe are06:29
khemrohanmahy: if you were to write three recipes for say glibc then good luck with rebuilds they will happen06:29
khembut if the recipe is more or less a leaf package in dep tree then it is better06:30
rohanmahykhem: the recipe is a leaf which depends on 3 other leaves, but still it rebuilt the compiler and all sorts of other things that did not change.06:31
rohanmahyall the dependencies where our own code in our layer.06:31
*** Phreaknes <Phreaknes!~Phreaknes@71.11.113.4> has joined #yocto06:34
PhreaknesHello.06:35
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto06:37
PhreaknesThis may not be the right place to ask but I'm trying to find a Automotive hardware platform for Yocto. I've been doing some heavy research into the renasas H2/H3 and I think it's does everything I want but it's way to much just to get started on the development side. Any suggestions on alternative hardware platforms that 4 camera support parking assist and infotainment cockpits with dual screens?06:38
webreformer_Hi All,06:46
webreformer_Which ubuntu version is best for yocto development ?06:46
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has joined #yocto06:50
*** morphis <morphis!~morphis@p200300CCFBD85300D4F110AAC7A56521.dip0.t-ipconnect.de> has joined #yocto06:51
khemwebreformer_: it depends which release of yocto project you are building06:56
khemgenerally look at supported distros page06:57
khemyou can check that via looking at SANITY_TESTED_DISTROS in meta-poky/conf/distro/poky.conf06:59
khemassuming latest release then always check https://yoctoproject.org/docs/current/ref-manual/ref-manual.html#detailed-supported-distros06:59
*** kaspter <kaspter!~Instantbi@183.156.70.233> has quit IRC06:59
*** fl0v0 <fl0v0!~fvo@i5E863199.versanet.de> has joined #yocto07:00
khemrohanmahy: if it is rebuilding compiler etc. you have a different problem. I would not expect it to rebuild07:01
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto07:01
*** kaspter <kaspter!~Instantbi@183.156.70.233> has joined #yocto07:03
khemPhreaknes: #automotive channel might have more suggestions but I think besides renesas H2/H3 see https://wiki.automotivelinux.org/agl-distro/source-code07:05
*** gtristan <gtristan!~tristanva@110.11.179.72> has joined #yocto07:06
*** rauz_ <rauz_!~rauz@enieslobby.rauecker.at> has joined #yocto07:13
*** TobSnyder <TobSnyder!~schneider@95.90.154.26> has joined #yocto07:23
*** Bunio_FH1 <Bunio_FH1!~bunio@81-18-201-214.static.chello.pl> has joined #yocto07:28
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has quit IRC07:29
*** anujm <anujm!~anujm@192.198.146.171> has quit IRC07:36
*** gtristan <gtristan!~tristanva@110.11.179.72> has quit IRC07:37
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has quit IRC07:39
*** rohanmahy <rohanmahy!~rohan@142-254-101-25.dsl.dynamic.fusionbroadband.com> has quit IRC07:41
*** webreformer <webreformer!~webreform@27.59.122.32> has joined #yocto07:42
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has joined #yocto07:58
*** webreformer <webreformer!~webreform@27.59.122.32> has quit IRC08:01
*** mckoan <mckoan!~marco@unaffiliated/mckoan> has joined #yocto08:06
mckoangood morning08:06
*** kaspter <kaspter!~Instantbi@183.156.70.233> has quit IRC08:16
*** kaspter <kaspter!~Instantbi@183.156.70.233> has joined #yocto08:16
*** joseppc <joseppc!~josep@linaro/joseppc> has joined #yocto08:16
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC08:29
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto08:35
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto08:47
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-nnhvgxityhlionfs> has joined #yocto08:54
*** JaMa <JaMa!~martin@217.30.68.212> has joined #yocto08:59
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC08:59
*** gtristan <gtristan!~tristanva@110.11.179.2> has joined #yocto09:07
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC09:14
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has quit IRC09:17
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has joined #yocto09:19
*** dc13ff <dc13ff!uid190567@gateway/web/irccloud.com/x-agxbdeywthqkokez> has quit IRC09:24
*** rburton <rburton!~textual@35.106.2.81.in-addr.arpa> has joined #yocto09:28
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto09:31
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto09:40
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC09:41
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC09:44
yoctiNew news from stackoverflow: How to access the build target name in bitbake <https://stackoverflow.com/questions/52054642/how-to-access-the-build-target-name-in-bitbake>09:46
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC09:51
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto09:54
*** quite <quite!quite@unaffiliated/quite> has quit IRC09:57
*** gtristan <gtristan!~tristanva@110.11.179.2> has quit IRC09:57
*** kanavin <kanavin!~kanavin@79.140.126.226> has quit IRC10:09
mckoanHi, anyone facing oom-killer problems with MariaDB using Rocko?10:11
mckoanmy system is unusable after 1 hour runtime because oom-killer is killing MariaDB10:12
mckoanversions prior to rocko (5.5.57-MariaDB) were ok10:13
MarcWemckoan: i think that you need to verify the maria db settings related to mem usage10:23
mckoanMarcWe: yes, I suspected that and I'm verifying, thx10:24
*** quite <quite!quite@unaffiliated/quite> has joined #yocto10:24
*** kanavin <kanavin!~kanavin@79.140.126.226> has joined #yocto10:28
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto10:30
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has quit IRC10:31
*** gtristan <gtristan!~tristanva@114.207.54.40> has joined #yocto10:57
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto10:58
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has quit IRC11:06
mortWriting a recipe for webrtc, I need to write my own do_fetch. One of the steps in fetching, using Google's tools, uses the xz binary to unzip something after downloading. Even though I depend on xz-native, the xz binary is only available some time after do_fetch.11:45
mortShould I do the part which requires xz in do_unpack even though it downloads stuff, or is there a way to make xz available to do_fetch?11:46
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-casbbnpafghbdtdi> has joined #yocto11:48
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC11:53
*** webreformer <webreformer!~webreform@106.51.29.139> has joined #yocto12:05
rburtonmort: DEPENDS is actually short-hand for adding a dependency on xz-native for do_configure12:06
rburtonmort: you'll need to do do_fetch[depends] += xz-native:do_populate_sysroot12:07
rburtonor if you write a proper fetcher for bitbake,  see base.bbclass for the logic that looks at the fetch url and extends the dependencies automatically12:07
mortrburton: I see, thanks - though why does it work in do_unpack then? Is that just a race condition?12:07
rburtonyeah probably12:08
mortrburton: another thing, how does bitbake know if it should re-run the fetch step or not? When I just have a custom do_fetch with no SRC_URI, it seems to want to run fetch every time12:09
rburtonoh btw pretty sure there's a depot fetcher out there somewhere12:11
mortit complains about "unparsed line: 'do_fetch[depends] += xz-native:do_populate_sysroot'"12:15
rburtonyou'll need quotes around teh xz-native:... bit12:16
mortwas just about to comment that it works with quotes, but I wasn't sure if that means exactly the same12:16
mortrburton: is there an easy way to tell the system that it's downloaded though? I might check out the depot fetcher, but if it's just a tiny change I'd rather just use my current do_fetch until I take the time to find the fetcher12:20
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC12:24
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto12:28
rburtonmort: use the same variables as the standard fetcher and the variable depends should do the right thing12:30
mortI can't find any variable, but https://github.com/openembedded/bitbake/blob/master/lib/bb/fetch2/git.py#L349 - it looks like the git fetcher just exits early if it detects that the repo is already downloaded. Is the mechanism for not re-fetching simply that the fetcher just exits if the local files already exist?12:35
illariosDoes anyone have any experience with initramfs out of Yoctoand EFI boot ?12:39
rburtonif there are any glib-savvy developers with a few hours to kill, fixing https://bugzilla.yoctoproject.org/show_bug.cgi?id=12904 would be much appreciated12:42
yoctiBug 12904: normal, Undecided, ---, ross.burton, NEW , Port panel from apm/acpi to sysfs12:42
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has joined #yocto12:44
eduardas_mhello, I am trying to use the Yocto-generated SDK on a CMake project, however Boost is not found: https://pastebin.com/m45nrJ0n12:46
eduardas_mthe Boost headers exist in the target sysroot, though12:46
kanavinrburton: cc for now, I'm trying to catch up with all the other stuff12:46
kanavinsuch as, oh, recipe updates :D12:46
*** volestorm_ <volestorm_!~volestorm@2400:8902::f03c:91ff:fe7f:f462> has joined #yocto12:47
eduardas_mthe same CMake project builds fine via a Yocto recipe though12:47
*** JaMa <JaMa!~martin@217.30.68.212> has quit IRC12:57
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has joined #yocto13:09
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC13:11
*** kaspter <kaspter!~Instantbi@183.156.70.233> has quit IRC13:15
*** kaspter <kaspter!~Instantbi@183.156.70.233> has joined #yocto13:16
*** stephano <stephano!~stephano@134.134.139.75> has joined #yocto13:22
*** webreformer <webreformer!~webreform@106.51.29.139> has quit IRC13:32
*** webreformer <webreformer!~webreform@27.59.122.32> has joined #yocto13:37
*** henriknj <henriknj!~hnje@193.106.123.182> has quit IRC13:38
yoctiNew news from stackoverflow: how to add a third party library as a package in Yocto build <https://stackoverflow.com/questions/52059266/how-to-add-a-third-party-library-as-a-package-in-yocto-build>13:46
*** otavio <otavio!~otavio@debian/developer/otavio> has joined #yocto13:53
*** varjag <varjag!~user@122.62-97-226.bkkb.no> has quit IRC13:57
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC14:01
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto14:04
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-casbbnpafghbdtdi> has quit IRC14:07
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto14:11
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has joined #yocto14:12
*** AbleBacon <AbleBacon!~AbleBacon@unaffiliated/ablebacon> has joined #yocto14:12
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto14:13
*** webreformer <webreformer!~webreform@27.59.122.32> has quit IRC14:15
*** mckoan is now known as mckoan|away14:24
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC14:30
*** kanavin_ <kanavin_!~kanavin@79.140.126.226> has joined #yocto14:35
*** kanavin <kanavin!~kanavin@79.140.126.226> has quit IRC14:36
*** TobSnyder <TobSnyder!~schneider@95.90.154.26> has quit IRC14:40
*** joseppc <joseppc!~josep@linaro/joseppc> has quit IRC14:43
yoctiNew news from stackoverflow: Yocto - development build vs production build <https://stackoverflow.com/questions/52060639/yocto-development-build-vs-production-build>14:47
*** xtungvu90 <xtungvu90!uid313450@gateway/web/irccloud.com/x-ldojcwtdpmemjauf> has joined #yocto14:48
*** gtristan <gtristan!~tristanva@114.207.54.40> has quit IRC15:03
*** jacques <jacques!~jacques@nslu2-linux/jacques> has joined #yocto15:13
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC15:17
RPhttps://www.linuxfoundation.org/press-release/2018/08/yocto-project-welcomes-new-members-advances-open-source-embedded-systems-through-momentum/15:17
kergothawesome15:18
florianuh, cool15:20
*** jacques is now known as linuxjacques15:21
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has quit IRC15:26
*** illarios <illarios!3e862e04@gateway/web/freenode/ip.62.134.46.4> has quit IRC15:32
*** webreformer <webreformer!~webreform@106.51.17.173> has joined #yocto15:41
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has quit IRC15:43
*** morphis <morphis!~morphis@p200300CCFBD85300D4F110AAC7A56521.dip0.t-ipconnect.de> has quit IRC15:46
*** lusus_ <lusus_!~lusus@62.91.23.180> has quit IRC15:47
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC15:47
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto15:51
*** seebs <seebs!~seebs@38.109.203.15> has quit IRC15:59
*** morphis <morphis!~morphis@p200300CCFBEC000031535F01169770E8.dip0.t-ipconnect.de> has joined #yocto16:00
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto16:03
*** tgraydon <tgraydon!textual@nat/intel/x-xwkrucrskseuycws> has joined #yocto16:10
armpithttps://autobuilder.yoctoproject.org/new/#/builders/29/builds/4816:10
*** webreformer <webreformer!~webreform@106.51.17.173> has quit IRC16:13
*** seebs <seebs!~seebs@38.109.203.15> has joined #yocto16:13
*** webreformer <webreformer!~webreform@106.51.17.173> has joined #yocto16:14
khemThe server failed the authenticity check (autobuilder.yoctoproject.org).16:19
*** joseppc <joseppc!~josep@linaro/joseppc> has joined #yocto16:19
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has joined #yocto16:31
*** linuxjacques <linuxjacques!~jacques@nslu2-linux/jacques> has quit IRC16:31
*** webreformer <webreformer!~webreform@106.51.17.173> has quit IRC16:32
*** jacques <jacques!~jacques@nslu2-linux/jacques> has joined #yocto16:33
*** fdanis is now known as fdanis_away16:36
*** chandana73 <chandana73!~ckalluri@149.199.62.254> has joined #yocto16:36
*** armpit <armpit!~armpit@2601:202:4180:c33:4de4:4bff:337d:ee91> has quit IRC16:39
yoctiNew news from stackoverflow: Yocto Build fails to at `go get` command within Bitbake Recipe for InfluxDB <https://stackoverflow.com/questions/52062775/yocto-build-fails-to-at-go-get-command-within-bitbake-recipe-for-influxdb>16:47
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has quit IRC16:50
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC16:55
*** joseppc <joseppc!~josep@linaro/joseppc> has quit IRC16:56
*** falk0n <falk0n!~falk0n@a109-49-51-30.cpe.netcabo.pt> has joined #yocto17:03
*** falk0n <falk0n!~falk0n@a109-49-51-30.cpe.netcabo.pt> has quit IRC17:05
*** falk0n <falk0n!~falk0n@a109-49-51-30.cpe.netcabo.pt> has joined #yocto17:06
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has joined #yocto17:06
*** arielmr <arielmr!~quassel@187-163-217-93.static.axtel.net> has joined #yocto17:10
*** fl0v0 <fl0v0!~fvo@i5E863199.versanet.de> has quit IRC17:31
*** webreformer_ <webreformer_!~webreform@106.51.29.139> has quit IRC17:42
yoctiNew news from stackoverflow: How to deploy a Find*.cmake file for an Autotools library in the correct place for Yocto? <https://stackoverflow.com/questions/52063591/how-to-deploy-a-find-cmake-file-for-an-autotools-library-in-the-correct-place-f>17:47
aehs29RP: thats great17:48
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-nnhvgxityhlionfs> has quit IRC18:03
*** Bunio_FH1 <Bunio_FH1!~bunio@81-18-201-214.static.chello.pl> has quit IRC18:07
yoctiNew news from stackoverflow: if conditional statement in bbappend file <https://stackoverflow.com/questions/52063827/if-conditional-statement-in-bbappend-file>18:17
*** dc13ff <dc13ff!uid190567@gateway/web/irccloud.com/x-mhgfibsiqfpnrfcp> has joined #yocto18:21
*** fray <fray!~fray@kernel.crashing.org> has joined #yocto18:27
*** AbleBacon_ <AbleBacon_!~AbleBacon@unaffiliated/ablebacon> has joined #yocto18:27
khemRP: https://gist.github.com/kraj/17fe3a56d95fff9a72772fe869a6796518:29
khemseeing these errors on risc-v alone, ideas ?18:29
*** AbleBacon <AbleBacon!~AbleBacon@unaffiliated/ablebacon> has quit IRC18:30
*** AbleBacon_ is now known as AbleBacon18:30
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto18:32
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC18:33
*** armpit <armpit!~armpit@64.2.3.196.ptr.us.xo.net> has joined #yocto18:39
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC18:41
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto18:42
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC18:53
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has joined #yocto18:54
*** chandana73 <chandana73!~ckalluri@149.199.62.254> has quit IRC18:54
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC19:17
*** AbleBacon_ <AbleBacon_!~AbleBacon@unaffiliated/ablebacon> has joined #yocto19:19
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto19:22
*** AbleBacon <AbleBacon!~AbleBacon@unaffiliated/ablebacon> has quit IRC19:22
*** AbleBacon_ is now known as AbleBacon19:22
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC19:31
*** joseppc <joseppc!~josep@linaro/joseppc> has joined #yocto19:41
*** xtungvu90 <xtungvu90!uid313450@gateway/web/irccloud.com/x-ldojcwtdpmemjauf> has quit IRC19:47
*** gurmble <gurmble!~grumble@freenode/staff/grumble> has joined #yocto19:56
*** grumble <grumble!~grumble@freenode/staff/grumble> has quit IRC19:56
*** gurmble is now known as grumble19:58
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto20:04
*** gtristan <gtristan!~tristanva@110.11.179.2> has joined #yocto20:07
*** joseppc <joseppc!~josep@linaro/joseppc> has quit IRC20:12
*** morphis <morphis!~morphis@p200300CCFBEC000031535F01169770E8.dip0.t-ipconnect.de> has quit IRC20:13
*** chandana73 <chandana73!~ckalluri@149.199.62.254> has joined #yocto20:23
*** dc13ff <dc13ff!uid190567@gateway/web/irccloud.com/x-mhgfibsiqfpnrfcp> has quit IRC20:29
*** armpit <armpit!~armpit@64.2.3.196.ptr.us.xo.net> has quit IRC21:00
RPkhem: no qemu support making on target postinstalls inevitable21:02
RPkanavin_: ^^^21:02
*** AbleBacon <AbleBacon!~AbleBacon@unaffiliated/ablebacon> has quit IRC21:04
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto21:08
*** gtristan <gtristan!~tristanva@110.11.179.2> has quit IRC21:24
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-biyphdqjptixflop> has joined #yocto21:33
*** tgraydon <tgraydon!textual@nat/intel/x-xwkrucrskseuycws> has quit IRC21:51
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC21:52
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC22:05
*** varjag <varjag!~user@ti0040a400-6639.bb.online.no> has joined #yocto22:06
RPkanavin_: https://autobuilder.yocto.io/builders/nightly-x86-64/builds/1282 :(22:10
bluelightninghmm... I'm getting this at the moment: https://pastebin.com/Yz1hSarV22:23
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto22:31
*** varjag <varjag!~user@ti0040a400-6639.bb.online.no> has quit IRC22:42
*** rburton <rburton!~textual@35.106.2.81.in-addr.arpa> has quit IRC23:00
*** rburton <rburton!~textual@81.2.106.35> has joined #yocto23:01
*** dc13ff <dc13ff!uid190567@gateway/web/irccloud.com/x-qwyjwzweilyevvxh> has joined #yocto23:11
*** armpit <armpit!~armpit@2601:202:4180:c33:38e9:838d:a16e:18a5> has joined #yocto23:16
khembluelightning: it seems acl needs to compile with -fPIC -DPIC options23:34
bluelightningkhem: has nobody else seen this though?23:34
bluelightningin any case, what changed?23:35
*** jacques <jacques!~jacques@nslu2-linux/jacques> has quit IRC23:38
*** junland <junland!~junland@142.93.201.46> has quit IRC23:40
khembluelightning: we are using security flags on poky by default now23:42
*** junland <junland!~junland@142.93.201.46> has joined #yocto23:42
khemso its possible it will expose these kind of errors but I have not see this in my world builds23:42
*** jacques <jacques!~jacques@nslu2-linux/jacques> has joined #yocto23:42
khemI build for qemux86-64 and your build is using genericx86-6423:43
khemdont think that should matter23:44

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