**** BEGIN LOGGING AT Thu May 15 02:59:59 2014 May 15 07:35:19 good morning May 15 07:43:17 * mr_science several pints in... May 15 07:43:29 should i commit now? May 15 07:49:57 hi May 15 08:48:26 morning all May 15 08:51:52 hey bluelightning May 15 08:51:57 hi koen May 15 10:11:07 Hello all May 15 10:11:30 i am facing an random error in dnsmasq_2.68.bb May 15 10:12:25 arm-none-linux-gnueabi-gcc: error: option.o: No such file or directory May 15 10:13:08 I can see that option.c file is given to compiler for compilation May 15 10:13:19 is this PARALLE_MAKE issue? May 15 10:16:36 JaMa: do you think the meta-oe S!=B patches and the openldap will complete jenkins testing before the weekend? May 15 10:22:10 koen: I still have many recipes with B=S/brokensep patch I've sent before to complete world builds without running out of space due to failures May 15 10:22:25 koen: with that I have only about 5 failures per arch May 15 10:22:40 abiword, libssh broken by libgcrypt upgrade May 15 10:22:49 firefox broken by freetype upgrade May 15 10:23:01 grub.do_package failing again for some reason May 15 10:24:09 openembedded-core/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb, do_install failinig for some unknown reason as well May 15 10:24:29 I hope to send report today May 15 10:24:55 then I'll probably start new test-dependencies build (complete not incremental) May 15 10:24:57 ah! May 15 10:25:06 I have a libssh update in an angstrom branch somewhere May 15 10:25:08 * koen looks May 15 10:25:18 so I'll be without jenkins builder for next 15 days or so May 15 10:30:46 anyone clued up on libssh vs. libssh2? May 15 10:30:49 are they even related? May 15 10:35:43 bluelightning: not sure, but libssh 0.6.x works May 15 11:54:26 long time no see koen :) May 15 12:45:16 aah I need some random expert advice again... May 15 12:46:02 this morning my opkg-update-index started failing with ImportError: No module named opkg May 15 12:46:14 out of nowhere May 15 12:46:23 paulbarker: ^ May 15 12:46:59 my mind is boggled May 15 12:47:33 doesn't ring any bells for me either, but maybe Paul (other Paul ;) can shed some light on it May 15 12:48:24 it's not like I was messing with those scripts or anything... its been working for at least years May 15 12:49:53 anyone know about thio opkg python thing? what must I type!? apti-get install python-opkg? May 15 12:50:15 somehow that python module just got nuked off my pc May 15 12:50:16 that's not going to be the solution May 15 12:50:34 it tails on line 6 which is a import opkg; May 15 12:50:40 fails* May 15 12:50:44 how can you tell... May 15 12:50:53 where is opkg-update-index itself? May 15 12:51:04 in path... ~/bin May 15 12:51:34 so this is something you've installed on your machine and not part of OE at all? May 15 12:51:34 and working May 15 12:51:42 or it's in the target? May 15 12:51:43 yea May 15 12:51:47 its an angstrom thing May 15 12:51:53 or May 15 12:52:01 http://inportb.com/2010/10/19/package-management-with-opkg/ May 15 12:52:17 you access that svn repo and it should just work. May 15 12:52:38 apearently you just run the script near ipks and it makes it available as a package feed May 15 12:53:03 that svn repo is ancient though, I think the replacement is http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/ May 15 12:53:14 aha May 15 12:53:17 let me try that May 15 12:53:38 if you're talking about a feed that's produced by the build system, we do have that functionality built in btw May 15 12:53:47 as in "bitbake package-index" May 15 13:01:20 oh May 15 13:01:23 what a noob May 15 13:01:29 ive been running it manually May 15 13:01:45 I know it was done by bitbake May 15 13:01:53 but I did not know you can call it ay time May 15 13:01:58 thanks May 15 13:58:56 * ajtag is back (gone 00:02:30) May 15 15:41:53 I am trying to use meta-virtualization with dora/meta-intel to build some of the demo images in recipes-extended/images May 15 15:42:16 I keep getting an error trying to build libvirt where it cannot locate libxl May 15 15:42:36 I cannot find this library anywhere - what am I missing to get this to build? May 15 16:01:54 martinmeba: it could be a wrong PACKAGECONFIG option look at the libvirt recipe May 15 18:54:53 khem - thanks for the response! I am using the package in its default state and it does pull in libxl. If I wanted to make the default settings work, where does libxl get pulled from? Am I missing a meta layer that provides this package? May 15 20:54:42 hi May 15 20:58:21 i am fighting with bakefile and i really don't know how to write my recipe, i can compile it and install it, but i don't know if i should make it a -native recipe, or PACKAGe_ARCH=all as it only installs python scripts and .ac files that should be placed in the sysroot, to build other packages later... any idea ? May 15 20:59:58 i'd say it should not be -native, and produces files should go in bakefile-dev and sysroot, then about the PACKAGE_ARCH i'd put all, but i am really lost May 15 21:00:10 s/produces/produced/ May 15 21:04:03 http://pastebin.com/NbZBaabw May 15 21:04:43 -native is used to build tools which are run during the build process. it's not packaged at all, and isn't expected to go ont othe target. if it did, itd be the wrong architecture May 15 21:04:49 you likely want inherit allarch, if anything May 15 21:05:04 along with the appropriate python/distutils bbclasses, obviously May 15 21:06:22 i think that bakefile is a tool which is run during the build process indeed, like autoconf for instance May 15 21:06:48 i agree for the inherit allarch May 15 21:06:56 then it's likely appropraite both for the taret, for on-target development, and native for the build process May 15 21:07:03 so add BBCLASSEXTEND = "native" May 15 21:07:08 then you'll have both bakefile and bakefile-native May 15 21:07:18 that's tricky :) May 15 21:07:21 and drop the native inherit May 15 21:07:25 ok May 15 21:07:37 bbclassextend says "create additional variants of this recipe. for each variant, inherit its class" May 15 21:07:46 so bbclassextend of native makes ${PN}-native which inherits native May 15 21:07:57 good i've seen it before but i completly forgot about it May 15 21:08:22 then drop PACKAGE_ARCH = "all" in favor of inherit allarch, and you should be good to go. then just DEPENDS += "bakefile-native" from the recipe that needs it, presumably May 15 21:09:07 perfect May 15 21:09:15 i'll try this, thanks a lot kergoth May 15 21:13:03 weird May 15 21:13:03 Invalid configuration `allarch-oe-linux': machine `allarch-oe' not recognized **** ENDING LOGGING AT Fri May 16 02:59:58 2014