**** BEGIN LOGGING AT Fri Nov 22 03:00:00 2013 Nov 22 09:03:18 hi Nov 22 09:05:05 in my recipe a multiple files are shipped, is there a way not to ship one of the files using a .bbappend? Nov 22 09:07:31 wfailla: yes. you can make do_install_append() and remove the files you don't want to ship from $D Nov 22 09:09:14 ndec: so it will be installed in the bb file and later removed in the bbappend ? Nov 22 09:09:25 yes. Nov 22 09:09:36 cool thx for the quick response Nov 22 09:09:37 but it will not be there in the resulting pacakge. Nov 22 09:09:53 well thats what i want Nov 22 09:50:40 morning all Nov 22 09:59:18 morning Nov 22 11:30:36 if I do 'bitbake python' and create ipks repo - will I have 'python-modules' as well??? Nov 22 11:33:03 git grep for 'python-modules' in poky gives only one hit in packagegroup-core-lsb Nov 22 11:33:24 I can do IMAGE_INSTALL += 'python-modules' - just wondering to create ipk Nov 22 11:44:00 Krz-: python-modules comes from the python recipe yes Nov 22 11:50:14 bluelightning: how is that there is nothing about that mentioned about python recipe? Nov 22 11:51:14 Krz-: it is, it's just referred to as ${PN}-modules there Nov 22 11:54:10 bluelightning: yeah... in python-2.7-manifest.inc very obscure Nov 22 11:54:44 unfortunately it has to be that way or things like nativesdk and multilib can't work Nov 22 11:55:03 we are developing tools to make it easier to find out such information, e.g. toaster Nov 22 11:55:35 bluelightning: clanton still on 1.4.2, no one knows when we switch to 1.5 Nov 22 11:59:55 Krz-: actually, you can find out the recipe providing a package in dylan by doing: find tmp/pkgdata -name | xargs grep PN Nov 22 12:05:56 bluelightning: that's cool - thanks for advice Nov 22 13:12:32 jackmitchell: hi. i just saw an issue with the json-c change, specifically the config.status removal; rm failed since config.status didn't exist. it's done in a do_configure_prepend, but i wonder if it wouldn't be better to do it in a do_unpack_append and/or doing rm -f? i've prepared a patch, but wanted to hear your thoughts first. Nov 22 13:15:46 zibri: that package has been nothing but problems, if the config.status sometimes doesn't exist then I have no issues with you proposing a patch to rm -f it Nov 22 13:16:14 we'd typically use rm -f in this situation Nov 22 13:16:47 the purpose of the prepend is to remove it because it was included in upstream's tarball, right? in that case, wouldn't it be better to add it to do_unpack_append instead? Nov 22 13:16:59 ok, one of the main reasons I used plain rm, is so that it would flag in the next versions when (hopefully) config.status won't be packaged Nov 22 13:17:12 and then we wouldn't be left with a useless -prepend Nov 22 13:19:39 zibri: I think that sounds reasonable Nov 22 13:19:56 zibri: we do normally do it in configure; in any case do_unpack is a python function Nov 22 13:20:33 bluelightning: ah, good point. i'll just change it to rm -f, keeping it in do_configure_prepend Nov 22 13:20:37 thanks Nov 22 13:41:01 hello Nov 22 13:42:30 sorry to bother you, but if someone can give some tips Nov 22 13:43:11 I'm new to yocto, and I'm using it to create a distribution to run on a BeagleBoard Nov 22 13:44:12 generated files include a zImage file, not an uImage Nov 22 13:44:43 how can I obtain the uImage one Nov 22 13:44:45 ? Nov 22 13:45:03 I've tried adding a modification to my local.conf file Nov 22 13:45:36 KERNEL_IMAGETYPE = "uImage" Nov 22 13:45:57 but I still obtain the uImage Nov 22 13:46:17 can anyone give me a link or the beginning of a solution? Nov 22 14:02:47 isiroi: I'd suggest checking whether your setting has taken effect with: bitbake -e | grep ^KERNEL_IMAGETYPE= Nov 22 14:28:25 @bluelightning: it seems it has not been taken into account, I've no output after typing your command Nov 22 14:29:09 isiroi: er, you should get some output... Nov 22 14:29:13 should I modify KERNEL_IMAGETYPE inside the local.conf file or anywhere else ? Nov 22 14:29:38 isiroi: if you do bitbake -e | less do you get the proper list of variable values or an error? Nov 22 14:31:02 oops! I've an error because i'm running bitbake in another terminal Nov 22 14:31:19 ERROR: Only one copy of bitbake should be run against a build directory Nov 22 14:32:23 right, you can't run two copies simultaneously - I guess you are in the middle of a build? Nov 22 14:35:38 I've stop the other process Nov 22 14:35:40 and now Nov 22 14:35:51 the reult of the previous command is Nov 22 14:35:55 KERNEL_IMAGETYPE="zImage" Nov 22 14:36:34 so, do you think a layer is overrwriting my local.conf file? Nov 22 14:39:40 isiroi: I don't think so, if it were you'd see it set to uImage Nov 22 14:41:23 the last two lines of my conf/local.conf file are Nov 22 14:41:28 isiroi: oh wait, I misread Nov 22 14:41:32 INHERIT += "rm_work" Nov 22 14:41:33 KERNEL_IMAGETYPE = "uImage" Nov 22 14:41:36 isiroi: yes, it looks like it is Nov 22 14:42:50 isiroi: if you do bitbake -e | less and search for ^KERNEL_IMAGETYPE (using the / key) you should be able to see how the variable is being set Nov 22 14:43:12 I'm searching ... Nov 22 14:45:37 hello, I'm new to yocto and trying to get python-opencv package installed on my wandboard Nov 22 14:46:27 it's set just one type Nov 22 14:46:33 *time Nov 22 14:46:51 I've got PACKAGE_INSTALL += "opencv" but that doesn't seem to install the python bindings for opencv Nov 22 14:47:04 but Nov 22 14:47:19 there is some explanation Nov 22 14:47:23 and bitbake can't seem to find a recipe for "python-opencv" even though some older guides suggest that recipe exists Nov 22 14:47:31 i'm trying to read and understand Nov 22 14:48:14 ok Nov 22 14:48:20 it's set in set /home/saoud/beagleboard-dora-10.0.0/meta-yocto-bsp/conf/machine/beagleboard.conf Nov 22 14:48:40 so, I think I have to modify it from this file Nov 22 14:49:11 dear bluelightning, do you think this is the solution? Nov 22 14:49:35 if yes, I'm going to edit the file and rerun bitbake Nov 22 14:50:24 sorry, IMAGE_INSTALL += "opencv" installs opencv but without python bindings. IMAGE_INSTALL += "python-opencv" fails during bitbake with a (recipe not found) error Nov 22 14:58:11 isiroi: typically you wouldn't modify that file directly Nov 22 14:58:43 isiroi: you could use an override, e.g. KERNEL_IMAGETYPE_beagleboard = "uImage" Nov 22 14:59:40 ok Nov 22 15:00:11 isiroi: you really need to think about why you need to change that. if you change from zImage to uImage you will need to change uboot scripts too. Nov 22 15:00:27 @ndec Nov 22 15:00:33 the problem is that Nov 22 15:00:36 by default Nov 22 15:00:51 the uboot script try to load the uImage file Nov 22 15:01:19 that's what happend when I copy files to the SD and tried to boot the BeagleBoard Nov 22 15:02:03 isiroi: hmm. that's weird.... Nov 22 15:02:19 i have used the beaglebone, and it worked with zImage all the way through. Nov 22 15:02:30 @bluelightning: thank you. I'm testing and I'll give you feedback once a test it Nov 22 15:02:37 @ndec Nov 22 15:02:52 mmm Nov 22 15:03:36 it's confusing Nov 22 15:04:04 I'll test and give you feedback Nov 22 15:04:32 Hmm, docker is pretty sweet. Nov 22 15:18:38 kergoth: Did you find out what level they make assumptions about the system its being run on? Nov 22 15:19:52 Not yet, mostly just been playing with it on a desktop. Thinking about creating some images for doing yocto builds, and potentially importing a poky x86 rootfs to play with. Nov 22 15:20:01 What is xuser, and why does connman rdepend on xuser-account? Nov 22 15:20:02 it just uses lxc under the hood Nov 22 15:20:33 It feels a bit like vagrant, only a hell of a lot lighter and faster, and with use of aufs for layered images/filesystems Nov 22 15:20:52 kergoth: I was just thinking our nativesdk standalone libs would make interesting container additions Nov 22 15:21:05 Hmm, yes, indeed Nov 22 15:22:00 kergoth: Yeah, running it now to do bitbake building Nov 22 15:22:08 WarheadsSE: ah, nice Nov 22 15:22:41 have to make a new-er Dockerfile though. Getting issues with mknod & fuse in the stackbrew/ubuntu precise Nov 22 15:23:02 something changed in the last ~ 2 days that cause fuse. Nov 22 15:28:18 hey everyone. Nov 22 15:28:30 is anyone currently in here using the imx6? Nov 22 15:28:56 Like, this second? Nov 22 15:29:12 walters: is there a list of packages that install their test suite? (in the gnome-continuous manifests or something?) Nov 22 15:29:33 rburton: stuff with --enable-installed-tests basically Nov 22 15:29:55 reallife: I've got a 6q custom board here.. Nov 22 15:32:05 walters: what repo is that in now? Nov 22 15:32:18 https://git.gnome.org/browse/gnome-continuous/tree/manifest.json Nov 22 15:33:02 walters: looked so hard i missed it, thanks Nov 22 15:34:36 rburton: btw have you seen http://build.gnome.org/#/gnome-continuous/build/20131122.13 ? the application icons + screenshots are a new pretty face that Jasper implemented Nov 22 15:34:58 i love the idea that minutes after a gtk+ commit, each app in that list is started and screenshot'ed Nov 22 15:35:21 walters: ha, nice Nov 22 15:35:31 the apps themselves become tests for gtk+, and glib, etc. Nov 22 15:35:46 and compared with a reference i presume Nov 22 15:35:58 mmm, no we just check they don't core dump Nov 22 15:36:12 comparing to a reference is tricky stuff Nov 22 15:36:26 yeah the opensuse OpenQA thing does that, it's high maintenance Nov 22 15:36:29 i hope to get our QA looking at using dogtail in our automatic testing this or next cycle Nov 22 15:40:57 me again Nov 22 15:42:34 I succeded in modifuing KERNEL_IMAGETYPE, but I got an error while running compiling (when bitbake ran make uImage) Nov 22 15:43:02 ERROR: Function failed: do_compile Nov 22 15:44:23 isiroi: please pastebin (not paste) the full error Nov 22 15:47:07 what i have on screen: http://pastebin.com/q7VPGpde Nov 22 15:48:28 and what is inside the log file: Nov 22 15:48:29 http://pastebin.com/8bJ5NVFt Nov 22 16:27:13 tlwoerner: the problem was I appended jffs2 to the list in IMAGE_FSTYPES ?= "tar.bz2 ext3 sdcard" in my machine conf but that didn't work even with a clean build. I added IMAGE_FSTYPES += "jffs2" instead and that works.. Nov 22 16:49:40 hi Nov 22 16:50:03 someone know how to install midori on the yocto when i have the image Nov 22 16:50:25 i mean, to install it directly on the device and not as part of the img Nov 22 16:50:55 or someone have the webkiosko image, the ext4 part Nov 22 16:51:06 pleeease i need help with it Nov 22 16:55:20 tastycactus: :-) that was my conclusion too, but at the time i pinged you i didn't know why Nov 22 16:57:05 any help? Nov 22 16:57:14 andres____: you'd need to build an ipk. Nov 22 16:59:25 RP, is there any documentation that states that INCOMPATIBLE_LICENSE can contain wildcards (i.e. *GPLv3)? Nov 22 17:01:23 ipk, this will work on the target device? or on the pocky? Nov 22 17:03:16 jchonig: I don't think we support that, no, you'd need to list each license (and use spaces to separate them) Nov 22 17:05:16 bluelightning_ Thanks, I didn't think so and I don't see any docs that say that. Our testers are quite creative Nov 22 17:06:25 wildcards are supported. Nov 22 17:06:41 see line 276 of license.bbclas, it uses fnmatchcase() Nov 22 17:06:53 probably better to be explicit, but it does work Nov 22 17:07:12 !ad Nov 22 17:09:28 kergoth: indeed, well spotted Nov 22 17:09:32 jchonig: ^ Nov 22 17:09:39 kergoth: and it aliases fnmatchcase as fnmatch, that's.... interesting Nov 22 17:10:19 kergoth, bluelightning_ Thanks! Now I have to debug Nov 22 17:40:17 https://gist.github.com/kergoth/7603894 seem reasonable? I was surprised to see we don't have it yet Nov 22 17:41:26 kergoth: looks pretty good to me Nov 22 17:41:53 kergoth: I thought about it when I was doing the build host side testing for that file but never got around to even filing a bug Nov 22 17:42:02 anyone know how to increase your qemu disk size from a command line option? Nov 22 17:45:35 <>someone have the img of the web-kisoko? Nov 22 17:45:57 i could not gen it on pocky due a proxy and firewall Nov 22 18:02:44 I'm trying to run yocto 1.5 on a new board with core-image-minimal. It boots u-boot and the kernel ok, but then seems to hang running /sbin/init. Any ideas how to debug? Nov 22 18:03:15 I put init=/bin/sh in my kernel args and that works. I poked around in /dev and it looks ok.. Nov 22 18:03:44 I ran the getty that's in inittab from the shell and that worked.. Nov 22 18:04:16 But when I have init=/sbin/init I don't see any output after "Freeing init memory: 140K" Nov 22 18:05:48 tastycactus, as I recall, that is right around when it mounts root and runs whatever Nov 22 18:06:07 /sbin/init is really there? Nov 22 18:06:12 tastycatus: can you run init --help? Nov 22 18:06:28 Yes Nov 22 18:06:55 when init=/bin/sh that is Nov 22 18:07:40 Usage: init {-e VAR[=VAL] | [-t SECONDS] {0|1|2|3|4|5|6|S|s|Q|q|A|a|B|b|C|c|U|u}} Nov 22 18:08:02 If I do "exec /sbin/init" from the shell prompt I see no output.. Nov 22 18:08:42 what does your inittab look like Nov 22 18:08:59 /sbin/init -> /sbin/init.sysvinit Nov 22 18:10:29 inittab: http://paste.ubuntu.com/6459759/ Nov 22 18:13:45 Hmm, anyone else seen eth0 getting a link lost, then link back, every copule minutes, in qemu? Nov 22 18:13:51 connman image, sato Nov 22 18:16:02 tastyc: i don't notice anything weird. maybe your tty's are not matching Nov 22 18:17:52 When I run "/sbin/getty 115200 ttymxc1" from /bin/sh I see a login prompt.. Nov 22 18:19:12 should eclipse with yocto plugin be able to remote-debug an other arch than the local one? tcf-debugging into qemu-x86 seems to work, but into qemu-arm it fails. Nov 22 18:19:45 -> failed to get remote gdb version Nov 22 18:24:14 If I put an echo in /etc/init.d/rcS it should show on the console if it gets that far, right? Nov 22 18:34:40 LetoThe2nd, it should work Nov 22 18:35:20 Crofton|work: hmmmm Nov 22 18:36:17 Crofton|work: i'd love to offer more details, but a) the error message really did not provide more and b) i'm just rebuilding both arm and x86 qemus on latest poky to be able to really compare. Nov 22 18:36:52 I compiled hello world on an x86 desktop and ran it on an arm once Nov 22 18:37:36 the build process really looks fine. and so is running. Nov 22 18:38:04 e.g. i can launch the cross built binary via tcf on the arm qemu. but ataching gdb automagically fails. Nov 22 18:44:24 moin Nov 22 19:47:07 fray: seebs: Is it possible to set a package and all its dependencies to be built using the secondary toolchain? Nov 22 19:53:11 mtahmed: fray is away today. I don't think that's possible but what problem are you trying to solve? Nov 22 19:53:32 Following on your suggestion to just try building core-image-minimal and fix what is broken. Nov 22 19:53:48 Right now, I only know how to enable it for one package at a time but not it's dependencies. Nov 22 20:10:37 ah... can't you enable it as the default and blacklist for the kernel until we get it patched? Nov 22 20:12:18 Oh wait, I think there's a better way. Let me try that. Nov 22 20:12:34 I will have to find out the package name for the kernel. Nov 22 20:12:43 Is it just linux? poky-linux? Nov 22 20:14:02 I think it depends, in our tree it's linux-windriver. Nov 22 20:14:48 linux-yocto for oe-core. Nov 22 20:15:19 I think it's linux-yocto for oe-core as well. Nov 22 20:15:25 I mean poky. Nov 22 20:22:16 * zedd_ glares at zeddii Nov 22 20:24:54 That worked. :p Nov 22 21:14:03 kergoth, bluelightning_ I think I have figured it out. Use of wildcards in INCOMPATIBLE_LICENSE is not compatible with WHITELIST processing Nov 22 21:16:45 ah, interesting Nov 22 21:17:01 not too surprising, but good to know. perhaps we should kill the wildcard support entirely Nov 22 21:17:50 i.e. whitelist.extend() around line 546 in base.bbclass won't expand *GPLv3 the same as "LGPLv3 GPLv3" Nov 22 21:18:16 I'm in favor of killing it, we don't document it in our front-end Nov 22 21:19:44 I'll file an issue Nov 22 21:21:31 agreed Nov 22 21:21:39 better to be explicit than implicit anyway Nov 22 23:03:31 hello need help : poky dylan building meta-virtualization Nov 22 23:03:34 Error: kernel-module-kvm-intel not found in the base feeds (crystalforest_gladden x86_64 noarch any all). Nov 22 23:03:53 My board is based on Intel crystalforest_gladden Nov 22 23:05:38 Also this is my first time on an IRC Nov 22 23:06:32 This is my bblayers.conf Nov 22 23:06:55 # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf Nov 22 23:06:56 # changes incompatibly Nov 22 23:06:56 LCONF_VERSION = "6" Nov 22 23:06:56 BBPATH = "${TOPDIR}" Nov 22 23:06:56 BBFILES ?= "" Nov 22 23:06:56 BBLAYERS ?= " \ Nov 22 23:06:57 /home/ambalakkat/projects/yocto/git/poky/meta \ Nov 22 23:06:57 /home/ambalakkat/projects/yocto/git/poky/meta-yocto \ Nov 22 23:06:58 /home/ambalakkat/projects/yocto/git/poky/meta-yocto-bsp \ Nov 22 23:06:58 /home/ambalakkat/projects/yocto/git/poky/meta-openembedded/meta-oe \ Nov 22 23:06:59 /home/ambalakkat/projects/yocto/git/poky/meta-openembedded/meta-networking \ Nov 22 23:06:59 /home/ambalakkat/projects/yocto/git/poky/meta-intel \ Nov 22 23:06:59 /home/ambalakkat/projects/yocto/git/poky/meta-crystalforest-gladden \ Nov 22 23:07:00 /home/ambalakkat/projects/yocto/git/poky/meta-virtualization \ Nov 22 23:23:53 Hello Bala - it is late afternoon Friday on the US west coast, so responses may be slow. You might have better luck asking on the mailing list, particularly if you need to post code, which is not usually done on IRC. Nov 22 23:24:38 For your particular issue I think you might have the best luck posting to the meta-intel list, which you can find here: http://lists.yoctoproject.org You'll need to subscribe to the list before posting. hope that helps Nov 22 23:27:24 Thanks a lot jefro Nov 22 23:28:02 I realized regarding the code paste, after :-). **** ENDING LOGGING AT Sat Nov 23 02:59:59 2013