*** behanw_ <behanw_!~behanw@2001:470:b26c:0:590b:8246:b5f2:3dcd> has joined #yocto | 00:02 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 00:13 | |
*** Snert_ <Snert_!~snert_@69-161-21-126.static.acsalaska.net> has quit IRC | 00:21 | |
*** Snert_ <Snert_!~snert_@69-161-21-126.static.acsalaska.net> has joined #yocto | 00:22 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-ewxvumpvnxofxwdl> has quit IRC | 00:23 | |
*** dreyna4529 <dreyna4529!~dreyna@96.26.38.47> has quit IRC | 00:39 | |
*** dreyna4529 <dreyna4529!~dreyna@96.26.38.47> has joined #yocto | 00:39 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 01:07 | |
*** sameo <sameo!~samuel@192.55.55.39> has quit IRC | 01:12 | |
aj_c | Is it possible to perform a .incappend as a .bbappend ? | 01:13 |
---|---|---|
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 01:24 | |
*** mtetreault <mtetreault!~mtetreaul@modemcable053.179-178-173.mc.videotron.ca> has joined #yocto | 01:32 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 01:33 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 01:34 | |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has joined #yocto | 01:35 | |
ryansturmer | Hey folks | 01:35 |
ryansturmer | I am new to yocto and am trying to patch a recipe for the intel edison. | 01:35 |
ryansturmer | I am abusing yocto in a way, by building it on archlinux, which is not approved | 01:36 |
ryansturmer | and the newest GCC won't build ncurses | 01:36 |
ryansturmer | , although there is a patch, whcih I can apply | 01:36 |
mtetreault | I'm having issue building glic2 when running debian 8.2. the error seems to come from libc_pic.os' failed | 01:37 |
ryansturmer | so my question is, how do I patch a recipe | 01:37 |
ryansturmer | I can create a layer, right? And include a bbappend file that points to a patch, if I understand | 01:37 |
ryansturmer | If anyone has link to step by step guidance on this, I would be appreciative - I've been looking at the developers guide, and am a little lost. | 01:38 |
mtetreault | ryansturmer: hi! | 01:38 |
mtetreault | ryansturmer: I gues you already when through this doc, https://www.yoctoproject.org/documentation | 01:39 |
mtetreault | ryansturmer: Otherwise, yeah you should be able to create a layer and then create a bbappend file to patch your recipe. | 01:39 |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has quit IRC | 01:40 | |
mtetreault | ryansturmer: Keep in mind, if you create a new layer you need to includes it in your bblayer file | 01:40 |
mtetreault | build/conf/bblayers.conf | 01:41 |
clopez | any easy way/command to print the enabled DISTRO_FEATURES? | 01:41 |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 01:44 | |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has joined #yocto | 01:51 | |
ryansturmer | So the distribution for the intel edison seems to be basically a couple of custom layers, plus a makefile and some scripts that they include to make things a little easier on folks | 01:59 |
ryansturmer | so in order to create my custom layer, I've made a meta-mylayer directory | 02:01 |
ryansturmer | with a conf/layer.conf | 02:02 |
ryansturmer | and a recipes-core/ncurses | 02:02 |
ryansturmer | with the ncurses core containing a ncurses_5.9.bbappend file | 02:03 |
ryansturmer | and in the main image configuration, I've added the meta-mylayer layer | 02:03 |
*** dasabhi <dasabhi!~dasabhi@wn-campus-nat-129-97-124-44.dynamic.uwaterloo.ca> has quit IRC | 02:03 | |
mtetreault | ryansturmer: What's your questions exactly. | 02:04 |
ryansturmer | Well my first question is, do those steps sound sane for ading a layer? | 02:04 |
ryansturmer | next question would be: | 02:04 |
ryansturmer | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 02:05 |
ryansturmer | SRC_URI += "file://work_around_changed_output_of_GNU_cpp_5.x.patch" | 02:05 |
ryansturmer | that's the contents of my bbappend file, does that look on the right track? | 02:05 |
mtetreault | I'll start with your second question first. your bb append file seems goos. | 02:06 |
mtetreault | For you first question. I'm not sure what's the difference between the standards yocto release and the edion branch. I would have to verify. | 02:07 |
ryansturmer | (implied: I have a 'files' directory in my layer that contains the referenced files) | 02:07 |
ryansturmer | does the folder structure of my layer seem sane? | 02:07 |
mtetreault | hem, gimme a sec. | 02:08 |
mtetreault | I'm not sure to understand the layout of your layer but basicly | 02:12 |
mtetreault | you would normally have in your layer a conf/layers.conf file which kind of dictate where to look for bbappend file | 02:12 |
mtetreault | So let's say you want to bbappend the ncurse recipe. In your layer you would have the following my-layer/recipes-core/ncurse/ncurse_version.bbappend | 02:13 |
mtetreault | and your patch could be in the folder named files | 02:14 |
mtetreault | make sense? | 02:14 |
ebolton | @clopez - try "bitbake -e <image_name> > env.txt" | 02:31 |
ebolton | then grep that output file for "DISTRO_FEATURES" | 02:32 |
ebolton | you'll have to sift through some garbage, but you should see a section that shows all the operations performed on DISTRO_FEATURES with the final value | 02:33 |
ebolton | $DISTRO_FEATURES [5 operations] | 02:33 |
ebolton | # set? /home/ebolton/yocto/poky/meta-yocto/conf/distro/poky.conf:20 | 02:33 |
ebolton | # "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC} ${POKY_DEFAULT_DISTRO_FEATURES}" | 02:33 |
ebolton | # set? /home/ebolton/yocto/poky/meta/conf/distro/include/default-distrovars.inc:20 | 02:33 |
ebolton | # "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC}" | 02:33 |
ebolton | # set /home/ebolton/yocto/poky/meta/conf/documentation.conf:139 | 02:33 |
ebolton | # [doc] "The features enabled for the distribution." | 02:33 |
ebolton | # set? /home/ebolton/yocto/poky/meta/conf/bitbake.conf:714 | 02:33 |
ebolton | # "" | 02:33 |
ebolton | # append utils.py:105 [features_backfill] | 02:33 |
ebolton | # " sysvinit" | 02:33 |
ebolton | # pre-expansion value: | 02:33 |
ebolton | # "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC} ${POKY_DEFAULT_DISTRO_FEATURES} sysvinit" | 02:33 |
kergoth | do not spam the channel. | 02:33 |
ebolton | something like that | 02:33 |
kergoth | use a pastebin | 02:33 |
kergoth | aj_c: no, you can only append a recipe file, and the append filename is based on the recipe filename. can't append arbitrary files, not .inc, not .conf, not bbclasses | 02:34 |
ryansturmer | Ok well, that's essentially what I have @mtetreault | 02:42 |
*** halstead is now known as halstead_ | 02:42 | |
mtetreault | kergoth: Yocto fails building glibc when I'm building with -j 8 but the build succeed when I build glibc alone and then continue building my image. Any idea how I could pin point the issue to patch this and submit a patch to the community? | 02:42 |
*** halstead_ is now known as halstead__ | 02:42 | |
*** halstead__ is now known as halstead | 02:42 | |
mtetreault | @ryansturmer: does your patch work? | 02:42 |
ryansturmer | well, no | 02:42 |
*** staylor <staylor!~staylor@184.68.113.94> has joined #yocto | 02:43 | |
mtetreault | @ryansturmer: you should be able to validate if your patch make it to the temp folder. build/tmp/work/(platform)/ncurses/version/ | 02:44 |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has quit IRC | 02:45 | |
*** halstead is now known as hlstd | 02:45 | |
*** hlstd is now known as halstead | 02:45 | |
*** nobu <nobu!~nobu@62.20.3.162> has quit IRC | 02:45 | |
clopez | ebolton: I ended putting this on a recipe from the image | 02:51 |
clopez | python __anonymous() { | 02:51 |
clopez | bb.fatal ("DISTRO_FEATURES: %s" %d.getVar('DISTRO_FEATURES', True) ) | 02:51 |
clopez | } | 02:51 |
clopez | that would print the features, a bit hacky.. but not sure if your way is easier | 02:51 |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 02:51 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 02:51 | |
*** mtetreault <mtetreault!~mtetreaul@modemcable053.179-178-173.mc.videotron.ca> has quit IRC | 02:52 | |
clopez | i wish there were a simpler/standard/non-hacky way of getting this info | 02:52 |
kergoth | ? | 02:54 |
kergoth | the whole point of bitbake -e is to examine the value of variables | 02:54 |
kergoth | that's its purpose | 02:54 |
*** stwcx <stwcx!~stwcx@108-215-4-10.lightspeed.austtx.sbcglobal.net> has joined #yocto | 02:55 | |
*** mtetreault <mtetreault!~mtetreaul@modemcable053.179-178-173.mc.videotron.ca> has joined #yocto | 02:56 | |
clopez | kergoth: that would be true if you are a machine.. but i'm an human, so i find a bit difficult to parse thousands of lines just to get the value of a variable. I just want to get the value of that variable printed to stdout | 02:58 |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has joined #yocto | 02:58 | |
ryansturmer | Questions: | 03:02 |
ryansturmer | Does the order in which I add my layer to the IMAGE_INSTALL matter? | 03:02 |
ryansturmer | And 2) Directory-wise, where should my layer's folder be in order to be picked up by the build | 03:03 |
ryansturmer | I get a | 03:03 |
ryansturmer | ERROR: Nothing RPROVIDES 'meta-mylayer' (but /home/ryansturmer/projects/fering/shopbot/edison/edison-src/meta-intel-edison/meta-intel-edison-distro/recipes-core/images/edison-image.bb RDEPENDS on or otherwise requires it) | 03:03 |
kergoth | ? | 03:05 |
kergoth | IMAGE_INSTALL is a variable that lists binary package names to be installed in your rootfs | 03:05 |
kergoth | putting a layer name there doesn't make much esnse | 03:06 |
kergoth | where your layer is doesn't matter as long as it's been added to BBLAYERS in conf/bblayers.conf in your build directory | 03:06 |
*** Guest83387 <Guest83387!~quassel@106.120.101.38> has quit IRC | 03:06 | |
*** Jackie <Jackie!~quassel@106.120.101.38> has joined #yocto | 03:06 | |
*** Jackie is now known as Guest92114 | 03:07 | |
ryansturmer | ah so I'm putting things in the wrong place then | 03:08 |
mtetreault | @ryansturmer: Aaah that's what you meant by, you put your layer in your image! | 03:09 |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 03:14 | |
*** staylor <staylor!~staylor@184.68.113.94> has quit IRC | 03:15 | |
ryansturmer | So the configuration file that's created in conf/bblayers.conf | 03:21 |
ryansturmer | how is that generated? I mean, that's created by oe-init-build-environment | 03:22 |
ryansturmer | but where does the list of layers that go into the build come from? | 03:22 |
ryansturmer | oooh ooh! | 03:25 |
ryansturmer | it took it! | 03:25 |
ryansturmer | building, seems to have absorbed the patch. | 03:25 |
ryansturmer | Yeah it was bailing really early on with the ncurses fail, but seems to have got clear of it. | 03:28 |
mtetreault | @ryansturmer: you can validate if your patch got applied by looking at the build/tmp/work directory to see the resulting source code | 03:28 |
ryansturmer | I will do that when (if) this build either completes or fails | 03:30 |
mtetreault | Ohh, I thought you were done compiling! | 03:30 |
ryansturmer | No, the compile failed very early previously | 03:30 |
*** staylor <staylor!~staylor@184.68.113.94> has joined #yocto | 03:33 | |
kergoth | also you can use bitbake -e <reicpename> to examine the variables and make sure they're set the way you expect them to be set | 03:38 |
ryansturmer | Here's a question | 03:40 |
ryansturmer | so a layer is a collection of recipes and metadata | 03:40 |
ryansturmer | so the layer that defines my intel edison image defines a bunch of recipes for packages to be installed | 03:41 |
ryansturmer | can another layer specify that one of those recipes NOT be installed | 03:41 |
ryansturmer | can i override the installation directive of that layer the same way I can modify a recipe with a patch? | 03:41 |
kergoth | layers don't specify 'installation directives'. generally bsp layers don't do anything to your image at all. adding a layer to your config doesn't magically add its packages to your images, unless they bbappend specific images to alter their IMAGE_INSTALL | 03:43 |
ryansturmer | where does the IMAGE_INSTALL originate then? | 03:44 |
kergoth | I don't understand the question. | 03:44 |
kergoth | it's a variable defined in the image recipe | 03:44 |
ryansturmer | And the image recipe is a part of a layer, correct? | 03:45 |
kergoth | *you* choose whether to build the image recipe | 03:45 |
kergoth | in your bitbake command | 03:45 |
kergoth | it won't build itself | 03:45 |
kergoth | but yes, all recipes are part of a layer, that's what a layer is | 03:45 |
ryansturmer | Right, so my build configuration specifies a list of layers | 03:46 |
ryansturmer | and in those layers are recipes | 03:46 |
ryansturmer | some of those recipes are for packages that land in my distribution, ultimately | 03:46 |
kergoth | including a layer only makes those recipes available to you to build. nothing is forcing you to build those things, and just adding the layer to your build will not make the recipes they provide build. | 03:46 |
kergoth | if you don't want them built, don't build them. | 03:47 |
ryansturmer | But when you build, you build an image | 03:47 |
kergoth | and? | 03:47 |
ryansturmer | and that image is defined by an image recipe? | 03:47 |
kergoth | an image is just another recipe. if you don't like its contents, either make your own image in your own layer, or append it like you would any other recipe | 03:48 |
ryansturmer | So my question is, if I am customizing an image that's defined in a layer | 03:48 |
ryansturmer | let's say I've got a distribution like the intel edison, where an image recipe has been defined with a bunch of packages selected (in the image recipe) by appending to IMAGE_INSTALL | 03:49 |
kergoth | IMAGE_INSTALL is just another variable. you can add to it or remove from it in a bbappen dthe same way you would any variable | 03:49 |
ryansturmer | ah ok! | 03:49 |
ryansturmer | so another layer, defined by me, could strip things out of that IMAGE_INSTALL | 03:49 |
kergoth | removal can be done either with oe_filter_out (grep the layers for examples) or _remove (i.e. IMAGE_INSTALL_remove = "thing-you-want-removed") | 03:49 |
ryansturmer | ok cool | 03:50 |
kergoth | as it could with any variable in any recipe, yes, generally that's true | 03:50 |
ryansturmer | that's it, thanks. Sorry round about way of getting there. | 03:50 |
ryansturmer | I'm still learning all the terms | 03:50 |
ryansturmer | the documentation is good, but there's SO much | 03:50 |
kergoth | np, just needed to get on the same page on what was being asked | 03:50 |
* kergoth nods | 03:50 | |
mtetreault | @kergoth: Do you know what's the difference between the edison branch and the normals YP branches? | 03:51 |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 03:51 | |
kergoth | naming confusion. the intel edison board and the yocto 1.1 edison release are entirely different things | 03:54 |
kergoth | the edison branch is the stable branch from that old release | 03:54 |
kergoth | (https://www.yoctoproject.org/blogs/davest/2011/meet-edison-yocto-project-v11-release) | 03:54 |
mtetreault | ooohh! I see that totally confused me out..! | 03:54 |
kergoth | yeah, you're not alone there, others have been confused by that. the release name existed a long time ago, the board is more recent | 04:00 |
mtetreault | Haha, I feel better now ;) | 04:02 |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 04:09 | |
mtetreault | @kergoth. I got an error building glibc when I'm using -j 8. So I have to explicitly call bitbake glibc and then I can build my whole image. I'm somehow clueless on where to start looking for the issue. Do you have any recommandation? | 04:12 |
kergoth | first, make sure it still happens with master, if you're on a stable or release branch. | 04:12 |
kergoth | beyond that, probably a race in its buildsystem, how you fix those dependss | 04:13 |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has quit IRC | 04:15 | |
mtetreault | dependss? You mean like RDEPENDS, DEPENDS ? | 04:16 |
kergoth | no, i'm saying it depends. | 04:16 |
kergoth | case by case situation | 04:16 |
kergoth | there's no quick answer | 04:16 |
mtetreault | Ohhh okay! | 04:16 |
*** ebolton <ebolton!~ebolton@208.93.130.209> has quit IRC | 04:20 | |
*** mtetreault <mtetreault!~mtetreaul@modemcable053.179-178-173.mc.videotron.ca> has quit IRC | 04:32 | |
*** [Sno] <[Sno]!~sno@p578b540c.dip0.t-ipconnect.de> has quit IRC | 04:40 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC | 04:45 | |
*** staylor <staylor!~staylor@184.68.113.94> has quit IRC | 04:53 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 05:09 | |
*** sudipj <sudipj!~sudipj@192.55.55.39> has joined #yocto | 05:28 | |
*** _taw_ <_taw_!~taw@ip-89-176-167-254.net.upcbroadband.cz> has joined #yocto | 05:30 | |
*** _taw_ <_taw_!~taw@ip-89-176-167-254.net.upcbroadband.cz> has quit IRC | 05:35 | |
*** Jefro1 <Jefro1!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 05:39 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC | 05:43 | |
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto | 05:43 | |
*** ebolton <ebolton!~ebolton@ip72-201-7-148.ph.ph.cox.net> has joined #yocto | 05:48 | |
*** pohly <pohly!~pohly@p5DE8EAD6.dip0.t-ipconnect.de> has joined #yocto | 05:48 | |
*** frsc <frsc!~frsc@dslb-094-216-250-046.094.216.pools.vodafone-ip.de> has joined #yocto | 05:53 | |
*** ionte <ionte!~ionte@c-bf44e055.164-1-64736c11.cust.bredbandsbolaget.se> has quit IRC | 06:00 | |
*** marek__ <marek__!~marek@81.89.61.168.host.vnet.sk> has joined #yocto | 06:05 | |
*** [Sno] <[Sno]!~sno@rademacherexchange.de> has joined #yocto | 06:05 | |
*** dreyna4529 <dreyna4529!~dreyna@96.26.38.47> has quit IRC | 06:11 | |
-YoctoAutoBuilder- build #493 of nightly-arm-lsb is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm-lsb/builds/493 | 06:18 | |
*** sujith_h <sujith_h!~sharidas@kde/developers/sujithh> has joined #yocto | 06:23 | |
*** tobiash <tobiash!~quassel@mail.bmw-carit.de> has quit IRC | 06:26 | |
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has joined #yocto | 06:27 | |
*** tobiash <tobiash!~quassel@mail.bmw-carit.de> has joined #yocto | 06:33 | |
*** _taw_ <_taw_!~taw@ip-89-176-167-254.net.upcbroadband.cz> has joined #yocto | 06:42 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 06:46 | |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto | 06:49 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-tbtcgiqtbuzueonc> has joined #yocto | 06:54 | |
*** jbrianceau_away is now known as jbrianceau | 06:55 | |
*** mimeakadug <mimeakadug!6a337518@gateway/web/freenode/ip.106.51.117.24> has joined #yocto | 06:56 | |
*** jku <jku!jku@nat/intel/x-hmbsqzbdbijsdhfu> has joined #yocto | 07:00 | |
*** jku <jku!jku@nat/intel/x-hmbsqzbdbijsdhfu> has quit IRC | 07:10 | |
*** jku <jku!jku@nat/intel/x-kjxcucrngwtpvmxp> has joined #yocto | 07:11 | |
*** egavinc <egavinc!~egavinc@211.Red-88-13-162.dynamicIP.rima-tde.net> has quit IRC | 07:12 | |
*** egavinc <egavinc!~egavinc@211.Red-88-13-162.dynamicIP.rima-tde.net> has joined #yocto | 07:17 | |
*** TobSnyder1 <TobSnyder1!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has joined #yocto | 07:22 | |
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has quit IRC | 07:24 | |
*** sameo <sameo!~samuel@192.55.54.42> has joined #yocto | 07:38 | |
*** mckoan|away is now known as mckoan | 07:39 | |
mckoan | good morning | 07:39 |
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has joined #yocto | 07:42 | |
*** florian <florian!~fuchs@p5B30F3C8.dip0.t-ipconnect.de> has joined #yocto | 07:48 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 07:48 | |
bluelightning | morning all | 07:53 |
*** aime-Pierre <aime-Pierre!~Thunderbi@bob75-2-81-56-46-209.fbx.proxad.net> has joined #yocto | 07:55 | |
*** seezer <seezer!quassel@quassel/developer/seezer> has quit IRC | 08:00 | |
*** behanw_ <behanw_!~behanw@2001:470:b26c:0:590b:8246:b5f2:3dcd> has quit IRC | 08:01 | |
*** seezer <seezer!quassel@quassel/developer/seezer> has joined #yocto | 08:04 | |
*** maxin <maxin!~maxin@2001:998:22:0:b19e:ea71:e51c:8455> has joined #yocto | 08:11 | |
*** behanw_ <behanw_!~behanw@2001:470:b26c:0:590b:8246:b5f2:3dcd> has joined #yocto | 08:13 | |
*** sjolley1 <sjolley1!~sjolley@134.134.137.75> has joined #yocto | 08:22 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC | 08:22 | |
*** locutus__ is now known as LocutusOfBorg1 | 08:34 | |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 08:36 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-damlzsmmarrlgrbj> has joined #yocto | 08:43 | |
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has joined #yocto | 08:45 | |
*** TobSnyder1 <TobSnyder1!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has quit IRC | 08:46 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 08:59 | |
*** ][Sno][ <][Sno][!~sno@rademacherexchange.de> has joined #yocto | 09:01 | |
*** [Sno] <[Sno]!~sno@rademacherexchange.de> has quit IRC | 09:04 | |
*** belen <belen!Adium@nat/intel/x-nfqujvjthpdoqcjh> has joined #yocto | 09:08 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 09:09 | |
*** sjolley1 <sjolley1!~sjolley@134.134.137.75> has quit IRC | 09:13 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 09:15 | |
*** rburton1 <rburton1!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 09:27 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 09:29 | |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC | 09:41 | |
*** phantoxeD <phantoxeD!destroy@a89-154-122-116.cpe.netcabo.pt> has joined #yocto | 09:47 | |
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has quit IRC | 09:51 | |
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has joined #yocto | 09:51 | |
*** phantoneD <phantoneD!destroy@a89-154-122-116.cpe.netcabo.pt> has quit IRC | 09:51 | |
*** aime-Pierre <aime-Pierre!~Thunderbi@bob75-2-81-56-46-209.fbx.proxad.net> has quit IRC | 09:57 | |
*** aime-Pierre <aime-Pierre!~Thunderbi@193.56.60.161> has joined #yocto | 09:57 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-damlzsmmarrlgrbj> has left #yocto | 10:47 | |
*** Guest92114 <Guest92114!~quassel@106.120.101.38> has quit IRC | 10:58 | |
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has joined #yocto | 11:00 | |
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC | 11:04 | |
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has joined #yocto | 11:09 | |
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto | 11:10 | |
*** roric <roric!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has joined #yocto | 11:12 | |
*** roric <roric!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has quit IRC | 11:27 | |
*** jjmb <jjmb!~jjmb@c-98-225-183-175.hsd1.pa.comcast.net> has quit IRC | 11:29 | |
*** deception <deception!~deception@unaffiliated/deception> has quit IRC | 11:36 | |
*** deception <deception!~deception@unaffiliated/deception> has joined #yocto | 11:38 | |
*** sjolley <sjolley!~sjolley@134.134.139.77> has joined #yocto | 11:43 | |
*** tsramos <tsramos!tsramos@nat/intel/x-fjxlxiptwqofuuhj> has joined #yocto | 11:44 | |
*** sjolley <sjolley!~sjolley@134.134.139.77> has quit IRC | 11:47 | |
*** lpax <lpax!~lpax@177.18.201.159> has joined #yocto | 11:48 | |
*** lpax <lpax!~lpax@unaffiliated/lpax> has joined #yocto | 11:48 | |
*** sjolley <sjolley!~sjolley@134.134.139.77> has joined #yocto | 11:51 | |
*** lpax <lpax!~lpax@unaffiliated/lpax> has quit IRC | 11:54 | |
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC | 12:02 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has joined #yocto | 12:02 | |
*** dreyna4529 <dreyna4529!~dreyna@96.26.38.47> has joined #yocto | 12:07 | |
*** dreyna4529 <dreyna4529!~dreyna@96.26.38.47> has quit IRC | 12:12 | |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has joined #yocto | 12:14 | |
ryansturmer | ooooooh | 12:14 |
ryansturmer | yeah, I didn't know aboutthe branch, that's confusing | 12:14 |
ryansturmer | the edison board release is basically the BSP for the intel edison, packaged up with some build scripts | 12:15 |
*** dmoseley <dmoseley!~dmoseley@cpe-75-181-75-239.carolina.res.rr.com> has quit IRC | 12:18 | |
*** dreyna4529 <dreyna4529!~dreyna@96.26.38.47> has joined #yocto | 12:20 | |
*** lpax <lpax!~lpax@unaffiliated/lpax> has joined #yocto | 12:28 | |
*** davis <davis!~davis@rrcs-96-10-245-18.midsouth.biz.rr.com> has quit IRC | 12:31 | |
*** lpax <lpax!~lpax@unaffiliated/lpax> has quit IRC | 12:34 | |
clopez | after building a core-image-sato for x86 and running "runqemu qemux86" I get a Xserver with no OpenGL support at all, i have added opengl to distro-features when building | 12:40 |
clopez | any idea of how to enable opengl support with runqemu? | 12:41 |
clopez | it seems is not building the vmware kernel driver, but the uvesafb one | 12:41 |
clopez | (i mean vmwgfx driver) | 12:42 |
*** anselmolsm <anselmolsm!~anselmols@192.55.55.37> has joined #yocto | 12:48 | |
*** Aethenelle <Aethenelle!~Aethenell@166.175.62.108> has joined #yocto | 12:53 | |
rburton1 | qemux86 doesn't support GL | 12:54 |
*** mimeakadug <mimeakadug!6a337518@gateway/web/freenode/ip.106.51.117.24> has quit IRC | 12:54 | |
rburton1 | (presently, patches welcome) | 12:54 |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has quit IRC | 12:56 | |
clopez | it supports it via gallium/llvmpipe | 12:59 |
*** lamego <lamego!~jose@134.134.139.76> has joined #yocto | 13:04 | |
*** hugovs <hugovs!~hugo@177.159.144.73> has joined #yocto | 13:07 | |
*** sujith_h <sujith_h!~sharidas@kde/developers/sujithh> has left #yocto | 13:10 | |
*** IvanSB <IvanSB!~IvanSB@host72-133-dynamic.40-79-r.retail.telecomitalia.it> has joined #yocto | 13:11 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has joined #yocto | 13:12 | |
ryansturmer | Further question: | 13:15 |
ryansturmer | I am doing a build, and one of my recipes has failed. I have found a patch for it, and wish to apply it, | 13:15 |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 13:17 | |
ryansturmer | I have a custom layer, and I've successfully patched other recipes | 13:17 |
*** dlan <dlan!~dennis@116.228.88.131> has joined #yocto | 13:17 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 13:17 | |
ryansturmer | But this one (binutils) is complaining at me | 13:17 |
ryansturmer | ooh maybe I've fixed it | 13:19 |
*** kscherer <kscherer!~kscherer@128.224.252.2> has quit IRC | 13:21 | |
*** sujith_h <sujith_h!~sharidas@kde/developers/sujithh> has joined #yocto | 13:28 | |
ryansturmer | Nope | 13:30 |
ryansturmer | I'm just not sure what to call my bbappend to ensure that it's applied to the recipe I want | 13:31 |
ryansturmer | I can do bitbake-layers show-recipes and see my recipe names | 13:31 |
ryansturmer | ERROR: No recipes available for: | 13:34 |
ryansturmer | /home/ryansturmer/projects/edison/edison-src/meta-mylayer/recipes-devtools/binutils/binutils.bbappend | 13:34 |
JaMa | add _<version> or _% (wildchar) | 13:35 |
ryansturmer | so binutils_%.bbappend ? | 13:36 |
JaMa | yes if you're using recent OE and you want to apply it for all versions of binutils | 13:36 |
JaMa | edison maybe is too old to support % in filenames | 13:36 |
ryansturmer | no, seems to have an effect | 13:37 |
ryansturmer | although i mis-named my patch file | 13:37 |
ryansturmer | and I'm off to the races again! | 13:38 |
bluelightning | JaMa: I suspect this is for edison the board as opposed to edison the ancient branch ;) | 13:38 |
ryansturmer | yes | 13:38 |
JaMa | bluelightning: :) ah | 13:38 |
ryansturmer | man that's confusing | 13:39 |
ryansturmer | I mean, we all love naming our projects after famous scientists | 13:39 |
ryansturmer | hell my cat's name is edison | 13:39 |
ryansturmer | but we should probably diversify | 13:39 |
JaMa | it would be enough to say which release you're using :) | 13:39 |
JaMa | instead of me guessing from bbappend path :) | 13:40 |
bluelightning | well, in our case the branch/release was named after a character from Day of the Tentacle, and came some years before Edison the board, but yeah ;) | 13:40 |
ryansturmer | Day of the tentacle! | 13:42 |
bluelightning | https://en.wikipedia.org/wiki/Day_of_the_Tentacle | 13:45 |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-pavktbxxmjczybti> has joined #yocto | 13:46 | |
ryansturmer | Oh i am most certainly familiar | 13:47 |
ryansturmer | and now I want to go play monkey island | 13:47 |
ryansturmer | so thanks for that. | 13:47 |
bluelightning | :) | 13:47 |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 13:53 | |
*** Aethenelle <Aethenelle!~Aethenell@166.175.62.108> has quit IRC | 13:56 | |
belen | "as they attempt to stop the evil Purple Tentacle—a sentient, disembodied tentacle—from taking over the world" :D | 14:01 |
bluelightning | belen: don't knock it, it's a classic :D | 14:02 |
belen | bluelightning: I wasn't. I just really like the idea of a disembodied, sentient tentacle taking over the world ... | 14:03 |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has quit IRC | 14:05 | |
*** roric <roric!~roric@250.221.241.83.in-addr.dgcsystems.net> has joined #yocto | 14:09 | |
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has joined #yocto | 14:12 | |
RP | belen: I liked the idea too :D | 14:14 |
][Sno][ | to rebase our local patches for submitting them I rebased all my repo's to master and rebuilt | 14:15 |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has quit IRC | 14:16 | |
][Sno][ | with the gcc5 in master neither my kirkwood (guruplug) nor my imx6 boot's any more | 14:16 |
][Sno][ | any hint how to dig? | 14:16 |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has joined #yocto | 14:16 | |
belen | RP: but I would like the tentacle to win and take over the world ;) | 14:16 |
*** roric <roric!~roric@250.221.241.83.in-addr.dgcsystems.net> has quit IRC | 14:17 | |
RP | ][Sno][: I know there were some arm kernel gcc5 issues. You could check the linux-yocto branches and see how it was fixed there | 14:20 |
RP | belen: that does have a certain appeal :) | 14:20 |
][Sno][ | RP: is something similar known to uboot? | 14:20 |
RP | ][Sno][: I don't know | 14:20 |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has quit IRC | 14:22 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has joined #yocto | 14:22 | |
][Sno][ | RP: git logs saying you were directly involved ^^ | 14:22 |
*** marek__ <marek__!~marek@81.89.61.168.host.vnet.sk> has quit IRC | 14:24 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has quit IRC | 14:24 | |
*** IvanSB <IvanSB!~IvanSB@host72-133-dynamic.40-79-r.retail.telecomitalia.it> has quit IRC | 14:25 | |
*** alimon <alimon!~alimon@134.134.139.76> has joined #yocto | 14:25 | |
RP | ][Sno][: how many patches do the git logs say I deal with a month out of interest? I don't remember any specifics of that | 14:27 |
*** jku <jku!jku@nat/intel/x-kjxcucrngwtpvmxp> has quit IRC | 14:27 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has joined #yocto | 14:32 | |
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has joined #yocto | 14:38 | |
JaMa | :) | 14:41 |
*** frsc <frsc!~frsc@dslb-094-216-250-046.094.216.pools.vodafone-ip.de> has quit IRC | 14:41 | |
][Sno][ | RP: seems to be a bit wild - cause the patches are across lot's of repos | 14:44 |
][Sno][ | is there an easy way to choose another compiler version for the meantime? | 14:44 |
][Sno][ | yocto ref manual didn't find for "gccversion' or 'gcc version' | 14:45 |
JaMa | ][Sno][: try git grep GCCVERSION | 14:46 |
JaMa | ][Sno][: there is still 4.8 and 4.9 version as explained in RP's commit "tcmode-default: Set gcc 5.2 as the default" | 14:47 |
][Sno][ | cool, thanks | 14:47 |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-ljorwvduhtxwkenx> has joined #yocto | 14:47 | |
*** nileshkokane <nileshkokane!uid116340@gateway/web/irccloud.com/x-tocfipomplsqsdhn> has joined #yocto | 14:48 | |
Crofton|work | ][Sno][, search the kernel commit log for gcc5 and llvm commits | 14:53 |
Crofton|work | that's how I solved an older kernel/gcc5 compile issues | 14:53 |
][Sno][ | Crofton|work: compiles are fine, it doesn't boot :/ | 14:54 |
Crofton|work | annoying | 14:54 |
ryansturmer | gcc 5 issues are annoying! | 14:55 |
JaMa | all new stuff is nice but sometimes annoying | 14:55 |
ryansturmer | If I go edit a .bb file in my poky directory - I should just be able to re-run the build right? I don't have to do a "clean" or anything like that? | 14:55 |
][Sno][ | the only one I found related to my issue was 3c1245d162ccb55de1af42bcf3dbf690457bf9e4 in yocto-4.1kernel | 14:56 |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-pavktbxxmjczybti> has left #yocto | 14:58 | |
aj_c | kergoth: then if add another foo.inc in another layer it will overwrite the first one? | 14:59 |
*** aj_c <aj_c!~Alex_Joya@134.134.139.72> has quit IRC | 15:03 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 15:07 | |
ryansturmer | Continuing with my build | 15:14 |
ryansturmer | I have a recipe that fails: subversion | 15:14 |
ryansturmer | so if I bitbake my-image - it takes awhile, but ultimately bombs on the subversion recipe in the do_configure step | 15:14 |
ryansturmer | if I bitbake subversion, though | 15:14 |
ryansturmer | it seems to build just fine | 15:14 |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 15:16 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has quit IRC | 15:16 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has joined #yocto | 15:18 | |
*** aj_c <aj_c!~Alex_Joya@192.55.55.41> has joined #yocto | 15:21 | |
ryansturmer | Should there be a difference like that? | 15:25 |
*** staylor <staylor!~staylor@S010678542efe021b.cg.shawcable.net> has joined #yocto | 15:26 | |
JaMa | ryansturmer: are you running both builds in the same directory? | 15:30 |
ryansturmer | yes | 15:30 |
ryansturmer | I'm in the directory that contains /poky and /build | 15:30 |
JaMa | IIRC last time I've seen similar strange issue when subversion build was failing to regexp replace something in build directory which contained "-D" string | 15:30 |
JaMa | or something like that | 15:30 |
fray | odd ball question, does anyone know if qemuarm64 SHOULD let me run arm32 (armv7) binaries? | 15:31 |
ryansturmer | I source poky/oe-init-build-env | 15:31 |
ryansturmer | and then bitbake my-image | 15:31 |
ryansturmer | (fail) | 15:31 |
ryansturmer | bitbake subversion | 15:31 |
fray | I'm trying to figure out if it's a qemu limitation, kernel configuration problem, or something is broken | 15:31 |
ryansturmer | (pass) | 15:31 |
JaMa | isn't it failing in subversion-native or something like that? | 15:31 |
rburton1 | ryansturmer: pastebin with the log in would help | 15:32 |
JaMa | if you build your image after building subversion, then it shouldn't even try to rebuild subversion | 15:32 |
*** staylor <staylor!~staylor@S010678542efe021b.cg.shawcable.net> has quit IRC | 15:35 | |
ryansturmer | getting logs | 15:37 |
*** afxez0r <afxez0r!afxez0r@nat/intel/x-okpbkwdauywgumhv> has joined #yocto | 15:37 | |
ryansturmer | http://sprunge.us/GCeJ | 15:38 |
ryansturmer | That's the result of bitbake edison-image | 15:38 |
ryansturmer | oooh | 15:39 |
ryansturmer | there's subversion and there's subversion-native | 15:39 |
ryansturmer | (like you said) | 15:40 |
ryansturmer | Not sure I understand the difference | 15:42 |
ryansturmer | it looks like they're using the same source directory and .bb file | 15:43 |
*** _taw_ <_taw_!~taw@ip-89-176-167-254.net.upcbroadband.cz> has quit IRC | 15:44 | |
*** hanthings <hanthings!~hanthings@dyxztkyycfxn---1m2-4y-3.rev.dnainternet.fi> has joined #yocto | 15:47 | |
ryansturmer | I had set CPPFLAGS but not BUILD_CPPFLAGS | 15:47 |
ryansturmer | so building in the native context was broken | 15:48 |
*** sujith_h <sujith_h!~sharidas@kde/developers/sujithh> has left #yocto | 15:53 | |
JaMa | 1:1, crystal ball rocks today | 15:54 |
*** mckoan is now known as mckoan|away | 15:56 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 15:59 | |
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto | 16:00 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 16:01 | |
*** aj_c <aj_c!~Alex_Joya@192.55.55.41> has quit IRC | 16:05 | |
*** belen <belen!Adium@nat/intel/x-nfqujvjthpdoqcjh> has quit IRC | 16:05 | |
*** belen2 <belen2!Adium@nat/intel/x-lbgbopvpjjgnczdu> has joined #yocto | 16:05 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has quit IRC | 16:08 | |
*** maxin1 <maxin1!~maxin@194.136.86.45> has joined #yocto | 16:09 | |
*** maxin <maxin!~maxin@2001:998:22:0:b19e:ea71:e51c:8455> has quit IRC | 16:11 | |
*** maxin1 <maxin1!~maxin@194.136.86.45> has quit IRC | 16:13 | |
*** aj_c <aj_c!Alex_Joya@nat/intel/x-erhmkmsbxexqzizg> has joined #yocto | 16:15 | |
*** aj_c <aj_c!Alex_Joya@nat/intel/x-erhmkmsbxexqzizg> has quit IRC | 16:20 | |
*** ebolton_ <ebolton_!~ebolton@ip72-201-7-148.ph.ph.cox.net> has joined #yocto | 16:21 | |
*** ebolton <ebolton!~ebolton@ip72-201-7-148.ph.ph.cox.net> has quit IRC | 16:23 | |
*** aj_c <aj_c!Alex_Joya@nat/intel/x-fajxnbqurwatawgg> has joined #yocto | 16:24 | |
*** dreyna4529 <dreyna4529!~dreyna@96.26.38.47> has quit IRC | 16:24 | |
aj_c | can I overwrite a foo.inc from other layer? | 16:24 |
*** dreyna4529 <dreyna4529!~dreyna@96.26.38.47> has joined #yocto | 16:25 | |
kergoth | aj_c: yes, if it's in the exact same path relative to the root of the layer, and if your layer is listed in BBLAYERS before the other. | 16:25 |
aj_c | Thanks | 16:26 |
*** ebolton_ <ebolton_!~ebolton@ip72-201-7-148.ph.ph.cox.net> has quit IRC | 16:26 | |
*** berton <berton!~fabio@201.22.227.56> has joined #yocto | 16:27 | |
*** aime-Pierre <aime-Pierre!~Thunderbi@193.56.60.161> has quit IRC | 16:30 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 16:36 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 16:37 | |
*** sameo <sameo!~samuel@192.55.54.42> has quit IRC | 16:40 | |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 16:41 | |
kergoth | I think there's a real need for PACKAGECONFIG_BACKFILL | 16:46 |
*** belen2 <belen2!Adium@nat/intel/x-lbgbopvpjjgnczdu> has quit IRC | 16:46 | |
fray | kergoth, I just noticed somewhere along the line the "IMAGE_GEN_DEBUGFS = '1'" broke.. | 16:46 |
fray | it's generating the debugfs.. but it never packages it | 16:46 |
fray | (creates teh tarball) | 16:46 |
kergoth | huh, that's not good, hadn't noticed | 16:47 |
fray | ya.. I have no idea how the tarball is generated any longer except something to do with image.py | 16:47 |
*** ebolton <ebolton!~ebolton@208.77.60.70> has joined #yocto | 16:48 | |
fray | I can't even find in the commit where the image part of it is.. so it's possible it got dropped in a rebase and was somehow missed | 16:49 |
*** behanw_ <behanw_!~behanw@2001:470:b26c:0:590b:8246:b5f2:3dcd> has quit IRC | 16:49 | |
fray | commit is: 1a6ed48c65f922c66b005aa966d7ee4878ee95e3 | 16:50 |
fray | but that is missing the bit that tarballs it up.. :P | 16:50 |
*** ebolton <ebolton!~ebolton@208.77.60.70> has quit IRC | 16:51 | |
kergoth | indeed | 16:51 |
kergoth | it's all IMAGE_NAME based, presumably you could call into oe.image with a different IMAGE_NAME and hardcoded IMAGE_FSTYPES? | 16:51 |
fray | hopefully I still have an old copy in my poky-contrib | 16:51 |
kergoth | hmm | 16:51 |
fray | that was my suspicion.. but the problem is I don't have a clue how that part is put together anymore | 16:52 |
fray | http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/commit/?h=mhatle/debugfs&id=232acd506ec2edd5c12314ef10acb5316bd10602 | 16:53 |
fray | that is the original patch... but I don't know if the first part even applies.. :P | 16:53 |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 16:53 | |
*** alimon <alimon!~alimon@134.134.139.76> has quit IRC | 16:54 | |
fray | ya.. I just verified that first hunk seems to be missing.. :P I'm going to bring it back and test it.. argh.. can't believe this got missed in prior testing | 16:55 |
*** jbrianceau is now known as jbrianceau_away | 16:55 | |
kergoth | is there an oe-selftest unit test for debugfs? if not, should probably fix that :) | 16:56 |
fray | I highly doubt it.. this code was written before oe-selftest.. :P | 16:57 |
kergoth | i really need to do better at testing all the combinations of the bits i add to the mel local.conf.sample | 16:57 |
*** alimon <alimon!alimon@nat/intel/x-nczagifuujdjqphj> has joined #yocto | 17:00 | |
*** raykinsella78 <raykinsella78!~rkinsell@192.198.151.43> has joined #yocto | 17:01 | |
*** sa2ajj <sa2ajj!~quassel@84.249.215.184> has joined #yocto | 17:03 | |
fray | kergoth forward porting the old code worked.. :P only issue is it's a bunch of small changes.. and we're not past branch point ARGH! | 17:04 |
fray | I think I tracked down the issue.. the version that was merged came from Khem.. and didn't have the image bits in it.. | 17:05 |
fray | and since we (WR) carry our own version.. we ontinued to have the missing image bits and didn't notice in our regular testing it wasn't in oe-core | 17:06 |
*** dmoseley <dmoseley!~dmoseley@cpe-75-181-75-239.carolina.res.rr.com> has joined #yocto | 17:06 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto | 17:08 | |
*** aj_c <aj_c!Alex_Joya@nat/intel/x-fajxnbqurwatawgg> has quit IRC | 17:11 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has joined #yocto | 17:13 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 17:19 | |
*** ntl <ntl!~ntl@99-127-51-4.lightspeed.austtx.sbcglobal.net> has quit IRC | 17:21 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ebd6-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC | 17:23 | |
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has quit IRC | 17:31 | |
kergoth | fray: this was a regression, i'd think it'd be appropriate to go in this release, though others might not agree.. also richard did just branch, so we are past the branch point, just the branch and master were probably intended to stay in sync a little longer :) | 17:32 |
kergoth | totally unrelated, but <3 https://sibbell.com/ | 17:33 |
fray | I'm trying to condense down my patch.. :P | 17:33 |
kergoth | email notifications of new releases for any github repositories you have starred or watched | 17:33 |
* kergoth nods | 17:33 | |
fray | I should have somethign testable shortly | 17:33 |
*** raykinsella78 <raykinsella78!~rkinsell@192.198.151.43> has left #yocto | 17:34 | |
kergoth | https://release-monitoring.org/about looks interesting, wonder how it compares to our setup | 17:36 |
*** stwcx <stwcx!~stwcx@108-215-4-10.lightspeed.austtx.sbcglobal.net> has quit IRC | 17:38 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 17:44 | |
ryansturmer | QA Issue: hostapd-daemon: The compile log indicates that host include and/or library paths were used. | 17:59 |
ryansturmer | What does that mean? | 18:01 |
*** clsulliv <clsulliv!~clsulliv@134.134.139.72> has joined #yocto | 18:02 | |
JaMa | ryansturmer: look to log.do_compile | 18:02 |
JaMa | and search for grep -e 'CROSS COMPILE Badness:' -e 'is unsafe for cross-compilation' | 18:03 |
ryansturmer | ah | 18:03 |
ryansturmer | well dang how'd that happen :P | 18:03 |
ryansturmer | it's looking at my host libnl3 library | 18:04 |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 18:04 | |
JaMa | ryansturmer: check configure script what black magic is hard coded there | 18:04 |
JaMa | ryansturmer: the same check is also executed against log.do_install and config.log | 18:05 |
*** Crofton <Crofton!~balister@pool-108-44-118-254.ronkva.east.verizon.net> has quit IRC | 18:05 | |
*** Crofton|work <Crofton|work!~balister@pool-108-44-118-254.ronkva.east.verizon.net> has quit IRC | 18:05 | |
ryansturmer | found it | 18:05 |
ryansturmer | you guys are the best, btw | 18:05 |
ryansturmer | I've been nothing but noisy today and everyone has been so helpful | 18:06 |
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has quit IRC | 18:13 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 18:16 | |
*** noisebleed <noisebleed!~quassel@gentoo/contributor/noisebleed> has joined #yocto | 18:16 | |
*** Crofton <Crofton!~balister@108.44.122.124> has joined #yocto | 18:18 | |
*** Crofton|work <Crofton|work!~balister@108.44.122.124> has joined #yocto | 18:18 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 18:18 | |
ryansturmer | Some time ago, I ran across some docs that described a patch workflow for doing OE builds | 18:20 |
*** noisebleed <noisebleed!~quassel@gentoo/contributor/noisebleed> has quit IRC | 18:20 | |
ryansturmer | where you would build, fail, then go into the source, tinker around, and then rebuild, and at the end, somehow generate a patch recipe automatically | 18:20 |
ryansturmer | did I dream that? | 18:20 |
*** noisebleed <noisebleed!~quassel@188.40.78.56> has joined #yocto | 18:21 | |
*** noisebleed <noisebleed!~quassel@gentoo/contributor/noisebleed> has joined #yocto | 18:21 | |
kergoth | devtool can facilitate that | 18:26 |
ryansturmer | that is the keyword i needed! | 18:27 |
ryansturmer | thank you, found the docs | 18:27 |
fray | kergoth -- fix for the debugfs image gen is on the list.. | 18:28 |
][Sno][ | RP, otavio & co: meta-java and prereq patches sent via copy&paste format-patch (also for perl and meta-cpan prereqs) | 18:29 |
kergoth | nice | 18:29 |
fray | see header, comment and suggest a better way.. I don't like the duplicate code.. | 18:29 |
][Sno][ | hope that helps | 18:29 |
fray | but this is what I could get working quickly.. (it's cleaner then the 'backport' version I started with for sure) | 18:29 |
fray | also, I'd love for you (or someone else) to suggest the right setting in the oeqa to make sure this starts getting built/tested.. ;) | 18:29 |
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has joined #yocto | 18:30 | |
*** stwcx <stwcx!~stwcx@32.97.110.52> has joined #yocto | 18:31 | |
JaMa | ][Sno][: in addition to comments I've already sent, meta-oe patches belong to openembedded-devel ML, read README files in toplevel directory | 18:32 |
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has quit IRC | 18:32 | |
][Sno][ | Yet Another Mailing List to Join :( | 18:33 |
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has joined #yocto | 18:33 | |
*** pohly <pohly!~pohly@p5DE8EAD6.dip0.t-ipconnect.de> has quit IRC | 18:36 | |
*** tsramos <tsramos!tsramos@nat/intel/x-fjxlxiptwqofuuhj> has quit IRC | 18:38 | |
*** tsramos <tsramos!tsramos@nat/intel/x-pshdkmwojwysnkem> has joined #yocto | 18:38 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 18:41 | |
*** _taw_ <_taw_!~taw@ip-89-176-167-254.net.upcbroadband.cz> has joined #yocto | 18:43 | |
ryansturmer | This is a silly question probably, but should i have devtool as a part of the normal environment created by init-oe-environment script? | 18:43 |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 18:44 | |
][Sno][ | JaMa: I don't see any comment in my inbox - do you refer a comment from past? | 18:46 |
*** dshwang_ <dshwang_!~dshwang@192.55.54.42> has quit IRC | 18:48 | |
kergoth | ryansturmer: yes. it's in poky/scripts or oe-core/scripts along with recipetool and others, and that should be in your PATH after sourcing the setup script. unless your'e on an old release before they were added, they should be there afaik | 18:48 |
kergoth | hmmm | 18:49 |
JaMa | ][Sno][: https://lists.yoctoproject.org/pipermail/poky/2015-October/010245.html | 18:49 |
*** dshwang <dshwang!~dshwang@192.55.54.42> has joined #yocto | 18:49 | |
][Sno][ | JaMa: thanks, I sent poky patches to poky@, because I've seen a lot there ... | 18:50 |
][Sno][ | JaMa: but I can re-gen the patches and send again to oe-devel@ tomorrow, no problem | 18:51 |
JaMa | a lot? https://lists.yoctoproject.org/pipermail/poky/2015-September/thread.html | 18:51 |
JaMa | there are only few patches for meta-yocto-bsps there | 18:51 |
JaMa | in whole September | 18:51 |
ryansturmer | I guess it makes sense that intel would use an older release | 18:51 |
][Sno][ | I didn't clean up my inbox for a long time :( | 18:52 |
ryansturmer | but it looks like this scripts directory doesn't contain devtool | 18:52 |
][Sno][ | was very busy getting openjdk working on arm5 ;) | 18:52 |
][Sno][ | sorry for noise | 18:52 |
ryansturmer | looks like 1.7.2 poky | 18:57 |
bluelightning | ryansturmer: unfortunately that's one release behind the first where devtool was implemented | 18:57 |
ryansturmer | noooo | 18:58 |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-ljorwvduhtxwkenx> has quit IRC | 19:03 | |
*** nileshkokane <nileshkokane!uid116340@gateway/web/irccloud.com/x-tocfipomplsqsdhn> has quit IRC | 19:03 | |
*** stwcx <stwcx!~stwcx@32.97.110.52> has quit IRC | 19:04 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-tbtcgiqtbuzueonc> has quit IRC | 19:04 | |
*** ][Sno][ <][Sno][!~sno@rademacherexchange.de> has quit IRC | 19:05 | |
*** Zyend <Zyend!5878ac20@gateway/web/freenode/ip.88.120.172.32> has joined #yocto | 19:09 | |
*** acidfu <acidfu!~nib@24.37.17.210> has quit IRC | 19:13 | |
*** acidfu <acidfu!~nib@unaffiliated/acidmen> has joined #yocto | 19:13 | |
Zyend | hello, anybody who could help me out with a compile error (while building a RaspberryPi image) ? | 19:16 |
*** stwcx <stwcx!~stwcx@32.97.110.53> has joined #yocto | 19:20 | |
*** ntl <ntl!~ntl@99-127-51-4.lightspeed.austtx.sbcglobal.net> has joined #yocto | 19:22 | |
*** jchonig <jchonig!~quassel@firewall.honig.net> has joined #yocto | 19:25 | |
ryansturmer | What's the trouble @Zyend | 19:25 |
Zyend | @ryan: I'm a newbie in Yocto, I tried to build a tutorial wtih raspberrypi2 and Qt5. The build failed while compiling libssh with the following error: "error: ISO C does not support '__FUNCTION__' predefined identifier [-Wpedantic] " | 19:31 |
Zyend | And honnestly, i don't know how to get rid of this error within Yocto | 19:32 |
ryansturmer | What host are you using to do your build? | 19:39 |
Zyend | debian 7.9 | 19:40 |
ryansturmer | and what yocto version/ | 19:40 |
*** sjolley <sjolley!~sjolley@134.134.139.77> has quit IRC | 19:40 | |
Zyend | fido 1.8 | 19:42 |
*** _taw_ <_taw_!~taw@ip-89-176-167-254.net.upcbroadband.cz> has quit IRC | 19:42 | |
ryansturmer | check the do_compile log for that package and check for more detail about what's calling the failure | 19:45 |
ryansturmer | Is deb 7.9 one of the "approved" build environments? What is your gcc version (gcc --version) | 19:47 |
ryansturmer | I have run into a lot of errors with newer gcc versions, because of changes in how the compiler interprets warning flags (such as -Wpedantic) | 19:48 |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 19:48 | |
ryansturmer | When you run into these, you're pretty much looking at patching the source, or updating the build configuration to suppress warnings that are bubbling up as fatal | 19:48 |
ryansturmer | If you're using gcc 5 or newer, it looks like this is a known thing: http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2015-February/302737.html | 19:49 |
*** rburton1 <rburton1!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 19:49 | |
*** berton <berton!~fabio@201.22.227.56> has quit IRC | 19:50 | |
Zyend | gcc version is gcc version 4.7.2 (Debian 4.7.2-5) | 19:54 |
Zyend | It looks like all warnings end up with errors | 19:54 |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has quit IRC | 19:55 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has joined #yocto | 19:56 | |
ryansturmer | One thing you can do is modify CFLAGS and CPPFLAGS in your local.conf | 19:58 |
ryansturmer | that will change things for all builds though | 19:59 |
Zyend | the local.conf in the build-xxx/conf/ ? | 19:59 |
ryansturmer | which is not ideal | 19:59 |
Zyend | how would you modify these flags in the local.conf ? I mean, the syntax ? | 20:00 |
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has quit IRC | 20:03 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 20:07 | |
*** sjolley <sjolley!sjolley@nat/intel/x-pgmfroaeuxacawop> has joined #yocto | 20:14 | |
*** ccaione <ccaione!~ccaione@unaffiliated/ccaione> has quit IRC | 20:15 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 20:15 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has quit IRC | 20:18 | |
*** pidge <pidge!~pidge@2a02:8084:0:3000:31d1:2cf6:b99e:8e4c> has quit IRC | 20:19 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has joined #yocto | 20:22 | |
*** [Sno] <[Sno]!~sno@p578b540c.dip0.t-ipconnect.de> has joined #yocto | 20:23 | |
*** stwcx <stwcx!~stwcx@32.97.110.53> has quit IRC | 20:29 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 20:30 | |
*** hanthings <hanthings!~hanthings@dyxztkyycfxn---1m2-4y-3.rev.dnainternet.fi> has quit IRC | 20:33 | |
*** pidge <pidge!~pidge@2a02:8084:0:3000:94cf:7fca:39b6:1318> has joined #yocto | 20:39 | |
*** stwcx <stwcx!~stwcx@32.97.110.52> has joined #yocto | 20:42 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 20:42 | |
*** ccaione <ccaione!~ccaione@unaffiliated/ccaione> has joined #yocto | 20:46 | |
*** ryansturmer <ryansturmer!~textual@rrcs-24-143-223-204.midsouth.biz.rr.com> has quit IRC | 20:50 | |
*** pidge <pidge!~pidge@2a02:8084:0:3000:94cf:7fca:39b6:1318> has quit IRC | 20:51 | |
*** Zyend <Zyend!5878ac20@gateway/web/freenode/ip.88.120.172.32> has quit IRC | 21:10 | |
sandsmark | how can I control what is installed in the sysroot where a package is built? | 21:16 |
kergoth | that question doesn't really make a lot of sense. what do you mean by 'where a package is built'? | 21:17 |
*** Guest99735 <Guest99735!~Hauke@hauke-m.de> has quit IRC | 21:19 | |
sandsmark | well, qt is built in a sysroot of sorts? and that sysroot includes gles3 headers for some weird reason | 21:19 |
sandsmark | which aren't included in the sysroot in the sdk, so building anything with the sdk fails | 21:19 |
kergoth | no, nothing is built "in a sysroot". there's a shared sysroot in the tmpdir which is used to build everything | 21:19 |
sandsmark | (because the qt version in the sdk expects that header) | 21:19 |
sandsmark | ok | 21:19 |
kergoth | if you need something in it, add whatever that something is to your DEPENDS | 21:20 |
sandsmark | well, I'd rather not have it there | 21:20 |
kergoth | have what where? | 21:20 |
sandsmark | the gles3 headers | 21:20 |
sandsmark | I only use gles2 | 21:20 |
kergoth | if your build is automatically changing behavior based on the existence of a header, then your build is broken | 21:20 |
kergoth | and needs to be fixed to explicitly disable/enable its dependencies | 21:20 |
sandsmark | tell that to qt :) | 21:20 |
sandsmark | the qt configure script is stupid | 21:21 |
kergoth | the qt configure script has tons of arguments you can use to eanble/disable functionality, much like autoconf can | 21:21 |
kergoth | most likely you're just not passing the ones you need | 21:21 |
sandsmark | not really | 21:21 |
sandsmark | not for gles, anyways | 21:21 |
sandsmark | if you tell it to use gles2, it will use gles3 if it finds the header | 21:21 |
sandsmark | https://github.com/qtproject/qtbase/blob/dev/configure#L5339-L5352 | 21:22 |
kergoth | then you'll need to patch it to add arguments to control that behavior, most likely | 21:22 |
kergoth | we don't use per-recipe sysroots, so you can never guarantee what will or won't be available | 21:23 |
sandsmark | indeed, but that's what I was hoping to avoid | 21:23 |
kergoth | that said, why is gles3 being built in your setup if you don't want it? | 21:23 |
kergoth | track down the dep | 21:23 |
sandsmark | because mesa builds it if I want gles2 | 21:23 |
sandsmark | or, "builds" it, it's just a header | 21:23 |
sandsmark | ok, might be easier to just install the gles3-header... | 21:24 |
*** Hauke <Hauke!~Hauke@2001:41d0:8:b27b::4> has joined #yocto | 21:25 | |
sandsmark | kergoth: thanks anyhow :) | 21:29 |
sandsmark | things make a bit more sense now | 21:29 |
*** Hauke is now known as Hauke1 | 21:29 | |
kergoth | np. for what its worth, we intend to eventually get per-recipe sysroots to avoid this sort of hting and make the builds more deterministic (sysroot would only include bits from what you depend on), but it's not even scheduled, it's an 'eventually' item | 21:29 |
*** Hauke1 is now known as hauke2 | 21:29 | |
*** hauke2 is now known as Hauke_away | 21:31 | |
sandsmark | well, it would be nice, but I guess it has some overhead, and is pretty complex to get right | 21:31 |
*** Hauke_away is now known as Hauke | 21:31 | |
kergoth | yeah. ideally it'd use symlink trees or copy-on-write or something, otherwise constructing them would slow down the builds quite a bit. could cache based on what goes into it, but still | 21:32 |
sandsmark | hmm, yeah | 21:32 |
kergoth | in the metadata, we do have access to the info about whta a task's dependencies are. autotools.bbclass copies all the .m4 files from the deps into a local dir to avoid races and whatnot. would likely use that same info in a new task that runs before do_configure to prep the recipe's sysroot, would just need to work out the details | 21:34 |
*** ntl <ntl!~ntl@99-127-51-4.lightspeed.austtx.sbcglobal.net> has quit IRC | 21:35 | |
*** ntl <ntl!~ntl@99-127-51-4.lightspeed.austtx.sbcglobal.net> has joined #yocto | 21:42 | |
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has quit IRC | 21:52 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 21:56 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 21:56 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 21:56 | |
*** Hauke <Hauke!~Hauke@2001:41d0:8:b27b::4> has quit IRC | 21:57 | |
*** 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 | |
*** lamego <lamego!~jose@134.134.139.76> has quit IRC | 22:01 | |
*** dmoseley <dmoseley!~dmoseley@cpe-75-181-75-239.carolina.res.rr.com> has quit IRC | 22:14 | |
*** Hauke <Hauke!~Hauke@hauke-m.de> has joined #yocto | 22:15 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 22:15 | |
RP | we're certainly closer to being able to make it work that we ever have been before | 22:21 |
*** tsramos <tsramos!tsramos@nat/intel/x-pshdkmwojwysnkem> has quit IRC | 22:22 | |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has joined #yocto | 22:24 | |
*** dreyna4529 <dreyna4529!~dreyna@96.26.38.47> has quit IRC | 22:25 | |
*** clsulliv <clsulliv!~clsulliv@134.134.139.72> has quit IRC | 22:30 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 22:37 | |
kergoth | indeed | 22:38 |
*** anselmolsm <anselmolsm!~anselmols@192.55.55.37> has quit IRC | 22:42 | |
*** clsulliv <clsulliv!~clsulliv@134.134.139.72> has joined #yocto | 22:45 | |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has quit IRC | 22:48 | |
*** realBigfoot <realBigfoot!~realBigfo@134.191.220.74> has quit IRC | 22:49 | |
*** realBigfoot <realBigfoot!~realBigfo@134.191.220.74> has joined #yocto | 22:51 | |
*** afxez0r <afxez0r!afxez0r@nat/intel/x-okpbkwdauywgumhv> has quit IRC | 22:52 | |
*** seebs_ <seebs_!~seebs@home.seebs.net> has joined #yocto | 22:58 | |
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC | 22:58 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 23:09 | |
*** afxez0r <afxez0r!afxez0r@nat/intel/x-qpnilyzwgzxntyso> has joined #yocto | 23:12 | |
*** stwcx <stwcx!~stwcx@32.97.110.52> has quit IRC | 23:15 | |
*** aehs29 <aehs29!~aehernan@134.134.139.78> has quit IRC | 23:15 | |
*** tingleby_ <tingleby_!~tom@luna.ewsting.org> has quit IRC | 23:22 | |
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has quit IRC | 23:27 | |
*** sjolley <sjolley!sjolley@nat/intel/x-pgmfroaeuxacawop> has quit IRC | 23:28 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 23:35 | |
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has quit IRC | 23:37 | |
*** jjmb <jjmb!~jjmb@c-73-165-63-25.hsd1.pa.comcast.net> has joined #yocto | 23:39 | |
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has quit IRC | 23:39 | |
*** jjmb1 <jjmb1!~jjmb@2601:46:c601:4490:8916:67bb:3825:d26d> has joined #yocto | 23:40 | |
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has joined #yocto | 23:41 | |
*** jjmb <jjmb!~jjmb@c-73-165-63-25.hsd1.pa.comcast.net> has quit IRC | 23:43 | |
*** KvH_ <KvH_!~KvH@p54B81BF7.dip0.t-ipconnect.de> has joined #yocto | 23:49 | |
*** KvH <KvH!~KvH@p54B81831.dip0.t-ipconnect.de> has quit IRC | 23:52 | |
*** ryansturmer <ryansturmer!~textual@cpe-75-189-150-192.nc.res.rr.com> has joined #yocto | 23:55 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!