**** BEGIN LOGGING AT Thu Feb 07 02:59:58 2013 Feb 07 03:06:04 does bitbake support bzr downloads? Feb 07 03:25:30 yep, see https://github.com/openembedded/bitbake/tree/master/lib/bb/fetch2 Feb 07 03:47:54 thanks, knew it was somewhere. Feb 07 03:48:35 now, is there a way to do bitbake PACKAGE and have it build a non-default version? Feb 07 03:48:47 err bitbake RECIPE Feb 07 03:52:08 PREFERRED_VERSION_foo = "1.0" Feb 07 03:52:13 this is in the docs :) Feb 07 04:16:28 kergoth, does that mean I have to add that to local.conf or is there a syntax from command line for a one off build? It's the one off I was asking about. I already tried PREFERRED_VERSION_grub = "bzr" bitbake grub without success Feb 07 04:16:52 that won't work. the environment is sanitized. only whitelisted variables are allowed into the metadata from the environment Feb 07 04:17:31 thus my question above. So edit local.conf, build, then edit it back? Feb 07 05:07:07 ping halstead Feb 07 06:06:57 blloyd: pong Feb 07 08:02:00 good morning Feb 07 08:04:20 morning halstead. Any word on me getting access to poky-contrib? Feb 07 08:16:42 blloyd: I thought that was taken care of already. Let me check. Feb 07 08:20:57 I tried to connect before my ping of you and got access denied. Feb 07 08:23:55 blloyd, Sorry about that. Almost all set. I'll send e-mail shortly. Feb 07 08:24:59 np. Thanks for taking care of it. :) Feb 07 08:27:58 blloyd, E-mail sent, both your keys are live. Feb 07 08:47:46 hi I had one recepie "make" which I need to add to the core pacakage or minimal package used in bitbake Feb 07 08:47:51 any references for that Feb 07 08:47:59 will be helpful for me Feb 07 08:56:07 do you want it in an image? Feb 07 08:58:49 yeap Feb 07 08:58:53 http://www.yoctoproject.org/docs/latest/mega-manual/mega-manual.html#usingpoky-extend-customimage-imagefeatures Feb 07 08:59:16 you don't need to add it to a package then, just instruct the image to include it. Feb 07 09:00:03 I am quite a newbie into this Feb 07 09:00:08 I had gone through this Feb 07 09:00:24 but was not able to make it work Feb 07 09:00:40 what is the name of your package? Feb 07 09:01:45 https://github.com/openembedded/openembedded/tree/master/recipes/make Feb 07 09:01:50 make this is what I want to add Feb 07 09:02:38 make is already included in yocto. Add 'IMAGE_INSTALL_append = " make"' to your local.conf Feb 07 09:04:36 or add 'IMAGE_FEATURES += "dev-pkgs"' to your local conf to get make and a whole lot of other dev tools included. Feb 07 09:06:07 the latest yocto has make 3.81 and 3.82, so it's even the same version. Feb 07 09:08:02 you really don't want make 3.82 though... Feb 07 09:08:40 just out of curiosity, what did they break in make 3.82? Feb 07 09:08:45 everything :) Feb 07 09:08:58 in particular, the parallel processing has some bugs where it drops dependencies Feb 07 09:09:12 :( GNU Make 3.82 -- Built for x86_64-redhat-linux-gnu Feb 07 09:09:13 iirc, fixed in cvs now, but they've not made a release yet Feb 07 09:09:20 And that would explain some of my build failures. Feb 07 09:09:46 people who ship it by default have patched it to make it work Feb 07 09:10:14 but it says a lot that there isn't a 3.83 that makes it actually work... Feb 07 09:10:25 Feb 07 09:13:51 wow, 2 years since last update. Feb 07 09:14:06 ok, 1.7, but still... Feb 07 09:15:32 blloyd: I would guess redhat ships a patched version Feb 07 09:18:20 I started get wierd build errors outside yocto last week when using make -j16. Haven't seen it this week, but then I got about 1GB of patches in two sets, so who knows what actually broke in the first set and was fixed second set. Feb 07 09:24:27 how well are poky and poky-contrib kept in sync? If I branch from poky-contrib/master and keep current to that will I be using the same as if I used poky/master? Is the same true of the danny and denzil branches? Feb 07 09:27:26 blloyd: I would recommend not using poky-contrib/master Feb 07 09:27:38 it's not really kept up-to-date AFAIK Feb 07 09:27:51 use poky master instead Feb 07 09:28:13 (assuming you want to stay on the bleeding edge) Feb 07 09:29:09 poky-contrib master is probably only updated when someone forgets to prefix their pushes to poky-contrib :) Feb 07 09:29:34 blloyd: its trivial to have both poky and poky-contrib remotes in the same repo, obviously Feb 07 09:30:08 (ditto for danny/denzil) Feb 07 09:40:27 (morning all btw) Feb 07 09:54:28 blloyd,thanks Feb 07 10:55:03 rburton: hi, do you have a second for the state of systemd in poky master? Feb 07 11:02:23 rburton: I need this http://paste.lisp.org/display/135308 to fix LSB starting.. Feb 07 11:02:38 rburton: of course instead of using /etc i should use the sysconf variable.. Feb 07 11:03:03 rburton: the other part is that update-rc.d is not executed for dropbear, so I do not have any /etc/rcX.d files Feb 07 11:35:22 sent a patch to the OE-core list Feb 07 11:37:30 For update-rc.d I need to add sysvinit into the DISTRO_FEATURES Feb 07 11:40:11 zecke: that should be backfilling automatically Feb 07 11:40:30 (can't see anything on oe-core) Feb 07 11:44:47 rburton: Stupid question then. How do I enable systemd images? Feb 07 11:45:00 (or just generally enable systemd support) Feb 07 11:45:08 zecke: DISTRO_FEATURES_INITMAN = "systemd" Feb 07 11:45:31 oe-core only does minimal so far as no services are enabled - i'm just finishing cleaning up/testing the class from oe now Feb 07 11:45:42 so the services will bubble in shortly Feb 07 11:45:49 i think i'll wait for master to build again properly though Feb 07 11:45:51 rburton: Okay. this means that DISTRO_FEATURES will not include sysvinit Feb 07 11:46:02 rburton: which means right now update-rc.d.bbclass will be 'empty' Feb 07 11:46:20 zecke: hm. hmm. yes. we don't want to do that do we Feb 07 11:46:23 rburton: so installing any LSB service (e.g. dropbear, or I want to use busybox syslog) does not start Feb 07 11:46:27 yeah Feb 07 11:46:43 why would you want that? Feb 07 11:46:43 need some way of a update-rcd not doing anything *if* systemd.bbclass is also included Feb 07 11:47:23 I mean if I install a LSB init script, I want it to be executed. Otherwise where is the point to install it? if I need to put it into the .wants/ dir I can just start writing .service files Feb 07 11:47:39 rburton: You didn't like the runtime detection for systemd in Angstrom? Feb 07 11:47:39 sure Feb 07 11:49:04 what bit? Feb 07 11:50:13 rburton: I am searching it now Feb 07 11:51:31 rburton: http://lists.linuxtogo.org/pipermail/angstrom-distro-devel/2011-October/005181.html Feb 07 11:52:05 ah, useful. Feb 07 11:52:24 (i mean it needs to be updated to /lib/...) or some other indicator Feb 07 11:52:45 but this way something like dropbear will continue to have a postinst which will execute update-rc.d Feb 07 11:53:01 and if we are using systemd.. then either the 'starting' will be different or just disabled Feb 07 12:01:36 afternoon sameo Feb 07 12:05:10 rburton: Hey Sir ! Feb 07 12:08:56 sameo: Been a while since you played with .bb files, still have the nightmares? :) Feb 07 12:09:47 RP: I actually enjoyed it a lot, and I am back: I want to add NFC support to Poky. Feb 07 12:10:15 sameo: ah, that sounds good to have :) Feb 07 12:11:10 sameo: I'm curious what changes you notice in the system... Feb 07 12:11:11 sameo: excellent :) Feb 07 12:11:23 RP: hopefully :) My .bb fu is a bit rusty though... Feb 07 12:12:35 sameo: we're friendly, and packaging neard should be easy peasy Feb 07 12:12:58 sameo: I'm sure it will come back quickly enough and there are a few people around who can help if/as needed Feb 07 12:13:45 i'm glad i haven't become the comms team go-to man for integrating stuff :) Feb 07 12:14:01 (that said, if it leads to another SRA, i'll integrate it for you) Feb 07 12:14:06 rburton: The dependency list is small enough, it should be easy, yes. Feb 07 12:14:16 rburton: You haven't ? ;) Feb 07 12:14:43 uhoh Feb 07 12:15:23 RP: is there prior art for disabling one class from another? if systemd and update-rcd are both included, update-rcd should do nothing. Feb 07 12:15:45 zecke: locally reverted the update-rcd disabling, as you're right that was just Wrong. Feb 07 12:16:07 RP: Sounds good, I'll try not to bug you guys too much. Feb 07 12:16:53 sameo: just don't struggle silently - we're friendly enough ;-) Feb 07 12:17:32 rburton: should update-rc.d not just fall through to a systemd inherit in the systemd case? Feb 07 12:18:14 RP: "legacy" packages that only install sysvinit scripts still need the links created under systemd Feb 07 12:18:25 but if a recipe supports both, systemd wins if its enabled Feb 07 12:19:28 RP: i guess update-rcd could check for a variable that the systemd class sets before doing anything Feb 07 12:20:47 rburton: thanks. We need to omit/fix the auto-attempt to start old lsb scripts. Feb 07 12:22:04 rburton: that is probably the "best" way forward Feb 07 12:23:32 RP: are prepended/appended python functions wrapped in another function, or literally appended? Feb 07 12:23:35 i.e. can i return Feb 07 12:23:54 rburton: literally appended the way the code works today Feb 07 12:25:55 best not return then Feb 07 14:12:21 RP: can bitbake quits when error is found instead of complaining at start and return error when finished? Feb 07 14:12:27 https://ci.linaro.org/jenkins/view/engineering-builds/job/openembedded-armv8-rootfs/label=oe_cloud,rootfs=sdk/153/consoleText Feb 07 14:33:39 hrw: doesn't really make sense to do that Feb 07 14:34:00 hrw: some people ignore those issues :/ Feb 07 14:38:43 Hi folks. I have an existing recipe (sysvinit) to which I want to add a patch. I created a .bbappend for the recipe in my layer and added a SRC_URI that points to the patch. Now when I try to build my image it says "can't find file to patch". When I look in the temp directory I don't see that the src for the package has been extracted yet? Feb 07 14:39:05 am I missing something? Feb 07 14:40:21 Garibald1: i think you need to append to FILESEXTRAPATH Feb 07 14:40:25 something like FILESEXTRAPATHS_prepend := "${THISDIR}/files:" Feb 07 14:40:40 yeah, I did -- it found the patch, but failed to apply it. Feb 07 14:41:02 what's weird is that it use to work Feb 07 14:41:08 can you share the append? Feb 07 14:41:17 sure Feb 07 14:41:36 oh, are you doing SRC_URI= instead of +=? Feb 07 14:41:51 if the source hasn't been extracted, you probably overwrote the existing SRC_URI Feb 07 14:41:52 no Feb 07 14:41:54 Garibald1: sounds like the patch maybe at the wrong directory level Feb 07 14:42:21 Garibald1: by default it needs to be able to be applied with -p1 within the source (S) directory Feb 07 14:42:33 it's a two-liner: FILESEXTRAPATHS := "${THISDIR}/files" SRC_URI_lxc += "file://sigusr1-exit.patch" Feb 07 14:42:53 Garibald1: ah, there's the problem Feb 07 14:43:18 Garibald1: you want SRC_URI_lxc_append = " file://sigusr1-exit.patch" Feb 07 14:43:28 ahh Feb 07 14:43:30 ah Feb 07 14:43:37 yes, of course Feb 07 14:43:56 so the += didn't get me an _append in that case? Feb 07 14:43:59 actually it might need to be _append_lxc rather than _lxc_append Feb 07 14:44:01 no Feb 07 14:44:14 Garibald1: += combined with an override will just set the value Feb 07 14:44:23 because the operations happen at different times Feb 07 14:44:23 I see Feb 07 14:44:25 you've just set SRC_URI for the lxc machine Feb 07 14:44:49 (+= meant you added it to the existing lxc-machine-specific value, "") Feb 07 14:44:55 SRC_URI += "..." seemed to work (before I made the _lxc change) Feb 07 14:45:10 yes, it would Feb 07 14:45:10 ah, ok Feb 07 14:45:47 so I need to say I'm appending to the 'global' SRC_URI, but only in the case of lxc Feb 07 14:45:56 and SRC_URI_append_lxc does that Feb 07 14:46:23 yeah Feb 07 14:46:27 or was it _lxc_append ;) Feb 07 14:47:04 that explains why there was no extracted tarball -- it wasn't in the SRC_URI :-) Feb 07 14:47:15 or it failed before it got to it Feb 07 14:47:22 it wasn't in the src_uri at all Feb 07 14:47:27 that's the hint Feb 07 14:47:44 yeah, I new something was wrong, just didn't realize why :) Feb 07 14:48:04 bluelightning, rburton: that fixed it, thanks! Feb 07 14:49:53 * Garibald1 adds this to his notes :) Feb 07 14:51:01 np Feb 07 15:11:54 following the quickstart on a fresh install, bitbake -k core-image-sato fails the network sanity check on Fedora 18. I've dug into the check a little and wget on the two files succeeds and they are in the downloads directory. any ideas? Feb 07 15:29:07 sanity check succeeds on F17. Feb 07 15:33:52 kmacleod: what's the version of `wget` on F18? Feb 07 15:39:26 F18 is 1.14-3.fc18, F17 is 1.13.4-7.fc17 Feb 07 15:40:13 * Zagor bumps into https://bugzilla.yoctoproject.org/show_bug.cgi?id=2669 ... Feb 07 15:40:13 Bug 2669: normal, Low, 1.4, bogdan.a.marinescu, NEW , libiconv external recipe has RPATH QA issue Feb 07 15:42:16 astounding that nobody who cares about uclibc has found time to fix that one... Feb 07 15:42:57 indeed Feb 07 15:43:52 kmacleod: ok, apparently that's why :( Feb 07 15:44:59 i thought it was fixed Feb 07 15:49:41 mihai: are you the mihai that filed bug 3833? Feb 07 15:49:42 Bug https://bugzilla.yoctoproject.org/show_bug.cgi?id=3833 normal, Medium, 1.3.2, saul.wold, NEEDINFO , build core-image-lsb-sdk Feb 07 15:50:11 sgw1: nope :) Feb 07 15:50:15 * mihai Lindner here Feb 07 15:50:49 mihai: thanks, it's hard to tell sometimes which nick goes to which person (even with info). Feb 07 15:52:00 sgw1: oh, yeah, now i see I forgot to fill in my real name Feb 07 15:58:50 kmacleod: what branch are you using? I see now that it should be fixed in master Feb 07 16:07:35 mihai, I was using release 1.3, I can try again from master Feb 07 16:11:02 kmacleod: thanks Feb 07 16:14:10 mihai, yes, working from master, thanks! Feb 07 16:17:05 kmacleod: good, you're welcome Feb 07 16:24:35 perl-Data-Dumper needs to be added to FEDORA_HOST_PACKAGES_ESSENTIAL in documentation/poky.ent Feb 07 16:31:02 hmm, that may be incorrect. that might be being used by a native build target. it appears I'm building a lot of native build tools (more than I would have expected) Feb 07 16:32:47 kmacleod: we'd want to be careful before adding extra items to that list, it's already been trimmed to just what is required Feb 07 16:34:13 kmacleod, i'm running F18 and I don't have the network sanity check problem in danny aka 1.3 Feb 07 16:38:05 blitz00, I'm not sure what the difference was. I was running a fresh mock chroot of f17, f18-with-danny, and f18-with-master and it only failed in f18-with-danny Feb 07 16:38:48 bluelightning, right, I'm adding Fedora @development tools package group to my chroot to make sure I've got all the right dependencies Feb 07 16:39:22 @development tools was listed in the yocto-1.0 docs but is not listed in current Feb 07 16:45:30 kmacleod: yes, I removed it Feb 07 16:45:52 I did run tests, the list should be complete Feb 07 16:46:29 if something is required and not listed, it could be a bug or something new in F18 Feb 07 16:46:38 given that F18 came out after the danny release Feb 07 16:47:21 the gets thing is biting people Feb 07 16:48:19 Crofton|work: did someone file a bug for that one? Feb 07 16:49:15 I don't have anything to generate the errors ) Feb 07 16:49:27 it's most likely an issue of what's installed by default on an F18 system. I'm using a mock chroot which only has a minimal build tool set (@buildsys-build) Feb 07 16:49:49 but it sounds like gets is gone on recent distro releases Feb 07 16:51:40 kmacleod: ok. the list we have is based upon what you need to install on top of a reasonably minimal base install but not a chroot Feb 07 17:29:20 rburton: has my email to oe-core arrived yet? :} Feb 07 17:30:02 zecke: no mail has arrived, looks like the box is having mysql problems Feb 07 17:34:53 FYI, last I saw on oe-core, was from yesterday more then 12 hours ago Feb 07 17:35:10 make that almost 24 hours ago now Feb 07 17:39:25 halstead: do you have time/access to look at what's going on with the OE mailing list server? Feb 07 17:39:49 oh wait, I think it's ltg Feb 07 17:44:29 yeah, I emailed pb and florian Feb 07 17:44:42 Crofton|work: ok, thanks Feb 07 18:30:49 Its lovely and quiet :) Feb 07 18:31:06 If the autobuilder wasn't at red, I could enjoy it... Feb 07 18:35:52 bluelightning, Yeah it's linuxtogo so I can't help. Feb 07 18:43:43 halstead: ok, no worries... I understand the appropriate parties have been informed Feb 07 19:13:30 RP: rose er blue tinted glasses... invest in some :) Feb 07 19:36:34 rburton: :} let me check if it bounced. :} Feb 07 19:42:53 zecke: mail machine is down Feb 07 19:59:06 rburton: thanks, I meanwhile disabled installing dbus and disabled the systemd-logind.service as I don't want to run a dbus daemon Feb 07 20:17:10 zecke: feel free to send a packageconfig to turn off dbus Feb 07 20:19:47 rburton: I am not sure how to do it in a clean way. Feb 07 20:20:31 zecke, http://git.openembedded.org/meta-openembedded/commit/?id=2248f8557e9b741bbe1417f128fd35fc51013d33 Feb 07 20:21:26 ah, it's not a configurable build dependency Feb 07 20:21:45 fair enough, that's your hack then :) Feb 07 20:22:47 rburton: for the next danny merge, will you be picking up http://thread.gmane.org/gmane.comp.handhelds.openembedded.core/33221 Feb 07 20:23:36 denix: when it's in master, yes Feb 07 20:23:44 now to cook Feb 07 20:24:25 nice, he quits... Feb 07 20:24:28 http://cgit.openembedded.org/openembedded-core/commit/?id=871549996cfcaf860083d867eb6a9522f4407cd4 Feb 07 20:34:41 denix: ah, it landed. clearly my master fetch is stale :) Feb 07 20:35:33 rburton: yes, thanks Feb 07 20:38:25 denix: http://cgit.openembedded.org/openembedded-core-contrib/commit/?h=ross/danny-next&id=f38eac955d4a4efb1d68a9dd92a470d7f061a8cc Feb 07 20:39:17 rburton: thanks again! when will it be on main oe-core/danny branch? Feb 07 20:39:54 denix: i suspect the autobuilders are going to be busy tonight with master, but hopefully in the next day or so. annoyingly freescale and danny don't like each other at the moment Feb 07 20:41:13 Crofton|work: ah thanks! Feb 07 21:02:19 Crofton|work: how do I use PACKAGECONFIG from my local.conf? Feb 07 21:03:21 PACKAGECONFIG_pn-gnuradio =".... Feb 07 21:03:25 something like that Feb 07 21:03:46 #PACKAGECONFIG_pn-gnuradio = "qtgui uhd" Feb 07 21:04:48 okay, then in the obvious way. thanks Feb 07 21:05:02 :) Feb 07 21:05:26 PACKAGECONFIG is evil, but I was tired of people hacking at the recipe based on their needs :) Feb 07 21:05:43 I need to fix some of the RDEPENDS though :) Feb 07 21:40:43 hi pros, I update to poky master today, and got kernel compilation error, could anyone shed some lights? Feb 07 21:41:10 GEN /home2/reeve-ws/yocto-master/build/tmp/work/rp-poky-linux/linux-yocto/3.4.28+gitAUTOINC+f697e099bc76d5df3a307a5bc0cc25021dd6dfe0_13809f2cfd9be0ce86bd486e1643f9b90bed6f4f-r4.3/linux-rp-standard-build/Makefile | scripts/kconfig/conf --silentoldconfig Kconfig | | scripts/kconfig/conf --silentoldconfig Kconfig | make[2]: *** No rule to make target `zImage'. Stop. | | make[2]: *** No rule to make target `zImage'. Stop. | mak Feb 07 21:43:50 could anyone help a bit? Feb 07 21:53:28 reeve, That last successful master build on the autobuilder was from commit 1ef926cf7. Perhaps you would have more luck stepping back to that rev? Feb 07 21:54:11 halstead, thanks. Is that the commit of poky? Feb 07 21:54:28 reeve, Yes.http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=1ef926cf788359b9845394bf95e298b7fcff4910 Feb 07 21:54:58 halstead, thanks for the hint, let me give it a try Feb 07 22:45:36 i have 2 recipes of the same project one with git as PV and other as 1.0 as PV Feb 07 22:45:54 how do I tell bitbake to ignore the git version? Feb 07 22:46:00 i just don't want to use PREFERRED_VERSION here Feb 07 22:46:27 what's wrong with preferred version? Feb 07 22:46:44 you can always use bbmask if you have to, or adjust the recipe to set DEFAULT_PREFERENCE = "-1" or similar Feb 07 22:46:50 depends on what you're trying to achieve Feb 07 22:46:54 the latter sounds like it might be what you want Feb 07 22:48:48 kergoth: i want bitbake to use my _git recipe only when I specify that via env variable, something like that Feb 07 22:49:56 set DEFAULT_PREFERENCE = "-1" in the git recipe, that'll make it not default unless the user specifies it in the config Feb 07 22:50:16 thanks Feb 07 22:50:52 np **** ENDING LOGGING AT Fri Feb 08 02:59:59 2013