| *** agust1 <agust1!~agust@p4FDE6AB3.dip.t-dialin.net> has quit IRC | 00:08 | |
| ftonello | evanp: ok.. thanks | 00:09 |
|---|---|---|
| *** flynn378 <flynn378!~AndChat27@75.76.30.45> has joined #yocto | 00:12 | |
| evanp | ftonello: I'd think about whether it really matters before bothering, though | 00:14 |
| *** andyross <andyross!~andy@c-67-171-188-207.hsd1.or.comcast.net> has quit IRC | 00:22 | |
| *** ynezz <ynezz!ynezz@ibawizard.net> has quit IRC | 00:29 | |
| *** mshakeel <mshakeel!~mshakeel@110.93.212.98> has quit IRC | 00:29 | |
| *** jwessel <jwessel!~jwessel@128.224.250.2> has quit IRC | 00:29 | |
| *** grifter188 <grifter188!~grifter@static-50-53-13-32.bvtn.or.frontiernet.net> has quit IRC | 00:29 | |
| *** ericben <ericben!~ebenard@pac33-2-82-240-38-71.fbx.proxad.net> has quit IRC | 00:30 | |
| *** ericben <ericben!~ebenard@pac33-2-82-240-38-71.fbx.proxad.net> has joined #yocto | 00:30 | |
| *** ant_home <ant_home!~andrea@host186-50-dynamic.5-87-r.retail.telecomitalia.it> has quit IRC | 00:34 | |
| *** jackmitchell1 <jackmitchell1!~Thunderbi@195.171.99.130> has quit IRC | 00:39 | |
| *** feydrautha80 <feydrautha80!~ovidiu@184.70.21.10> has joined #yocto | 00:39 | |
| *** ynezz <ynezz!ynezz@ibawizard.net> has joined #yocto | 00:39 | |
| *** mshakeel <mshakeel!~mshakeel@110.93.212.98> has joined #yocto | 00:39 | |
| *** jwessel <jwessel!~jwessel@128.224.250.2> has joined #yocto | 00:39 | |
| *** grifter188 <grifter188!~grifter@static-50-53-13-32.bvtn.or.frontiernet.net> has joined #yocto | 00:39 | |
| *** jackmitchell <jackmitchell!~Thunderbi@195.171.99.130> has joined #yocto | 00:39 | |
| *** jackmitchell <jackmitchell!~Thunderbi@195.171.99.130> has joined #yocto | 00:39 | |
| feydrautha80 | hello | 00:40 |
| feydrautha80 | again | 00:40 |
| feydrautha80 | :) | 00:40 |
| *** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 00:42 | |
| *** eren <eren!~eren@unaffiliated/eren> has joined #yocto | 00:46 | |
| *** blloyd_ <blloyd_!~blloyd@ICNET-66-210-165-238.icnet.net> has quit IRC | 00:46 | |
| feydrautha80 | hello guys , I'm doing something wrong and I can't understand what exactly | 00:53 |
| feydrautha80 | i got yocto from git and is master branch | 00:54 |
| feydrautha80 | and then I got raspberrypi meta layer | 00:54 |
| feydrautha80 | in the rasberrypi metas there is a recipe that brings the hardware up | 00:54 |
| feydrautha80 | ( and it works in qemu ) | 00:54 |
| feydrautha80 | attempted to add python to the recipe | 00:55 |
| feydrautha80 | IMAGE_FEATURES+= ... | 00:55 |
| feydrautha80 | then after i build the image ... there is no python there | 00:55 |
| *** eren <eren!~eren@unaffiliated/eren> has quit IRC | 00:56 | |
| feydrautha80 | if i try to make the python recipe .. it builds and work .. | 00:56 |
| ftonello | feydrautha80: there is no python IMAGE_FEATURE | 00:57 |
| feydrautha80 | this means that I understood something wrong.. | 00:57 |
| feydrautha80 | i thought if i want to add packes to the image .. i need to add them there | 00:58 |
| kergoth | IMAGE_FEATURES is used to install groups of packages, not individual packages | 00:58 |
| kergoth | you want IMAGE_INSTALL | 00:58 |
| kergoth | or, from local.conf, CORE_IMAGE_EXTRA_INSTALL | 00:58 |
| ftonello | you need to add python to CORE_IMAGE_EXTRA_INSTALL | 00:58 |
| feydrautha80 | aww .. | 00:59 |
| feydrautha80 | ok thanks | 00:59 |
| feydrautha80 | this should be somewhere in the bitbake documentation right ? | 00:59 |
| ftonello | http://www.yoctoproject.org/docs/1.3/poky-ref-manual/poky-ref-manual.html#var-CORE_IMAGE_EXTRA_INSTALL | 01:00 |
| ftonello | feydrautha80: read the quick start and developer manuals | 01:00 |
| ftonello | kergoth: it seems that AUTO_LIBNAME_PKGS = "" does the job | 01:01 |
| feydrautha80 | thank ftoneelo and thank you kergoth | 01:03 |
| kergoth | ftonello: cool, so it was debian.bbclass causing the confusion. glad to hear you found a workaround | 01:04 |
| ftonello | kergoth: yes.. debian.bbclass checks for this AUTO_LIBNAME_PKGS.. and by default AUTO_LIBNAME_PKGS="${PACKAGES}" | 01:07 |
| davest | zenlinux: ping | 01:07 |
| kergoth | I really don't see what the problem with it is though. It doesn't hurt having it renamed, and IMAGE_INSTALL, etc can use the pre-rename names | 01:09 |
| kergoth | but either way | 01:09 |
| *** davest <davest!Adium@nat/intel/x-neqgprlirtjwyaue> has quit IRC | 01:09 | |
| *** himamura <himamura!~himamura@122.1.9.24> has joined #yocto | 01:10 | |
| *** sameo <sameo!~samuel@192.55.54.42> has quit IRC | 01:29 | |
| feydrautha80 | so if i want to add python to a image :)) do i need to add "nativesdk-python" ? | 01:33 |
| feydrautha80 | or | 01:34 |
| *** zenlinux_ <zenlinux_!~sgarman@2001:470:e962:b01:90f5:c7ac:479b:910> has joined #yocto | 01:34 | |
| feydrautha80 | where can I ask around about the recipes ? | 01:34 |
| feydrautha80 | or read :) | 01:34 |
| ftonello | kergoth: becasuse its doing it wrong. its renaming the main package for something that I don't want.. im trying to split the package like the qt4 recipes does.. | 01:37 |
| ftonello | so I did a allow_empty to the main package, and just added RDEPENDS to it | 01:37 |
| ftonello | it seems its working | 01:37 |
| ftonello | actually its not a problem with debian.bbclass its just that I don't want to use it | 01:37 |
| kergoth | feydrautha80: you were just told, add python to CORE_IMAGE_EXTRA_INSTALL. | 01:38 |
| kergoth | feydrautha80: nativesdk is for sdks, not images/rootfs | 01:38 |
| feydrautha80 | i added "python" to CORE_IMAGE_EXTRA_INSTALL | 01:38 |
| feydrautha80 | but when i try to build the image fails because says : | Error: python not found in the base feeds (raspberrypi armv6-vfp armv6 armv5e-vfp armv5e armv5-vfp armv5 armv4 arm noarch any all). | 01:39 |
| feydrautha80 | therefore i thought python might be called diffently | 01:39 |
| kergoth | try python-core instead | 01:40 |
| feydrautha80 | aha :) | 01:40 |
| kergoth | see also bitbake -e python | grep \^PACKAGES= | 01:40 |
| feydrautha80 | thanks | 01:40 |
| * kergoth forgot about that | 01:40 | |
| kergoth | np | 01:40 |
| feydrautha80 | i found python with bitbake -s | 01:40 |
| kergoth | bitbake -s shows recipes, not packages. recipes can emit any number of packages :) | 01:40 |
| feydrautha80 | ... i see .. and shouldn't "python" recipe .. contain all i need to basic python .. and even more ? | 01:42 |
| kergoth | it does. but you dont add recipes to IMAGE_INSTALL, you add packages. | 01:42 |
| kergoth | python is broken up into highly granular packages so we can keep images small | 01:42 |
| kergoth | so you can add just the packages/modules you want | 01:43 |
| kergoth | rather than the whole standard library | 01:43 |
| feydrautha80 | so .. if i would need aaalll python .. i should add the packed with everythong to IMAGE_INSTALL | 01:44 |
| *** kmacleod <kmacleod!~ken@mail.trafficware.com> has quit IRC | 01:44 | |
| feydrautha80 | if i want only the core .. i should add python-core to CORE_IMAGE_EXTRA_INSTALL | 01:44 |
| kergoth | i can't recall offhand if there's a meta-package to install all the individual python packages or not. check the bitbake -e command i gave, and also check for packagegroup- recipes | 01:45 |
| feydrautha80 | i'll do that :) can't for the moment because the build dir is locked | 01:45 |
| feydrautha80 | (building ) | 01:46 |
| *** kmacleod <kmacleod!~ken@mail.trafficware.com> has joined #yocto | 01:47 | |
| *** scot_ <scot_!~scot@client-74-113.natinst.com> has quit IRC | 01:49 | |
| *** zenlinux_ <zenlinux_!~sgarman@2001:470:e962:b01:90f5:c7ac:479b:910> has quit IRC | 01:52 | |
| * kergoth nods | 01:53 | |
| feydrautha80 | a wait .. tasks have been renamed packages | 01:55 |
| *** zenlinux_ <zenlinux_!~sgarman@75-94-47-26.war.clearwire-wmx.net> has joined #yocto | 01:56 | |
| kergoth | tasks were renamed to packagegroups, yes | 01:57 |
| *** andyross <andyross!~andy@c-67-171-188-207.hsd1.or.comcast.net> has joined #yocto | 01:59 | |
| *** andyross <andyross!~andy@c-67-171-188-207.hsd1.or.comcast.net> has quit IRC | 02:05 | |
| feydrautha80 | hey :) it finished .. ( with python-core in CORE_IMAGE_EXTRA_INSTALL ) | 02:25 |
| feydrautha80 | thank your sir .. | 02:25 |
| *** feydrautha80 <feydrautha80!~ovidiu@184.70.21.10> has quit IRC | 02:26 | |
| *** ndec <ndec!~ndec@192.94.92.11> has quit IRC | 02:52 | |
| *** ndec <ndec!~ndec@192.91.66.186> has joined #yocto | 02:53 | |
| *** ccssnet <ccssnet!~ccssnet@98.216.141.157> has quit IRC | 03:00 | |
| *** ccssnet <ccssnet!~ccssnet@98.216.141.157> has joined #yocto | 03:19 | |
| *** andyross <andyross!~andy@c-67-171-188-207.hsd1.or.comcast.net> has joined #yocto | 03:52 | |
| -yocto-ab-bot- build #249 of nightly-meta-intel is complete: Exception [exception interrupted] Build details are at http://autobuilder.yoctoproject.org:8010/builders/nightly-meta-intel/builds/249 | 04:50 | |
| *** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has quit IRC | 05:10 | |
| *** zenlinux_ <zenlinux_!~sgarman@75-94-47-26.war.clearwire-wmx.net> has quit IRC | 05:14 | |
| *** agust <agust!~agust@p4FC465B0.dip.t-dialin.net> has joined #yocto | 05:22 | |
| *** himamura <himamura!~himamura@122.1.9.24> has quit IRC | 05:43 | |
| *** himamura <himamura!~himamura@122.1.9.24> has joined #yocto | 05:43 | |
| *** andyross <andyross!~andy@c-67-171-188-207.hsd1.or.comcast.net> has quit IRC | 06:02 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 06:10 | |
| *** oe-core_ <oe-core_!cbf79598@gateway/web/freenode/ip.203.247.149.152> has joined #yocto | 06:15 | |
| *** mebrown <mebrown!~michael_e@99-23-198-227.lightspeed.austtx.sbcglobal.net> has quit IRC | 06:37 | |
| *** thaytan <thaytan!~thaytan@113.94.233.220.static.exetel.com.au> has joined #yocto | 06:38 | |
| *** mebrown <mebrown!~michael_e@99-23-198-227.lightspeed.austtx.sbcglobal.net> has joined #yocto | 06:39 | |
| *** erbo_ <erbo_!~erik@host.62.65.124.36.bitcom.se> has quit IRC | 06:41 | |
| *** erbo <erbo!~erik@host.62.65.124.36.bitcom.se> has joined #yocto | 06:44 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 06:50 | |
| *** tor <tor!~tor@c-ef66e655.125-1-64736c10.cust.bredbandsbolaget.se> has joined #yocto | 07:04 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 07:09 | |
| *** ka6sox is now known as ka6sox-away | 07:13 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 07:15 | |
| *** sgw1 <sgw1!~sgw@72-160-85-134.dyn.centurytel.net> has quit IRC | 07:23 | |
| *** eballetbo <eballetbo!~eballetbo@2.139.180.43> has joined #yocto | 07:28 | |
| *** Zagor <Zagor!~bjst@sestofw01.enea.se> has joined #yocto | 07:34 | |
| *** Zagor <Zagor!~bjst@rockbox/developer/Zagor> has joined #yocto | 07:34 | |
| *** sgw1 <sgw1!~sgw@72-160-72-238.dyn.centurytel.net> has joined #yocto | 07:34 | |
| *** plfiorini <plfiorini!~communi@93-39-254-201.ip78.fastwebnet.it> has quit IRC | 07:50 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 07:54 | |
| *** zeeblex <zeeblex!~zeeblex@192.198.151.44> has quit IRC | 07:57 | |
| *** erbo <erbo!~erik@host.62.65.124.36.bitcom.se> has quit IRC | 07:58 | |
| *** erbo <erbo!~erik@host.62.65.124.36.bitcom.se> has joined #yocto | 07:58 | |
| *** sgw1 <sgw1!~sgw@72-160-72-238.dyn.centurytel.net> has quit IRC | 08:00 | |
| *** tor <tor!~tor@c-ef66e655.125-1-64736c10.cust.bredbandsbolaget.se> has quit IRC | 08:02 | |
| *** slaine <slaine!~slaine@84.203.137.218> has joined #yocto | 08:03 | |
| *** tor <tor!~tor@c-ef66e655.125-1-64736c10.cust.bredbandsbolaget.se> has joined #yocto | 08:06 | |
| *** elmi82 <elmi82!~timo@mail.bmw-carit.de> has joined #yocto | 08:14 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 08:15 | |
| *** bogdanm <bogdanm!~bogdanm@134.134.139.74> has joined #yocto | 08:25 | |
| *** ant_work <ant_work!~ant@host6-80-static.42-85-b.business.telecomitalia.it> has joined #yocto | 08:39 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 08:40 | |
| *** Net147 <Net147!~Net147@60-242-179-244.static.tpgi.com.au> has joined #yocto | 08:42 | |
| *** Jin|away <Jin|away!~jin@belief.htu.tuwien.ac.at> has joined #yocto | 08:50 | |
| *** Jin|away is now known as Jin^eLD | 08:51 | |
| *** _Lucretia__ <_Lucretia__!~munkee@b0fd0f8f.bb.sky.com> has quit IRC | 09:18 | |
| *** roric <roric!~roric@194-237-7-146.customer.telia.com> has joined #yocto | 09:19 | |
| *** jbaxter <jbaxter!~jbaxter@jimbax.plus.com> has joined #yocto | 09:27 | |
| *** sameo <sameo!~samuel@192.55.54.42> has joined #yocto | 09:29 | |
| *** mckoan|away is now known as mckoan | 09:29 | |
| mckoan | good morning | 09:30 |
| *** Corneliu <Corneliu!c0c6972b@gateway/web/freenode/ip.192.198.151.43> has joined #yocto | 09:32 | |
| *** tonghuix <tonghuix!~tonghuix@60.223.237.137> has joined #yocto | 09:38 | |
| *** panda84kde <panda84kde!~diego@static-217-133-170-65.clienti.tiscali.it> has joined #yocto | 09:40 | |
| oe-core_ | hello | 09:42 |
| oe-core_ | what are the options to givee to cross-compile openssl | 09:44 |
| *** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 09:44 | |
| *** florian_kc is now known as florian | 09:44 | |
| *** himamura <himamura!~himamura@122.1.9.24> has quit IRC | 09:51 | |
| panda84kde | oe-core_: hi. Do you have poky toolchain installed? | 09:54 |
| oe-core_ | no i'm using oe-core toolchain itself | 09:54 |
| oe-core_ | but i want openssl to build for qemux86 | 09:55 |
| oe-core_ | i'm not cloning the code but using my code | 09:55 |
| panda84kde | Mmm. Are you using Yocto? | 09:56 |
| oe-core_ | no oe-core build system | 09:59 |
| *** belen <belen!Adium@nat/intel/x-qbqttqfowgnrinwb> has joined #yocto | 09:59 | |
| *** imolit <imolit!edwardd@nat/axis/x-hvrdmtgcbhzetxsl> has joined #yocto | 10:00 | |
| *** tinti <tinti!~tinti@pdpc/supporter/student/tinti> has quit IRC | 10:00 | |
| oe-core_ | panda84kde: do u have any idea? | 10:01 |
| panda84kde | I've got some experience with http://www.yoctoproject.org/docs/1.3/adt-manual/adt-manual.html but don't know at what you're referring to | 10:03 |
| rburton | oe-core_: oe-core is part of yocto | 10:03 |
| oe-core_ | when i'm building opensssl, first it builds native, there it configures for native os(x86-64-linux mine), during that it gives compilation failure | 10:05 |
| panda84kde | oe-core_: to sum it up: if you want to build outside Yocto build system you should use the sdk. | 10:05 |
| oe-core_ | saying ../libcrypto.so: undefined reference to `mod_exp_512' | 10:05 |
| rburton | oe-core_: what version of oe-core/bitbake? | 10:05 |
| rburton | hm why is it building a native openssl? | 10:06 |
| oe-core_ | BBCLASSEXTEND = native option is specified in bb file | 10:09 |
| oe-core_ | rpm-native has dependency on openssl-native | 10:10 |
| oe-core_ | even if it is building native no issue, but it is giving compilation error | 10:11 |
| rburton | ah, rpm is pulling it in, fine. | 10:11 |
| rburton | so what version of oe-core? | 10:11 |
| oe-core_ | whatersion of oe-core? i did not get u? | 10:13 |
| oe-core_ | why it is giving compilation error? | 10:15 |
| rburton | yes, what version of oe-core | 10:17 |
| rburton | i'm trying to find out what you're building | 10:17 |
| oe-core_ | i'm trying to build openssl in oe-core(build system) but i'm not cloning the code | 10:19 |
| oe-core_ | whose path is specified in SRC_URI because i want to build with the code which i have | 10:20 |
| oe-core_ | there when i'm building i get compilation error as specified above | 10:20 |
| rburton | eh? | 10:22 |
| rburton | you're swapping the oe-core source for your own openssl source tree? | 10:22 |
| oe-core_ | yep | 10:22 |
| rburton | are you also ensuring all those patches we apply are being applied? | 10:23 |
| rburton | if you've just got a new feature or something, it's best to use a patch | 10:24 |
| rburton | but i can't really help you with compilation of sources that are not part of oe, or i can't see | 10:24 |
| oe-core_ | even after applying all the patches its failing | 10:24 |
| rburton | does the proper source uri build fine? if that does, then it's your changes that are breaking it. | 10:26 |
| *** rogerzhou <rogerzhou!~rogerzhou@61.148.56.138> has quit IRC | 10:27 | |
| oe-core_ | k | 10:27 |
| oe-core_ | so u tell there might be problem with the changes in the source? | 10:28 |
| *** bluelightning <bluelightning!~paul@83.217.123.106> has joined #yocto | 10:28 | |
| *** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 10:28 | |
| rburton | i'm saying you should verify that the sources urls as we provide them work before trying your modifications | 10:29 |
| rburton | if a pristine oe-core doesn't build, then someone can help | 10:29 |
| oe-core_ | ya its building file | 10:29 |
| oe-core_ | fine | 10:29 |
| rburton | so it's your changes that are breaking the compile in some form | 10:30 |
| *** tonghuix <tonghuix!~tonghuix@60.223.237.137> has quit IRC | 10:32 | |
| oe-core_ | k thanks i'll check | 10:33 |
| *** EsbenH <EsbenH!~esben@hugin.dotsrc.org> has joined #yocto | 10:33 | |
| OlivierG | rburton:Hi Ross, could you please have a look at the following changes in neard recipe ? http://pastebin.com/jLHAwHhx and http://pastebin.com/0E5sZPXJ Does it make sense to you ? | 10:40 |
| rburton | OlivierG: yes, that | 10:41 |
| rburton | why do you need oe_runmake DESTDIR=${D} libexecdir=${libexecdir} install? | 10:41 |
| rburton | surely that's implied | 10:41 |
| rburton | as we've already passed libexecdir at configure time | 10:42 |
| *** tinti <tinti!~tinti@pdpc/supporter/student/tinti> has joined #yocto | 10:42 | |
| OlivierG | because libdirexec in Yocto adds /usr/lib/${BPN} as mine, in neard, refers to /usr/lib... | 10:44 |
| *** pirut <pirut!~Pirut@134.134.139.76> has joined #yocto | 10:44 | |
| OlivierG | "refers to /usr/lib/nfc" ;) | 10:45 |
| rburton | you shoud fix neard | 10:47 |
| OlivierG | ;)... well...we had so many discussion with Marcel and Sameo about this point... | 10:48 |
| rburton | ha | 10:48 |
| rburton | sameo: sounds like you're doing it wrong :) | 10:49 |
| rburton | what's wrong with just installing into libexecdir, which defaults to /usr/libexec i think still, but increasingly is being re-set to $libdir/$packagename | 10:50 |
| OlivierG | he is not here (back in few minutes)... but we discussed about this issue this morning... | 10:50 |
| rburton | OlivierG: is he coming to osts? | 10:50 |
| OlivierG | yes | 10:50 |
| rburton | i'll throw him into the hot tub clothed unless he sorts this out. | 10:51 |
| OlivierG | good luck ;) | 10:51 |
| rburton | yeah i may need a team to assist me | 10:51 |
| OlivierG | btw, the idea behind all these changes (according to Marcel) is to have the daemons path as /usr/lib/{package} ... | 10:54 |
| rburton | that's a packaging choice | 10:54 |
| rburton | so he's Wrong. | 10:54 |
| rburton | i won't throw marcel in the hot tub though | 10:55 |
| OlivierG | O:-) so am i.... | 10:55 |
| sameo | rburton: Hey...So what's wrong with @libexecdir@/nfc ? | 10:57 |
| rburton | well, most sane distributions are moving to --libexecdir=/usr/lib/@package@ | 10:57 |
| rburton | so you'll be double-nesting | 10:57 |
| sameo | right, which is why we're overriding poky's install for neard. | 10:58 |
| bluelightning | morning all | 11:02 |
| sameo | rburton: According to the GNU standards: The definition of ‘libexecdir’ is the same for all packages, so you should install your data in a subdirectory thereof." | 11:03 |
| sameo | So we just do that from the neard Makefile directly. | 11:04 |
| *** roric <roric!~roric@194-237-7-146.customer.telia.com> has quit IRC | 11:07 | |
| rburton | sameo: iirc, FHS disagrees with you | 11:09 |
| rburton | http://www.pathname.com/fhs/pub/fhs-2.3.html#USRLIBLIBRARIESFORPROGRAMMINGANDPA | 11:10 |
| rburton | well, FHS says don't use libexec | 11:10 |
| sameo | rburton: I think they do: http://www.linuxbase.org/betaspecs/fhs/fhs/ch04s07.html | 11:11 |
| sameo | rburton: But basically FHS says you can add a subdir to libexec for your program, it doesn't say it must be pkgname | 11:11 |
| rburton | ha | 11:12 |
| rburton | so as more and more distros move away from libexec, FHS approves it. epic. | 11:12 |
| *** mihai <mihai!~mihai@80.97.15.149> has joined #yocto | 11:12 | |
| sameo | heh :) | 11:12 |
| sameo | although more and more distros are moving to /usr/lib/@package@ for libexecdir, this is not something we can take for granted according to the GNU and FHS folks. | 11:14 |
| sameo | I like osts hot tub btw. | 11:16 |
| sameo | Just not clothed though... | 11:17 |
| *** Net147 <Net147!~Net147@60-242-179-244.static.tpgi.com.au> has quit IRC | 11:24 | |
| *** Net147 <Net147!~Net147@60-242-179-244.static.tpgi.com.au> has joined #yocto | 11:25 | |
| *** niteshnarayanlal <niteshnarayanlal!~nitesh@fedora/niteshnarayanlal> has joined #yocto | 11:36 | |
| *** araujo <araujo!~araujo@gentoo/developer/araujo> has quit IRC | 11:39 | |
| *** niteshnarayanlal <niteshnarayanlal!~nitesh@fedora/niteshnarayanlal> has left #yocto | 11:47 | |
| *** niteshnarayanlal <niteshnarayanlal!~nitesh@fedora/niteshnarayanlal> has joined #yocto | 11:49 | |
| niteshnarayanlal | hi I was using tcpdump recipe from oe on github but the url mention there seems to be unavailable so I replaced it with another but now its not able to parse | 11:50 |
| niteshnarayanlal | its done thanks anyways :) | 12:02 |
| *** niteshnarayanlal <niteshnarayanlal!~nitesh@fedora/niteshnarayanlal> has left #yocto | 12:02 | |
| *** mihai <mihai!~mihai@80.97.15.149> has quit IRC | 12:03 | |
| *** flynn378 <flynn378!~AndChat27@75.76.30.45> has quit IRC | 12:20 | |
| *** lh <lh!~lhawthor@osuosl/staff/lh> has quit IRC | 12:24 | |
| *** roric <roric!~roric@194-237-7-146.customer.telia.com> has joined #yocto | 12:29 | |
| *** lh <lh!~lhawthor@osuosl/staff/lh> has joined #yocto | 12:36 | |
| *** oe-core_ <oe-core_!cbf79598@gateway/web/freenode/ip.203.247.149.152> has quit IRC | 12:42 | |
| *** eren <eren!~eren@unaffiliated/eren> has joined #yocto | 12:48 | |
| *** belen1 <belen1!~Adium@134.134.139.74> has joined #yocto | 12:59 | |
| *** belen <belen!Adium@nat/intel/x-qbqttqfowgnrinwb> has quit IRC | 13:01 | |
| *** markos_ <markos_!~markos@ppp-94-69-235-129.home.otenet.gr> has quit IRC | 13:01 | |
| *** OlivierG <OlivierG!~OlivierG@LVelizy-156-44-42-252.w217-128.abo.wanadoo.fr> has left #yocto | 13:23 | |
| *** scot_ <scot_!~scot@client-74-113.natinst.com> has joined #yocto | 13:27 | |
| *** abesis-dev <abesis-dev!~abesis@78.187.167.191> has joined #yocto | 13:35 | |
| abesis-dev | any help for yocto-bsp script around ? | 13:35 |
| *** Net147 <Net147!~Net147@60-242-179-244.static.tpgi.com.au> has quit IRC | 13:38 | |
| *** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has quit IRC | 13:48 | |
| *** mihai <mihai!~mihai@80.97.15.149> has joined #yocto | 13:49 | |
| *** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has joined #yocto | 13:50 | |
| *** walters <walters!~walters@conductor.verbum.org> has joined #yocto | 14:02 | |
| *** eballetbo <eballetbo!~eballetbo@2.139.180.43> has quit IRC | 14:04 | |
| *** mihai <mihai!~mihai@80.97.15.149> has quit IRC | 14:04 | |
| waynr | howdy folks, i have set "PREFERRED_PROVIDER_virtual/kernel = "linux-emac" in my machine configuration file but yocto still gives me linux-dummy whenever I build using 'bitbake -c build virtual/kernel' (this is also after running 'cleanall' for the same package) | 14:05 |
| waynr | we have a custom kernel version driven by the requirement that it be compatible with Xenomai i-pipe patch | 14:06 |
| bluelightning | waynr: perhaps that value is being overridden somewhere else? | 14:06 |
| bluelightning | what does this report: bitbake -e | grep PREFERRED_PROVIDER_virtual/kernel | 14:07 |
| waynr | PREFERRED_PROVIDER_virtual/kernel=linux-emac | 14:08 |
| waynr | hmm if something were wrong with the recipe that i wrote or if the recipe file weren't found shouldn't that cause an error? | 14:09 |
| *** belen1 <belen1!~Adium@134.134.139.74> has quit IRC | 14:10 | |
| bluelightning | waynr: if it was skipped I think it might (e.g. if COMPATIBLE_MACHINE / COMPATIBLE_HOST were not set correctly in the linux-emac recipe) | 14:11 |
| bluelightning | if the recipe wasn't available at all you would get a warning | 14:11 |
| waynr | hmm the build attempt does indicate 4 warnings, only 3 of which stuck on the bitbake console output | 14:12 |
| waynr | ah nevermind, the fourth warning is "linux-dummy: No generic license file exists..." | 14:14 |
| *** belen <belen!~Adium@134.134.139.74> has joined #yocto | 14:16 | |
| waynr | hmm, I don't see COMPATIBLE_HOST in the yocto documentation, what is that for? | 14:16 |
| waynr | maybe my bb file patterns are incorrect for this layer | 14:18 |
| bluelightning | waynr: COMPATIBLE_HOST is similar, it just matches on the full host string e.g. i686-linux | 14:27 |
| *** bogdanm <bogdanm!~bogdanm@134.134.139.74> has quit IRC | 14:31 | |
| waynr | okay. looks like my bsp layer's BBFILES was set incorrectly...fixed now, but still not catching that recipe | 14:31 |
| bluelightning | so does bitbake linux-emac work? | 14:31 |
| waynr | nothing PROVIDES linux-emac | 14:32 |
| waynr | might indicate my problem | 14:32 |
| bluelightning | right, so it's not even seeing the recipe | 14:37 |
| bluelightning | so you still have a problem with your BBFILES | 14:37 |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 14:38 | |
| waynr | well I do see the directory in which this bitbake recipe is found in the 'bitbake -e | grep BBFILES' | 14:38 |
| waynr | (I fixed the layer.conf for this bsp (maybe), previously its recipes were not found when running that command) | 14:39 |
| bluelightning | just to double check, what is the BBFILES line in the layer's layer.conf, and what is the path to the recipe? | 14:41 |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 14:42 | |
| waynr | okay BBFILES had ${LAYERDIR}/common/recipes-*/*/*.bb but the recipe was in ${LAYERDIR}/recipes-kernel/linux/linux-emac.bb | 14:43 |
| bluelightning | ah right yes that would do it | 14:43 |
| waynr | starting to get messages useful for debugging the actual kernel recipe now | 14:43 |
| waynr | thanks for the help bluelightning :) | 14:44 |
| bluelightning | no worries | 14:44 |
| *** smartin <smartin!~smartin@140-85-190-109.dsl.ovh.fr> has quit IRC | 14:50 | |
| *** lh <lh!~lhawthor@osuosl/staff/lh> has quit IRC | 14:52 | |
| *** smartin <smartin!~smartin@140-85-190-109.dsl.ovh.fr> has joined #yocto | 14:55 | |
| mckoan | bluelightning: does exixt a doc explaining how does Yocto branch releases works? (1.3_M5, 1.4_M3, ...) | 15:09 |
| *** blitz00 <blitz00!~stefans@192.198.151.43> has joined #yocto | 15:12 | |
| *** blitz00 <blitz00!~stefans@unaffiliated/blitz00> has joined #yocto | 15:12 | |
| *** rcw <rcw!~rwoolley@128.224.252.2> has joined #yocto | 15:13 | |
| khem | mckoan: those are interim release milestones when working towards a release | 15:13 |
| khem | mckoan: e.g. 1.4_M4 is milestone 4 towards 1.4 release | 15:14 |
| khem | something equivalent to kernel RC1... | 15:14 |
| rburton | theres lot of stuff with the schedule and milestone plans on the wiki | 15:15 |
| khem | systemd 198 is booting here ... | 15:15 |
| khem | rburton: hi | 15:15 |
| khem | rburton: have hashed out the systemd plan to address the meta-systemd concerns yet ? | 15:15 |
| bluelightning | rburton: parts of the wiki are quite out of date though :( | 15:16 |
| mckoan | khem: I have this doubt because usually I use oe-core with origin/master but yocto with danny | 15:18 |
| rburton | mckoan: do you mean poky with danny? | 15:18 |
| mckoan | khem: makes it sense to work with yocto origin/master too? | 15:18 |
| rburton | khem: going to send a rfc series today, i've got hybrid builds working. annoyingly didn't get to finish it before i go to a conference for a week | 15:19 |
| khem | mckoan: I see why not | 15:19 |
| khem | mckoan: I work with origin/master on yocto/poky | 15:19 |
| kergoth | mckoan: poky is just oe-core+meta-yocto+otherbits. using poky with one branch and oe-core with another branch, when one encompasses the other, doesn't make a great deal of sense :) | 15:20 |
| mckoan | khem: hmmm actually I don't understand why I am afraid of this :-) I'll switch to that too | 15:21 |
| mckoan | kergoth: BTW I'm using two separate trees the Poky(yocto) way and the raw oe-core way | 15:23 |
| mckoan | with 2 different builds | 15:23 |
| kergoth | I figured, but I'm confused about the issue. You're basically already building poky master if you're bulding oe-core master, all that's missing is meta-yocto & friends | 15:23 |
| kergoth | so there's no real reason for worry | 15:23 |
| mckoan | kergoth: in fact I was interested to experiment master meta-yocto & friends | 15:24 |
| * khem off to a F2F | 15:24 | |
| mckoan | khem: thx | 15:24 |
| kergoth | I'd be more worried about using bleeding edge core classes than a machine .conf ;) | 15:25 |
| kergoth | but fair enough | 15:25 |
| *** jstashluk <jstashluk!~jstashluk@gateway/tor-sasl/jstashluk> has joined #yocto | 15:27 | |
| rburton | khem: basically with this branch if you activate both systemd and sysvinit features you'll be able to pick the init manager at image time. | 15:30 |
| rburton | your sysvinit one will likely pull in libsystemd-login, but that's a tiny dep. | 15:31 |
| jstashluk | I run into the following when my image recipe does do_rootfs: | 15:33 |
| jstashluk | | Computing transaction...error: Can't install seemore-image-plugin-meta-0.1-r0@armv7a_vfp_neon: no package provides seemore-image-plugin-glib | 15:33 |
| jstashluk | It seems to pick a random gstreamer plugin to quit on each time i re-run it. Has anyone else run into something like this? | 15:34 |
| rburton | i wouldn't be worried about the ordering of the errors | 15:35 |
| *** mihai <mihai!~mihai@80.97.15.149> has joined #yocto | 15:40 | |
| *** Corneliu <Corneliu!c0c6972b@gateway/web/freenode/ip.192.198.151.43> has quit IRC | 15:45 | |
| *** michael_e_brown <michael_e_brown!~michaeleb@143.166.116.80> has joined #yocto | 15:47 | |
| *** elmi82 <elmi82!~timo@mail.bmw-carit.de> has quit IRC | 15:48 | |
| *** blitz00 <blitz00!~stefans@unaffiliated/blitz00> has quit IRC | 15:56 | |
| *** Zagor <Zagor!~bjst@rockbox/developer/Zagor> has quit IRC | 15:56 | |
| *** andyross <andyross!~andy@c-67-171-188-207.hsd1.or.comcast.net> has joined #yocto | 15:59 | |
| *** davest <davest!~Adium@134.134.137.73> has joined #yocto | 16:00 | |
| *** mihai <mihai!~mihai@80.97.15.149> has quit IRC | 16:04 | |
| *** kmacleod <kmacleod!~ken@mail.trafficware.com> has quit IRC | 16:06 | |
| *** kmacleod <kmacleod!~ken@mail.trafficware.com> has joined #yocto | 16:11 | |
| *** lh <lh!~lhawthor@osuosl/staff/lh> has joined #yocto | 16:16 | |
| *** zenlinux_ <zenlinux_!~sgarman@c-50-137-42-92.hsd1.or.comcast.net> has joined #yocto | 16:19 | |
| *** imolit <imolit!edwardd@nat/axis/x-hvrdmtgcbhzetxsl> has quit IRC | 16:20 | |
| *** tor <tor!~tor@c-ef66e655.125-1-64736c10.cust.bredbandsbolaget.se> has quit IRC | 16:21 | |
| JYDawg_ | (good afternoon|goede middag) | 16:30 |
| *** JYDawg_ is now known as JYDawg | 16:30 | |
| JYDawg | when I try to compile a package I get this error: libtool: link: cannot determine absolute directory name of `=/usr/lib64' | 16:31 |
| JYDawg | the intarwebs has little if any usefull info. Any ideas | 16:32 |
| JYDawg | ? | 16:32 |
| *** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has quit IRC | 16:32 | |
| *** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has joined #yocto | 16:33 | |
| *** belen <belen!Adium@nat/intel/x-pmkhxzweguvwuglj> has joined #yocto | 16:36 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 16:39 | |
| *** jackmitchell <jackmitchell!~Thunderbi@195.171.99.130> has quit IRC | 16:43 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 16:45 | |
| *** mckoan is now known as mckoan|away | 16:46 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 16:49 | |
| *** belen <belen!Adium@nat/intel/x-pmkhxzweguvwuglj> has quit IRC | 16:52 | |
| *** belen <belen!Adium@nat/intel/x-rktifjrqhjhdyofd> has joined #yocto | 16:52 | |
| *** phantoneD <phantoneD!~destroy@a95-92-88-3.cpe.netcabo.pt> has quit IRC | 16:53 | |
| *** hollisb <hollisb!~hollisb@c-67-169-221-181.hsd1.or.comcast.net> has joined #yocto | 16:53 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 16:55 | |
| *** phantoxeD <phantoxeD!~destroy@a95-92-88-3.cpe.netcabo.pt> has joined #yocto | 16:56 | |
| *** hsychla <hsychla!54b363cb@gateway/web/freenode/ip.84.179.99.203> has joined #yocto | 17:01 | |
| hsychla | hello helpfull yocto-people! | 17:01 |
| *** Jin^eLD is now known as Jin|away | 17:02 | |
| *** zenlinux_ <zenlinux_!~sgarman@c-50-137-42-92.hsd1.or.comcast.net> has quit IRC | 17:02 | |
| hsychla | I added a new layer including conf/distro/<mylayer>.conf, then changed "DISTRO", "DISTRO_NAME" etc. but when I boot the built image, it always tells me the old name (from the distro.conf I copied and changed)... What do I have to change so my image uses the new name? | 17:03 |
| *** dlewin <dlewin!~davidl@92.103.174.253> has quit IRC | 17:05 | |
| *** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 17:07 | |
| *** hsychla <hsychla!54b363cb@gateway/web/freenode/ip.84.179.99.203> has quit IRC | 17:25 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 17:25 | |
| *** ant_work <ant_work!~ant@host6-80-static.42-85-b.business.telecomitalia.it> has quit IRC | 17:26 | |
| *** sameo <sameo!~samuel@192.55.54.42> has quit IRC | 17:27 | |
| *** shoragan <shoragan!~jlu@debian/developer/shoragan> has quit IRC | 17:27 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 17:29 | |
| *** panda84kde <panda84kde!~diego@static-217-133-170-65.clienti.tiscali.it> has quit IRC | 17:34 | |
| *** mihai <mihai!~mihai@86.126.16.169> has joined #yocto | 17:34 | |
| *** francois99 <francois99!~francois9@78.33.60.3> has quit IRC | 17:35 | |
| xxiao | why are there many yocto kernel git repo instead of one with difference branches? | 17:39 |
| *** ka6sox-away is now known as ka6sox | 17:41 | |
| zeddii | xxiao, check the kernel architecture docs, but it's due to transient sets of features over time. just like linux-next, linux-stable, etc, but with more topic branches. you can't maintain a clean set of series that transition to mainline and encompass hundreds of commits over time, unless you can drop them completely and regerate/stack them clean each time. | 17:41 |
| xxiao | somehow i feel yocto devel is much more complicated than debian... | 17:46 |
| * zeddii shrugs | 17:46 | |
| zeddii | they are different use cases. | 17:46 |
| bluelightning | xxiao: there are other options for building the kernel if you feel that linux-yocto is more than you need | 17:48 |
| zeddii | exactly. people can use what they want. linux-yocto-custom, completely custom, etc. | 17:48 |
| xxiao | need add a few recipes, kernel patches, external modules to yocto, the document is overwheleming to say the least :) | 17:50 |
| zeddii | which one ? don't read the kernel architecture document as a start. | 17:50 |
| bluelightning | xxiao: we're happy to take suggestions if you have concrete ones | 17:50 |
| zeddii | there's a new kernel one for 1.4, hands on labs, quickstart guides that are simple enough. | 17:50 |
| bluelightning | right, the labs get good feedback as far as I've seen | 17:51 |
| zeddii | at the basic level, exactly what you know about patching any package with bitbake/oe-core/yocto works exactly the same way for the kernel. | 17:51 |
| xxiao | i need add scst to yocto, which itself is a few modules, scripts, and also need patch the kernel | 17:52 |
| zeddii | it can just grow to suit advanced needs and the chaos that can be vendor patches, upstream releases, out of tree serieris, etc. | 17:52 |
| xxiao | and some user spaces program to admin it | 17:52 |
| zeddii | xxiao: do you know how to do the userspace parts already ? and the startup scritps ? if so, you have most of the knowledge that you need. | 17:52 |
| zeddii | https://www.yoctoproject.org/sites/yoctoproject.org/files/elc2013-kernel-lab.pdf | 17:53 |
| zeddii | https://www.yoctoproject.org/sites/yoctoproject.org/files/devday-kernel-tzanussi-elc-2013.pdf | 17:53 |
| xxiao | i have it working with yocto, just not the 'right' way, i.e. not built with recipes etc, it's done in a hackish way and now i want to clean it up | 17:53 |
| zeddii | http://www.yoctoproject.org/docs/1.4/kernel-dev/kernel-dev.html | 17:54 |
| zeddii | that's all kernel. | 17:54 |
| zeddii | but you also need to read the other yocto docs for userspace/recipes/packaging, the concepts are the same. | 17:54 |
| xxiao | thanks, yeah...quite some reading to do | 17:55 |
| zeddii | it gets easier, once the basic concepts become clear. | 17:56 |
| *** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 18:02 | |
| *** smartin <smartin!~smartin@140-85-190-109.dsl.ovh.fr> has quit IRC | 18:05 | |
| *** belen <belen!Adium@nat/intel/x-rktifjrqhjhdyofd> has quit IRC | 18:09 | |
| *** roric <roric!~roric@194-237-7-146.customer.telia.com> has quit IRC | 18:11 | |
| *** slaine <slaine!~slaine@84.203.137.218> has quit IRC | 18:15 | |
| *** hsychla <hsychla!54b363cb@gateway/web/freenode/ip.84.179.99.203> has joined #yocto | 18:19 | |
| hsychla | mhh... I wonder if anybody answered my question after my PC crashed... ? | 18:20 |
| *** scot_ <scot_!~scot@client-74-113.natinst.com> has quit IRC | 18:20 | |
| *** scot_ <scot_!~scot@client-74-113.natinst.com> has joined #yocto | 18:20 | |
| evanp | hsychla: where exactly are you seeing the old $DISTRO value? | 18:26 |
| *** plfiorini <plfiorini!~communi@93-39-254-201.ip78.fastwebnet.it> has joined #yocto | 18:35 | |
| *** pidge <pidge!~pidge@c-98-246-241-202.hsd1.or.comcast.net> has joined #yocto | 18:55 | |
| hsychla | evanp: when booting the qemu image. but I got it now, was a stupid mistake after all. did not change the distro parameter in local.conf... but thanks for taking your time! | 18:57 |
| *** hsychla <hsychla!54b363cb@gateway/web/freenode/ip.84.179.99.203> has quit IRC | 19:01 | |
| *** tinti_ <tinti_!~tinti@pdpc/supporter/student/tinti> has joined #yocto | 19:07 | |
| *** smartin <smartin!~smartin@ivr94-4-82-229-165-48.fbx.proxad.net> has joined #yocto | 19:18 | |
| *** sh4rm4 <sh4rm4!~sh4rm@gateway/tor-sasl/sh4rm4> has quit IRC | 19:19 | |
| *** paw <paw!~afong@198-84-222-42.cpe.teksavvy.com> has joined #yocto | 19:23 | |
| *** sh4rm4 <sh4rm4!~sh4rm@gateway/tor-sasl/sh4rm4> has joined #yocto | 19:24 | |
| paw | I have a recipe that under certain circumstances may want to add its multilib variant into the final image, I've been trying to do this by trying to append to RRECOMMENDS_${BPN} in my __anonymous() function but it doesn't work. what's the recommended way of doing this? | 19:26 |
| khem | off late I am seeing hangs when building the final image on poky master | 19:34 |
| khem | it uses systemd | 19:34 |
| khem | but I am just seeing it since couple of days | 19:34 |
| evanp | paw: rather than appending, I'd probably stick a variable reference directly in RRECOMMENDS_${BPN} and then arrange for that variables value to be empty or the list of additional packages | 19:37 |
| evanp | paw: a lot of the task- (v1.3) / packagegroup- (v1.4) recipes do that sort of thing. e.g., look at how FEATURES works | 19:38 |
| waynr | i am getting "ERROR: ExpansionError during parsing /opt/....linux-emac.bb: Failure expanding variable do_patch: ExpansionError: Failure expanding variable do_patch, expression was cd /opt/.... | 19:41 |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 19:42 | |
| waynr | is do_patch a template string variable that gets expanded with certain other variables made available somewhere long the recipe? and if so, does this error indicate that I am missing a variable necessary to complete the expansion? | 19:42 |
| *** feydrautha80 <feydrautha80!~ovidiu@184.70.21.10> has joined #yocto | 19:43 | |
| rburton | waynr: why are you overriding do_patch? | 19:45 |
| rburton | it's rare to need to do that | 19:45 |
| waynr | i'm not doing it on purpose | 19:45 |
| rburton | where's "cd /opt" coming from then? | 19:46 |
| waynr | that's part of the error output | 19:46 |
| rburton | do_patch will apply the patches listed in src_uri | 19:46 |
| rburton | so maybe you've got a messed up src_uri statement | 19:46 |
| waynr | that is possible | 19:46 |
| waynr | i don't have any patches lsted in src_uri | 19:47 |
| waynr | just a defconfig and a git repository | 19:47 |
| rburton | waynr: sounds like you need to share your recipe ;) | 19:47 |
| *** markos_ <markos_!~markos@athedsl-4392991.home.otenet.gr> has joined #yocto | 19:47 | |
| rburton | (yes, the functions are for some time plain text, which are then parsed as python) | 19:47 |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 19:49 | |
| *** kmacleod <kmacleod!~ken@mail.trafficware.com> has quit IRC | 19:49 | |
| waynr | rburton: that is probably a good idea...I am kinda just working in the dark copying existing recipes and making changes necessary to pull source from a git repository that i run | 19:50 |
| *** kmacleod <kmacleod!~ken@mail.trafficware.com> has joined #yocto | 19:52 | |
| *** rcw <rcw!~rwoolley@128.224.252.2> has left #yocto | 19:57 | |
| *** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC | 20:10 | |
| *** eren <eren!~eren@unaffiliated/eren> has quit IRC | 20:30 | |
| *** _Lucretia_ <_Lucretia_!~munkee@pdpc/supporter/active/lucretia> has joined #yocto | 20:31 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 20:38 | |
| rburton | can anyone remember when openzaurus was formed? | 20:42 |
| rburton | trying to put a date on "key components of yocto are X years old" | 20:42 |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 20:45 | |
| Crofton|work | hmm, | 20:47 |
| Crofton|work | I think we have been using 2004 | 20:47 |
| Crofton|work | Domain Name:OPENZAURUS.ORG | 20:48 |
| Crofton|work | Created On:05-Feb-2002 17:07:13 UTC | 20:48 |
| rburton | that's a good idea :) | 20:48 |
| Crofton|work | Domain Name:OPENEMBEDDED.ORG | 20:48 |
| Crofton|work | Created On:21-Jan-2003 23:58:22 UTC | 20:48 |
| Crofton|work | 10 years old is good number | 20:48 |
| rburton | thanks :) | 20:48 |
| Crofton|work | someone at ELC made the remark The Yocto Project hadn't been around long enough to judge | 20:49 |
| Crofton|work | I found that "amusing" | 20:49 |
| rburton | ha | 20:51 |
| *** W1N9Zr1229 is now known as W1N9Zr0 | 20:54 | |
| *** mihai <mihai!~mihai@86.126.16.169> has quit IRC | 21:00 | |
| *** lh <lh!~lhawthor@osuosl/staff/lh> has quit IRC | 21:04 | |
| Crofton|work | I have eclipse making an arm binary of hell world with the toolchain from populate sdk | 21:05 |
| Crofton|work | any hints on how to run this binary on the target hw from eclipse? | 21:05 |
| *** tinti_ <tinti_!~tinti@pdpc/supporter/student/tinti> has quit IRC | 21:12 | |
| *** jbaxter <jbaxter!~jbaxter@jimbax.plus.com> has quit IRC | 21:17 | |
| *** tinti_ <tinti_!~tinti@pdpc/supporter/student/tinti> has joined #yocto | 21:24 | |
| khem | Crofton|work: you are almost there | 21:26 |
| khem | Crofton|work: if you can compile an app half the battle is won | 21:26 |
| *** markos_ <markos_!~markos@athedsl-4392991.home.otenet.gr> has quit IRC | 21:30 | |
| *** roric <roric!~roric@c-9370e455.213-3-64736c14.cust.bredbandsbolaget.se> has joined #yocto | 21:33 | |
| *** paw <paw!~afong@198-84-222-42.cpe.teksavvy.com> has quit IRC | 21:34 | |
| Crofton|work | hello,world ... | 21:35 |
| *** davest <davest!~Adium@134.134.137.73> has quit IRC | 21:39 | |
| *** bluelightning <bluelightning!~paul@cpc13-lewi17-2-0-cust74.2-4.cable.virginmedia.com> has joined #yocto | 21:42 | |
| *** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 21:42 | |
| *** nitink <nitink!~nitink@134.134.139.76> has quit IRC | 21:46 | |
| *** nitink <nitink!~nitink@134.134.139.76> has joined #yocto | 21:46 | |
| Crofton|work | I think I ran it. There are way too many things to chose frmo. Seriously confusing | 21:51 |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 21:51 | |
| *** tinti_ <tinti_!~tinti@pdpc/supporter/student/tinti> has quit IRC | 21:52 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has quit IRC | 21:56 | |
| *** tinti_ <tinti_!~tinti@pdpc/supporter/student/tinti> has joined #yocto | 21:56 | |
| *** ant_home <ant_home!~andrea@host186-50-dynamic.5-87-r.retail.telecomitalia.it> has joined #yocto | 21:59 | |
| *** scot_ <scot_!~scot@client-74-113.natinst.com> has quit IRC | 22:01 | |
| *** scot_ <scot_!~scot@client-74-113.natinst.com> has joined #yocto | 22:01 | |
| *** kmacleod <kmacleod!~ken@mail.trafficware.com> has quit IRC | 22:03 | |
| *** kmacleod <kmacleod!~ken@mail.trafficware.com> has joined #yocto | 22:05 | |
| *** otavio_ is now known as otavio | 22:08 | |
| *** yocto-ab-bot <yocto-ab-bot!~yocto-ab-@autobuilder.yoctoproject.org> has joined #yocto | 22:09 | |
| *** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 22:11 | |
| *** wmat_ is now known as wmat | 22:19 | |
| *** darknighte_afk is now known as darknighte | 22:25 | |
| *** andyross <andyross!~andy@c-67-171-188-207.hsd1.or.comcast.net> has quit IRC | 22:31 | |
| *** abelloni_ <abelloni_!~piout@128-79-216-144.hfc.dyn.abo.bbox.fr> has joined #yocto | 22:49 | |
| *** darknighte is now known as darknighte_afk | 22:49 | |
| *** abelloni <abelloni!~piout@128-79-216-144.hfc.dyn.abo.bbox.fr> has quit IRC | 22:50 | |
| *** darknighte_afk <darknighte_afk!~darknight@pdpc/supporter/professional/darknighte> has quit IRC | 22:54 | |
| *** abelloni <abelloni!~piout@128-79-216-144.hfc.dyn.abo.bbox.fr> has joined #yocto | 22:55 | |
| *** smartin <smartin!~smartin@ivr94-4-82-229-165-48.fbx.proxad.net> has quit IRC | 23:05 | |
| *** flynn378 <flynn378!~AndChat27@75.76.30.45> has joined #yocto | 23:13 | |
| *** plfiorini <plfiorini!~communi@93-39-254-201.ip78.fastwebnet.it> has quit IRC | 23:35 | |
| *** nitink <nitink!~nitink@134.134.139.76> has quit IRC | 23:51 | |
| *** nitink <nitink!~nitink@134.134.139.76> has joined #yocto | 23:52 | |
| *** andyross <andyross!~andy@c-67-171-188-207.hsd1.or.comcast.net> has joined #yocto | 23:55 | |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!