**** BEGIN LOGGING AT Fri Sep 22 03:00:01 2017 Sep 22 03:24:38 bodangly: what errors do you se Sep 22 03:24:40 e Sep 22 03:26:56 defaultServiceProvider::requestService(): no service found for - "org.qt-project.qt.mediaplayer" Sep 22 03:27:10 I am thinking the gstreamer plugin didn't get built Sep 22 03:27:22 so I made a patch to the plugins.pro file to force it Sep 22 03:28:31 is there a way to see all output from the configure step as it runs? I see the log.do_configure file in the tmp/work dir, but it seems truncated to me Sep 22 03:41:14 https://community.nxp.com/docs/DOC-330047 apparently I didn't RTFM, missed this doc Sep 22 03:41:20 lets see if it ends up helping... **** BEGIN LOGGING AT Fri Sep 22 06:00:49 2017 Sep 22 07:30:03 there is also /tmp/work/XXX/recipe/version/build/config.log Sep 22 07:30:19 can I generate an SDK with different architectures? I want to have the target device ARM libraries but also x86 libraries to have an easy way to setup a developer machine... Sep 22 08:21:36 hi all, is anyone doing yocto-based stuff for allwinner a10/a13/a20/r8? how's support? Sep 22 08:22:11 i see the meta-sunxi BSP on openembedded Sep 22 09:26:05 RP: rburton: that row of purple on the .io cluster is intentional, no need to panic Sep 22 09:37:56 joshuagl: thanks, /me notes not to panic Sep 22 09:38:55 PANIC! Sep 22 10:12:35 I would like to turn my linux SBC into a USB video class device so that I can connect to the PC USB port and see video streaming from that board. Any idea on how I can achieve this? Sep 22 10:13:14 hi. i'm banging my head on this one. i have written a recipe for a python application, but it refuses to build because of an import error. it imports another module that i'm sure is installed, and i've added that recipe to RDEPENDS. any ideas? Sep 22 10:16:45 jomag: You probably need to depend on the native version since python during the build would be native, not target? Sep 22 10:18:01 hm, ok? how would i do that? and the python package the import fails on is universal... Sep 22 10:25:15 my recipe inherits setuptools3, which i think adds native python to rdepends Sep 22 10:25:46 uhm, DEPENDS that is. Sep 22 10:31:58 i guess the packages required at build time should be placed in .../tmp-glibc/sysroots/x86_64...linux/usr/lib/python3.5/site-packages/, but it is mostly empty except for setuptools Sep 22 10:32:33 i got the path by starting a devshell for my recipe and checking sys.path in the python interpreter Sep 22 10:56:07 jomag: if you need to run stuff installed there then inherit python3native in your recipe Sep 22 10:56:45 rburton i think that is done automatically by inheriting "setuptools3" Sep 22 10:58:29 ah yes. been meaning to make that not happen :) Sep 22 10:58:57 * rburton didn't see the problem earlier so sort of guessing Sep 22 11:02:47 here's the recipe: http://paste.debian.net/987238 Sep 22 11:07:35 Do I have to download bitbake from openembedded git repo and add it to Poky? Sep 22 11:07:56 User12345678: poky already contains bitbake. Sep 22 11:08:03 User12345678: no, poky includes bitbake. maybe you should read the quick start Sep 22 11:08:11 jomag: what is it looking for? Sep 22 11:08:28 User12345678: poky is basically correlating bitbake and oe-core versions plus some special sauce Sep 22 11:08:29 ok Sep 22 11:08:30 it's fails importing "prettytask" Sep 22 11:08:43 because you don't depend on the native form Sep 22 11:09:11 rburton how would i do that? Sep 22 11:09:13 if you need to run python code that does import prettytask at build time, you need to depend on python3-prettytask-native Sep 22 11:09:39 (imagine the module had built code in, you can't run the target code at build time) Sep 22 11:10:11 rburton and it's strange, because i have a much bigger python app that imports lots of third party modules, but the recipes are more or less identical, except that RDEPENDS includes more recipes in that one Sep 22 11:10:35 Sorry if I ask many dumb questions. I'm still new to Yocto and company Sep 22 11:10:45 jomag: its probably finding them on the host? or they're coming in indirectly. Sep 22 11:10:51 rburton oh. i think i know what's happening. setup.py imports __version__ from the module, which cause this to happen! Sep 22 11:11:45 User12345678: asking a dumb question is totally fine. we usually just don't like if a person asks the same dumb question a third, fourth and fifth time because of lazyness or because he/she didn't like the given answer :-) Sep 22 11:29:44 hi how cani mount Disk /dev/mtdblock2: 2129 MB, 2129657856 byte ? Sep 22 11:30:47 pagios: depends on the filesystem in use Sep 22 11:31:47 hello, when using the wic tool and trying to create four partitions, the fourth partition becomes an extended partition... how can I tell wic via kickstart file to make all four partitions primary partitions? Sep 22 11:32:04 given the size, its probably either ubi (when using raw nand) or something ext, when using an emmc Sep 22 11:32:15 LetoThe2nd, ubi it reads Sep 22 11:33:13 pagios: here you go: http://www.linux-mtd.infradead.org/faq/ubifs.html#L_mount_ubifs Sep 22 12:57:22 RP: rburton: I've fixed the convenience dropdown issues you reported, thanks Sep 22 12:57:54 joshuagl: thanks! Sep 22 13:01:40 awesome Sep 22 14:17:47 Is there a difference between MACHINE = "stout" and MACHINE ??= "stout" in the local.conf file? Sep 22 14:21:14 User12345678, http://www.yoctoproject.org/docs/2.3.1/bitbake-user-manual/bitbake-user-manual.html#setting-a-weak-default-value Sep 22 14:21:45 User12345678: not other than if MACHINE is set anywhere else the MACHINE ??= value is ignored Sep 22 14:28:50 I see! thanks Sep 22 14:30:23 User12345678: if you start dealing with the different levels of default values, I highly recommand learning about "bitbake -e" Sep 22 14:31:16 Ok. Lots to learn Sep 22 14:35:57 How di I find the kernel name for my board so I can bitbake -c compile? Sep 22 14:36:13 *how do Sep 22 14:37:13 User12345678: bitbake virtual/kernel Sep 22 14:38:27 Thanks. Sep 22 14:39:16 User12345678: if I understand correctly, that will build the preferred kernel for the machine selected in local.conf Sep 22 14:39:41 I see Sep 22 14:40:42 Can there be a selection of kernels to built? Sep 22 14:42:39 User12345678: as far as I understand, yes... but I never had to use the functionality myself Sep 22 14:43:23 I just built the default one provided by the machine configuration of my vendor BSP Sep 22 15:07:15 zeddii, are we going to add 4.13 kernel ? Sep 22 15:59:51 RP, morty qemu kernel updates are done and in -next. locally boot tested. working on bsp updates today. Sep 22 16:00:26 I plan on hitting the AB this tonight or sometime this weekend if there is some idle time Sep 22 16:02:34 armpit: cool, I think there should be time Sep 22 16:03:58 RP: you can unbolt the go fixes I sent, Matt has done parallel patches which are better, I am testing them right now Sep 22 16:05:13 khem: ok, good. They seemed to cause build issues :/ Sep 22 16:05:33 ah, no-go Sep 22 16:06:05 armpit: not sure I can take things like that :) Sep 22 16:08:08 go no-go Sep 22 16:08:31 RP: I will send Matt's patches once I have verified them here on mips and other arches Sep 22 16:10:13 khem: fair enough, thanks Sep 22 16:59:28 What is bitbake -c fetchall? Is it optional step? Sep 22 17:00:17 User12345678: its optional Sep 22 17:00:59 What will happen if I skip it ? Sep 22 17:01:10 User12345678: its usually skipped Sep 22 17:10:41 where is the window manager specified (e.g., matchbox)? Sep 22 17:14:53 halstead: master-next should be good for a run when you're done... Sep 22 18:28:45 RP, started. https://autobuilder.yocto.io/builders/nightly/builds/563 Sep 22 19:27:32 What is the relationship between Yocto and OE? Same team? Sep 22 19:28:27 yocto is an umbrella project, whose build system is oe components (bitbake+oe-core) along with the poky reference distro (meta-poky) Sep 22 19:29:18 right, so suggestions for improvements to bitbake is actually more a oe matter? Sep 22 21:05:17 hi guys Sep 22 21:05:48 could anyone tell me if there is a path variable that applies to anything referenced within a .scc file? Sep 23 02:16:24 * armpit sweat a new pull down on the AB.. nice Sep 23 02:16:41 ??? s/sweat/sweet **** ENDING LOGGING AT Sat Sep 23 03:00:02 2017