**** BEGIN LOGGING AT Wed Oct 23 02:59:58 2013 Oct 23 04:06:38 So, turns out the packageconfig logic in base.bbclass iterates over the flags in an undefined order, so the contents of EXTRA_OECONF can vary, resulting in no reuse of sstate. Oct 23 07:22:40 in dylan there is a dependency on mercurial-native in the base.bbclass but this recipe is not part of the yocto core git repository, is that intended? Oct 23 08:43:05 Is there a way to instuct kernel module to be linked to a static library, like http://www.linuxquestions.org/questions/linux-newbie-8/how-to-link-a-static-library-to-a-kernel-module-587406/ Oct 23 08:44:03 I tried adding ldflags-y += -lmylib -L ${STAGING_LIBDIR} to kernel module Makefile Oct 23 08:44:12 but this ndoes not work Oct 23 08:54:48 no ideas? Oct 23 09:51:39 * fray is starting to fall asleep.. wish I could have done this 10 hours ago.. :P Oct 23 10:03:46 hi i have been using kernel-3.13 and used the same on at91sam9x5ek board when i try to run a qt apps it shows QScreenLinuxFb::connect: No such device Error opening framebuffer device /dev/fb0,even i enabled all fb driver in kernel,but it shows thet issues.can you help me Oct 23 10:30:01 Hi all... How to point kernel module Makefile to include files directory? Oct 23 10:39:26 any ideas on this? Oct 23 10:39:43 I have kernel module and it contains include directory Oct 23 10:41:09 How to point bitbake to add this include path to CCFLAGS? Oct 23 10:54:59 any idea how to pass source directory to kernel module makefile? Oct 23 10:57:19 is there a way to pass these kind of information from bitbake .bb file to kernel module Makefile? Oct 23 12:08:59 Hi together, I've a problem with updating deb packages with initscripts on my target board. You can see an example (with openssh-sshd) here: http://pastebin.com/USkCEE9j Oct 23 12:09:21 I'd appreciate any kind of help.... Thanks! Oct 23 12:10:04 Basically the error during the dpkg -i is: update-rc.d: /etc/init.d/sshd exists during rc.d purge (use -f to force) Oct 23 13:35:53 hi i have been using kernel 3.13 and enabled all framebuffer driver but when i try to run a sample qt apps in at91sam9g35ek it shows QScreenLinuxFb::connect: No such device Error opening framebuffer device /dev/fb0 can you tell me what is that issues Oct 23 14:37:59 hi Oct 23 14:38:57 I would like to know the policy about backporting patches from master to dora, now that it's released Oct 23 14:39:27 mburtin, in what sense? Oct 23 14:39:48 I recently submit a patch that IMHO should be backported to dora as without this, initramfs-framework is broken Oct 23 14:40:39 http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=c367ebd4d64d795057f91b3c1cfe91a103539907 Oct 23 14:40:45 pfff... i missed the dora release announcement... anyways... thanks everyone for that release! Oct 23 14:41:57 mburtin, that should be a good candidate Oct 23 14:42:16 I guess so, it's a simple fix from a typo in a previous commit Oct 23 14:42:22 I'm not sure if someone has volunteered to maintain it yet Oct 23 14:42:46 and we may be slow answering this week since many people are at ELCE Oct 23 14:43:04 ok, I see Oct 23 14:46:14 is there anything I could do to suggest integration of this patch into dora (ML, bugtracker) ? Oct 23 14:46:59 Hey, does anyone know what it means to have a "Bad RPATH"? Oct 23 14:47:09 What makes an RPATH "bad"? Oct 23 14:47:19 This is the error I see: http://pastebin.com/pR1zT1qN Oct 23 14:47:50 Stygia: the RPATH is bad because that path won't be available on target Oct 23 14:47:58 This also occours when I use STAGING_LIBDIR, which is /mnt/dev/fsl-community-bsp/build/tmp/sysroots/imx6qsabresd/usr/lib and unlike the one shown in the pastebin exists and has lib files (although the error does not change) Oct 23 14:48:12 erbo, So this RPATH needs to be something like /usr/lib? Oct 23 14:49:12 Stygia: probably you don't need that RPATH Oct 23 14:50:27 erbo, Setting --disable-rpath has no effect, tohugh. Oct 23 14:50:43 I am working on RRDTOOL. Oct 23 14:51:08 Trying to make a bbappend that does not have --disable-perl so I can use RRDTOOL with perl. Oct 23 14:51:16 Stygia: if you can't get it to build without you can always remove it after build time, see suggested work-around in https://lists.yoctoproject.org/pipermail/yocto/2013-August/017913.html Oct 23 14:52:29 This is the bbappend, BTW: http://pastebin.com/NRLcGSWw Oct 23 14:52:51 This is a "regular" package, using a "regular" makefile. That makefile then calls a ExtUtils::MakeMaker perl makefile (Makefile.PL) Oct 23 14:53:22 Stygia: you set RPATH in that recipe, what if you leave it empty? Oct 23 14:54:10 or is that a way to try to get it to be /usr/lib/ instead of the sysroot path= Oct 23 14:55:05 That was a way of trying that, with no luck I might add. I have tried it without that export RPATH... call, too. Oct 23 14:55:19 I will try again. Oct 23 14:55:51 No change. Oct 23 14:55:57 I don't think that ENVVAR ever did anything at all. Oct 23 14:56:22 Actually, it wouldn't have, since the RPATH=... is taken from ARGV in the Makefile.PL, i.e. it is the last argument passed to the makefile. Oct 23 15:15:56 erbo, Do you know where I can find a cross-platform chrpath? The one on just my system won't work, since it can't strip from ARM executables (non-64-bit x86), and presumably I couldn't use the ARM executable on my x86-64 system? Oct 23 15:16:07 erbo, Seems like the example in question considers only same-architecture use? Oct 23 15:24:59 Does anyone know how to use the tool I DEPEND upon in, say, a do_install_append()? Oct 23 15:25:17 Say I depend upon chrpath, or chrpath-native. And I wanted to use _that_ binary, and not the one from the host OS. Oct 23 15:25:23 What do I prepend to "chrpath" to use that? Oct 23 15:25:30 ${STAGING_BINDIR}, it seems, isn't right. Oct 23 15:44:19 Stygia: that's already in the PATH. add to DEPENDS, run chrpath. that's all that's necessary Oct 23 15:44:46 kergoth, Ah alright, thanks. Then it's another issue! Oct 23 16:13:44 hi all... How to pass cflags to kernel module Makefile from .bb file? Oct 23 16:18:03 This may be a silly question. Before I go down any rabbit holes: There's a MIPS target for which we in principle support three tunings, one each of lib, lib32, and lib64. I encounter strangeness if I try to set MULTILIBS = "multilib:lib32 multilib:lib64". Oct 23 16:18:35 Is anyone aware of a target on which configuring two multilibs on top of the base tuning actually works? Because I am sort of inclined to write this off as "not actually expected to function". Oct 23 16:18:51 ... nevermind the pointlessness of having both o32 and n32 userspace in the same filesystem. Oct 23 18:20:23 hm, this python 2.7 requirement excludes base RHEL6 =/ Oct 23 18:20:49 i guess i can use Software Collections now though Oct 23 18:22:17 then i'll be using layers of RHEL -> Software Collections -> jhbuild -> gnome-continuous -> OpenEmbedded. What could possibly go wrong? Oct 23 18:28:07 Just a followup, it really does seem that something gets pretty broken when I have two multilibs configured on a BSP, but I haven't tracked it down, and it appears to be sort of oddly inconsistent. Oct 23 21:25:35 i am getting a runtime dependency for bluez that i can't explain Oct 23 21:26:56 gvfs won't install during the package install phase Oct 23 21:27:44 hold on, i have to get the exact error message.. i think it has to do with some kind of pkg feed Oct 23 21:31:43 during do_rootfs, it "Can't install gvfs-1.8.2-r9.1@core2: no package provides libbluetooth.so.3" Oct 23 21:32:52 it used to say no pkg provides bluez4 > 0.4.1 or something Oct 23 21:34:06 maybe this gvfs from meta-oe/meta-gnome recipe is just missing an RDEPENDS? Oct 23 23:44:31 If i'm creating my own layer, should the machine config go in that layer, or should it go in my own forked version of the meta-ti layer? What is the ideal/preferred place to add a custom machine? **** ENDING LOGGING AT Thu Oct 24 02:59:58 2013