**** BEGIN LOGGING AT Tue Jun 05 03:00:15 2018 Jun 05 04:27:17 Hi All, Even though my BB_NUMBER_THREADS is set as 8/16, Most of the time number of paralled threads running is less than 3/4. Can anyone help me in this? Jun 05 04:38:41 completely depends on the dependency graph and what you're building Jun 05 04:38:45 there are always bottlenecks at times Jun 05 04:39:06 there are tools/scripts available to use bootchart to graph the task execution to help identify such Jun 05 04:41:35 Got the buildstats but working with pybootchartgui to create a graph. Apparently pybootchart says "Parse error: empty state, does not contain a valid bootchart" Jun 05 04:42:19 This slow performance actually occured after migrating to yocto2.1 from 1.6. Jun 05 04:45:24 If I start build for both 2.1 and 1.6 at the same time, 2.1 will be behind by atleast 2000 tasks. Jun 05 04:46:00 Any idea from your expierence what could have caused this? Jun 05 05:00:03 New news from stackoverflow: Adding Python-twisted in yocto build Jun 05 10:00:18 hello, I can see that perl gets built when I build my image, and I cannot figure out why...I checked bitbake -g perl -u taskexp and nothing depends on any perl task (I don't mean perl-native but the one for the target) Jun 05 10:00:36 are there other means to investigate why it is built ? Jun 05 10:09:14 well its probably because you've a recipe being built with a ptest package that depends on perl modules Jun 05 10:53:53 Help needed to integrate my own github linux kernel in yocto build for my board : LIC_FILES_CHKSUM is there anything to take care ? Jun 05 10:54:31 linux-board: The LIC_FILES_CHKSUM does not match for file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7 linux-board: The new md5 checksum is bbea815ee2795b2f4230826c0c6b8814 Jun 05 10:54:42 change the checksum? Jun 05 10:54:48 its telling you what to do... Jun 05 10:55:13 even after modifying the checksum in linux-board_git.bb it is throwing error Jun 05 10:56:16 it is referring to poky/scripts/lib/recipetool/create.py md5sums from function "get_license_md5sums" Jun 05 10:56:58 how can i make yocto build to refer my checksum instead of one in create.py Jun 05 10:57:30 the recipe has a LIC_FILES_CHKSUM in Jun 05 10:57:41 if its not being used then the recipe must inherit or incude another file which is overwriting it Jun 05 11:01:06 i have included LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" in my linux-board_git.bb Jun 05 11:03:18 thanks rburton i think im making some mistake in my bb file will check it Jun 05 11:15:35 Hello all, Jun 05 11:15:59 Is it possible to force wic to use 512B alignment (and NOT the default 1KiB one) ? Jun 05 11:24:35 lukma: you can change it in the wks file that you are using Jun 05 11:24:50 use 'wic help kickstart' for more details Jun 05 11:30:10 I didn't notice that you had mentioned bytes. It's in multiples of KBytes. Jun 05 11:30:40 anujm: I would like to have --alignment = 512 B Jun 05 11:30:48 as by default it is 1 KiB Jun 05 11:31:52 The *.wic file accepts the smallest alignment of 1 KiB Jun 05 11:35:45 I can write my own XXX-image.bbclass and use oldschool "dd" and friedns Jun 05 12:38:51 rburton: any idea why oe-selftest failed? The _selftest patch looks likely but the readonly rootfs issue looks odd though :/ Jun 05 12:44:51 Hello guys ! After updating my Ubuntu 16.4 I get this error for all fetch function : fatal: the '--set-upstream' option is no longer supported. Please use '--track' or '--set-upstream-to' instead. ... any idea to fix that ? thx :) Jun 05 13:08:57 PinkSnake: do you happen to run some kinda ancient poky state? Jun 05 13:09:12 PinkSnake: IIRC, this was already fixed in about every branch like a year ago Jun 05 13:10:55 :LetoThe2nd we have an old poky distro on our integration server :( Jun 05 13:11:11 PinkSnake: time to look at upstream then to cherry-pick the patc Jun 05 13:11:53 :LetoThe2nd do you think it's an issue with my current version of git ? Jun 05 13:13:00 PinkSnake: partially. the behaviour of git changed, and the fetcher was modified accordingly. like i said, look at the poky upstream for your release/branch and just cherry-pick it Jun 05 13:13:40 LetoThe2nd ok i'm going to make a try ! thx for info :) Jun 05 13:28:54 What would be the best way to tweak image generated by wic ? Jun 05 13:29:20 The idea would be to dd some not 1KiB aligned data to created image Jun 05 13:30:41 rburton: ping Jun 05 13:30:50 rburton: is "qemu: only build SDL UI if X11 is enabled Jun 05 13:31:08 " still needed with the 2.12.0 upgrade which switches to use sdl2 by default? Jun 05 13:32:20 https://patchwork.openembedded.org/patch/151315/ builds for me fine without X11 in DISTRO_FEATURES Jun 05 13:32:48 99% sure but i can replicate the failure case to check Jun 05 13:50:27 :LetoThe2nd after updating poky on the top of krogoth branch and everything works :) thank you ! Jun 05 13:53:52 Hello, I'm new here in Yocto. I have created a default image for Digi's ConnectCore 6UL SBC Express (ccimx6ulstarter). Now, I want to add Curl package to the image, so I have added IMAGE_INSTALL_append = " curl" to conf/local.conf. Jun 05 13:54:10 Do I need to recompile the whole image again? Jun 05 13:54:45 Yes, although a lot of that will come from sstate cache Jun 05 13:55:14 so, I need to run "bitbake core-image-base" again? Jun 05 13:55:14 So you won't technically recompile the entire thing again Jun 05 13:55:17 Yes Jun 05 13:55:32 ok, thanks neverpanic Jun 05 13:56:00 uniqdom: a few things to better sort out really early - tinkering with image contents through local.conf is a bad practise and will make things hard to reproduce. try to create an own image recipe as soon as possible Jun 05 13:57:18 LetoThe2nd: Thanks, I will read about it. Jun 05 13:57:38 uniqdom: and if you totally absolutely think you have to stick with local.conf, then add stuff like that: https://www.yoctoproject.org/docs/latest/mega-manual/mega-manual.html#var-CORE_IMAGE_EXTRA_INSTALL Jun 05 13:57:46 I've made that mistake before :) Jun 05 13:57:56 quick hacks disappear from builds :) Jun 05 13:58:17 Crofton|work: about everybody has, some time. Jun 05 13:58:36 but i try to tell people early, so they can't comlain afterwards that they haven't been warned Jun 05 13:59:02 heh Jun 05 14:00:34 Crofton|work: you mean, use CORE_IMAGE_EXTRA_INSTALL instead of IMAGE_INSTALL_append? Jun 05 14:01:05 We mean, do not tweak image contents from local.conf Jun 05 14:01:23 unless you are prepared to lose your work :) Jun 05 14:01:39 * Crofton|work once lost an sdk on a productin image that way Jun 05 14:02:07 but yes, CORE_IMAGE_EXTRA_INSTALL is less error prone for such *temporary* changes Jun 05 14:04:30 so many temporary changes ship and when the build is moved to another mcahine the localconf changes are lost :) Jun 05 14:06:58 Anyone seeing this error with perl-native: ./miniperl: .../build/tmp/sysroots-uninative/x86_64-linux/lib/libcrypt.so.1: version `XCRYPT_2.0' not found (required by ./miniperl) Jun 05 14:32:15 #worldchat Jun 05 14:44:05 it has been 8 weeks since anything has been merged to meta-java. has anyone heard from any of the maintainers? Jun 05 14:49:03 marka: we're wondering what's up with Maxin as well, he's been missing for some weeks Jun 05 14:50:29 Is there a call in ~10 minutes, or is my calendar crazy? Jun 05 14:50:49 there is Jun 05 14:50:54 via zoom Jun 05 14:50:55 Thanks Jun 05 14:51:42 kanavin: interesting Jun 05 14:52:12 4 maintainers listed in the README, odd that all 4 would be MIA Jun 05 14:52:28 https://zoom.us/j/990892712 for anyone else that needs it handy Jun 05 14:52:30 marka: I'd suggest you email them Jun 05 14:52:39 I was thinking about it Jun 05 14:52:46 figured I would poll here first Jun 05 14:53:00 marka: I know that Mario has switched jobs and is no longer working on meta-java. He should probably be removed, but feel free to ask him directly. Jun 05 14:53:40 No sure if the email address listed even still works Jun 05 14:54:05 I will email the list and include the 4 email addys from the README on the TO list Jun 05 14:54:21 we can sort it out as the responses roll in Jun 05 14:54:38 after 2 months of silence it is most likely best to do something Jun 05 14:54:56 there are only a dozen pull requests pending but that # will only go up Jun 05 14:55:58 YPTM: is starting in a Zoom Meeting: https://zoom.us/j/990892712 Jun 05 14:56:08 YPTM: Stephen Joined Jun 05 14:56:26 TPTM: armin in on Jun 05 14:58:21 YPTM: good morning, Nick from Singlewire is on the call Jun 05 15:00:00 YPTM: Richard joined Jun 05 15:00:09 YPTM: Scott from Konsulko joined Jun 05 15:00:28 YPTM Alex joined Jun 05 15:00:28 YPTM: Joshua Watt here Jun 05 15:02:04 YPTM: Denys joined Jun 05 15:02:29 YPTM: Randy MacLeod joined Jun 05 15:02:55 YPTM: Tim joined Jun 05 15:03:22 YPTM: Michael here. Jun 05 15:05:19 YPTM: David R here Jun 05 15:06:55 https://docs.google.com/document/d/1Lr8KgkmmCZ84RF_ThIwnT3WWxMv_tUsHkpRV5PXTd0s/edit?usp=sharing Jun 05 15:08:14 YPTM: Pascal joined Jun 05 15:09:14 JPEW_: thanks Jun 05 15:09:39 does Yocto deals with the dependencies when adding a package to the image? Jun 05 15:10:07 uniqdom: yes Jun 05 15:10:12 I have added curl, but I can't see libcurl intalled (maybe it wasn't a real dependency) Jun 05 15:12:43 Ive been trying to join but I think I have the wrong bridge number Jun 05 15:13:05 aehs29_: It moved: https://zoom.us/j/990892712 Jun 05 15:13:33 https://www.yoctoproject.org/public-virtual-meetings/ Jun 05 15:13:56 btw, zoom is so not helpful! Jun 05 15:13:57 /usr/lib/libcurl.so.4 it's there... so it was installed. Jun 05 15:14:47 denix: Ya... I noticed. I couldn't find that webpage on the site when I tried to find it Jun 05 15:15:01 JPEW_: denix thanks Jun 05 15:15:04 neverpanic: as you predicted I got a bounce back from mario's email addy Jun 05 15:15:14 YPTM: Alejandro joined Jun 05 15:15:28 so down to 3 possible maintainers for meta-java Jun 05 15:19:32 YPTM: Trever do you have the link to the document? If so, can you post it on IRC? Jun 05 15:19:39 In case anyone is having trouble find it, trevor's email subject line is: [Openembedded-architecture] combining trusted/security layers Jun 05 15:21:01 if you're not subscribed yet: http://lists.openembedded.org/pipermail/openembedded-architecture/2018-May/000762.html Jun 05 15:24:32 YPTM: ross joined, sorry i'm late Jun 05 15:25:35 TPTM: tlwoerner is here (trevor) Jun 05 15:26:25 https://github.com/gmccollister/meta-ima Jun 05 15:28:36 https://github.com/01org/meta-security-isafw Jun 05 15:29:42 moto-timo: thanks Jun 05 15:29:51 https://github.com/intel/meta-intel-iot-security Jun 05 15:34:40 http://git.yoctoproject.org/cgit/cgit.cgi/meta-selinux Jun 05 15:46:06 marka: https://elinux.org/images/d/d4/Goulart.pdf last slide Jun 05 15:46:17 Invitation Age of sail at #AdventuresofChat Jun 05 15:48:43 neverpanic: I see Jun 05 15:49:25 he took the BMW "carit" to move to a new position Jun 05 15:49:45 I wonder if you get a bimmer as a signing bonus Jun 05 15:49:46 does anyone have a link to the update layer from pengutronix? meta-rock? Jun 05 15:50:23 its not in the layer index ;/ Jun 05 15:50:42 sjolley: https://docs.google.com/spreadsheets/d/1AlH0Q0lGC3idwyFLSt7df09sIXkBuv191fVESUA-oQY/edit?usp=sharing Jun 05 15:51:11 who is the OE/Yocto person at pengutronix? Jun 05 15:51:51 is this the meta-rock that people were talking about: https://github.com/webOS-ports/meta-rock Jun 05 15:52:23 https://github.com/rauc/meta-rauc Jun 05 15:52:30 neverpanic: I have updated the thread with Mario's new addy, thanks for the pointer Jun 05 15:52:30 ah, thx moto-timo Jun 05 15:52:36 moto-timo: ah Jun 05 15:52:38 YPTM: dl9pf here. Jun 05 15:54:55 YPTM: tpm blog start: http://twoerner.blogspot.com/2018/01/rpi-and-tpm-and-dt-part-1-background.html Jun 05 15:55:17 Invitation Age of sail at #AdventuresofChat Jun 05 15:59:32 YPTM: Stephen left the meeting Jun 05 16:01:33 OTA updates: Jun 05 16:01:35 https://github.com/mendersoftware/meta-mender Jun 05 16:01:45 https://github.com/rauc/meta-rauc Jun 05 16:01:57 https://github.com/advancedtelematic/meta-updater Jun 05 16:37:24 JaMa: building nativesdk-qemu with mingw sdk fails as it tries to build nativesdk-libxdmcp which doesn't like linking against msys Jun 05 16:41:38 ah found a fix Jun 05 16:42:15 not that x11 support is that useful in a windows qemu though Jun 05 17:02:27 New news from stackoverflow: How can I install git on unix using wget? Jun 05 17:05:43 ...yeah, 'cause that has a lot to do with yocto specifics. Jun 05 17:29:52 * kergoth shakes head Jun 05 17:32:23 * LetoThe2nd commences headbanging! \m/ Jun 05 17:33:43 added an 'edit' subcommand for recipetool that sspawns $EDITOR on the recipe and all appends, locally, think that'd be useful enough to go to oe-core? i find i sosmetimes cheat and ues recipetool newappend -we to do it Jun 05 17:34:03 gah, the `s` on this keyboard is screwing up Jun 05 17:34:04 actually, for reasons unknown people seem to have super weird ideas about yocto. guy at conf here asked me "what, this is a tool to create a special linux distro? not something like mongooseOS?" and i was like "WHAT?!?" Jun 05 17:35:06 to be fair, it is often ued to create and maintain special linux distros, but.. Jun 05 17:35:27 hrhrhr Jun 05 17:43:25 behanw: tomorrow i'll finally blast some weirdos who want to learn about yocto with the german version of ypdd :) Jun 05 17:48:23 LetoThe2nd: Nice. I'm teaching a 4-day YP course this week in SFO. Jun 05 17:49:20 behanw: what is really cool that "only" 7 people registered, which means that i actually can properly take care of questions. Jun 05 17:55:09 behanw: actually, do you want the resulting slides (as they are directly based off your stuff (yet i doubt that they would be of good use for the rest of the world) Jun 05 18:23:26 LetoThe2nd: If you've made updates, sure. Jun 05 18:26:15 behanw: um... they are completely translated to german Jun 05 18:26:35 Then probably not worth it. ;) Jun 05 18:27:15 LetoThe2nd: You offered, so I figured they might be something worth having. But my German is non-existent sadly. :) Jun 05 18:28:12 yeah thats why i'm asking. if they still were in english, i would have just fed them back. Jun 05 18:47:23 kergoth: that recipetool patch sounds good to me Jun 05 19:24:39 rburton: are you the one merging lately? Jun 05 19:26:13 aehs29_: i was on holiday until yesterday but i do a lot of merge prep yes Jun 05 19:26:26 but i was away for a week and rp didn't have any hardware, so the queue stalled Jun 05 19:29:33 rburton: oh I see, good to have you back Jun 05 19:31:02 rburton: haha I just hope my newlib patches are in that queue Jun 05 19:52:43 aehs29_, your newlib patches are now old, we need newnewlib patches ; ) Jun 05 21:00:02 aehs29_: your newlib stuff is on my mind and should be ok to merge IMO Jun 05 21:12:59 RP: awesome, thanks! Jun 05 21:13:48 armpit: haha its a never ending loop Jun 05 21:19:58 ... why is opkg still producing opkg-configure.service? it ends up redundant duplicating the functions of run-postinsts? last i checked, anyway Jun 05 21:20:03 am i missing something? Jun 05 21:35:37 hmm Jun 05 22:03:11 I saw some activity regarding 2.2.4 on the morty branch but there is no tag yet and I can't see anything on the wiki. Would anyone have an ETA? Jun 05 22:16:07 kergoth: there are patches on the list related to that I think Jun 05 22:18:17 ah, indeed, thanks for the pointer Jun 05 22:18:38 working through mentor's submission backlog.. haven't sent anything yet, just prepping Jun 05 22:19:13 kergoth: I was surprised we have that issue and hadn't merged it as I wanted to double check Jun 05 22:20:02 yeah, my first thought when i saw it was "i can't be seeing this right, can i?" seemed unlikely to have hung around this long :) Jun 05 22:34:59 rburton: think I understand the mystery curl-staticdev qa error :) Jun 05 22:42:50 oh yay Jun 05 22:43:51 rburton: just fired a build with some things fixed including that hopefully **** ENDING LOGGING AT Wed Jun 06 03:00:10 2018