Re: [yocto] meta-toolchain build errors

2016-07-01 Thread Gary Thomas
On 2016-07-01 14:21, Daniel. wrote: Did you tried "bitbake -fc cleanall imx6-demo-image && bitbake imx6-demo-image" !? I [effectively] did the same - started with an empty/new build and then % bitbake imx6-demo-image % bitbake imx6-demo-image -c populate_sdk Anyone know the innards enough

Re: [yocto] ICECC build failures?

2016-07-01 Thread Takashi Matsuzawa
Thank you for your comment. So they are. I will try to mask them one by one then. From: Peter Bergin Sent: Friday, July 1, 2016 1:05 PM To: Takashi Matsuzawa; yocto@yoctoproject.org Subject: Re: [yocto] ICECC build failures? Hi, On 07/01/2016 03:18 AM, Takashi

Re: [yocto] Shorter build time?

2016-07-01 Thread Takashi Matsuzawa
Hmm, thank you for your comments. So, they may be talking about single-thread nature within a python program, and as for bitbake python tasks they should be working in parallel. There seems to be PyPy, Stackless Python, etc. but I am not sure they can be tried 'in-place' to see if they work fa

Re: [yocto] customizing system configuration files in my image

2016-07-01 Thread Zhenhua Luo
Usually I do it by adding bbappend of corresponding packages to override original files, the interfaces is provided by init-ifupdown, the inittab is provided by sysvinit-inittab. An example: http://git.yoctoproject.org/cgit/cgit.cgi/meta-fsl-ppc/tree/recipes-core/init-ifupdown Best Regards,

Re: [yocto] [Recipe reporting system] Upgradable recipe name list

2016-07-01 Thread Aníbal Limón
On 07/01/2016 04:31 PM, recipe-rep...@yoctoproject.org wrote: > This mail was sent out by Recipe reporting system. > > This message list those recipes which need to be upgraded. If maintainers > believe some of them needn't to upgrade at this time, they can fill > RECIPE_NO_UPDATE_REASON in resp

[yocto] [Recipe reporting system] Upgradable recipe name list

2016-07-01 Thread recipe-report
This mail was sent out by Recipe reporting system. This message list those recipes which need to be upgraded. If maintainers believe some of them needn't to upgrade at this time, they can fill RECIPE_NO_UPDATE_REASON in respective recipe file to ignore this remainder until newer upstream version w

[yocto] [Recipe reporting system] Upgradable recipe name list

2016-07-01 Thread recipe-report
This mail was sent out by Recipe reporting system. This message list those recipes which need to be upgraded. If maintainers believe some of them needn't to upgrade at this time, they can fill RECIPE_NO_UPDATE_REASON in respective recipe file to ignore this remainder until newer upstream version w

Re: [yocto] Shorter build time?

2016-07-01 Thread Daniel.
So we have full parallelism :) 2016-07-01 14:01 GMT-03:00 Burton, Ross : > > On 1 July 2016 at 17:37, Daniel. wrote: >> >> I read that python can't execute multiple threads simultaneously, but >> that wouldn't be a problem if each python task is executed at its own >> interpreter instance (proces

Re: [yocto] Shorter build time?

2016-07-01 Thread Burton, Ross
On 1 July 2016 at 17:37, Daniel. wrote: > I read that python can't execute multiple threads simultaneously, but > that wouldn't be a problem if each python task is executed at its own > interpreter instance (process). This last statement is what I don't > really know, some experts on Yocto's inte

Re: [yocto] Shorter build time?

2016-07-01 Thread Daniel.
Hi Takashi, I read that python can't execute multiple threads simultaneously, but that wouldn't be a problem if each python task is executed at its own interpreter instance (process). This last statement is what I don't really know, some experts on Yocto's internals may clarify that, maybe :) Reg

Re: [yocto] [yocto-autobuilder][PATCH] bin/release_scripts/release.py: Add some basic logging

2016-07-01 Thread Joshua G Lock
On Wed, 2016-06-29 at 16:08 -0700, Graydon, Tracy wrote: > This patch adds some basic logging to help find failure point should > the script > barf due to lost ssh session, etc. Without it, finding where to > resume is not > particularly entertaining. > > Signed-off-by: Graydon, Tracy > --- >  bi

Re: [yocto] setcap using recipe

2016-07-01 Thread Burton, Ross
On 1 July 2016 at 15:03, Mathieu Allard wrote: > I think that the main issue here is that the pkg_postinst function runs > its action at the rootfs creation time, and not on the target as advised by > Ross. > Yes, as I said in the first suggestion you'll need to ensure this runs on the target (c

[yocto] Yocto Project Status WW27

2016-07-01 Thread Richard Purdie
Current Dev Position: YP 2.2 M2 Next Deadline: YP 2.2 M2 cut off would be: 7/18/16 SWAT team rotation: Armin -> Bill (https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team) Key Status/Updates: * QA test report for 2.2 M1 is looking reasonable. There are some issues in toaster, wic

Re: [yocto] Failed to cross compile kernel with Yocto toolchain

2016-07-01 Thread Zhenhua Luo
Thanks a lot for your comments, Daniel. Can somebody please shed light on how to fix the issue in Yocto recipes? Best Regards, Zhenhua > -Original Message- > From: Daniel. [mailto:danielhi...@gmail.com] > Sent: Friday, July 01, 2016 4:48 AM > To: Zhenhua Luo > Cc: Khem Raj ; yocto@

Re: [yocto] Xorg failing with SEGV after Krogoth update

2016-07-01 Thread Khem Raj
On Thu, Jun 30, 2016 at 10:24 PM, Allan Chandler wrote: > We recently did (attempted? ) an upgrade of our Yocto embedded build system > from Fido to Krogoth and, other than one rather massive issue, it all went > well. > > > > The massive issue is the fact that X11 is apparently not starting > co

Re: [yocto] Failed to cross compile kernel with Yocto toolchain

2016-07-01 Thread Khem Raj
you can try to set HOSTCC=/usr/bin/gcc along when you call make may be via EXTRA_OEMAKE, problem you have is that kernel is expecting gcc to be used for host utilties and ccache has overrides for gcc which may not be working in all situations. Ideally you should just uninstall ccache from your buil

Re: [yocto] setcap using recipe

2016-07-01 Thread Daniel.
Hmmm I see, Well, I didn't note that. And yeah, that command should be ran at first boot, (that feature saved my life a bunch of times :) ) Regards, 2016-07-01 11:03 GMT-03:00 Mathieu Allard : > Hello, > > I think that the main issue here is that the pkg_postinst function runs its > action at t

Re: [yocto] setcap using recipe

2016-07-01 Thread Mathieu Allard
Hello, I think that the main issue here is that the pkg_postinst function runs its action at the rootfs creation time, and not on the target as advised by Ross. The chapter 5.3.16, "post-installation scripts" in the mega-manual offers some detailed explanations on how to make it run after the f

Re: [yocto] setcap using recipe

2016-07-01 Thread Daniel.
Does your target filesystem support it? ubifs doesn't :( http://www.linux-mtd.infradead.org/doc/ubifs.html#L_xattr 2016-07-01 9:53 GMT-03:00 Kumar, Shrawan : > Hello Ross, > > > > None of the approach is working . I have attached the recipe where I am > trying to execute postinst . It builds suc

[yocto] [meta-selinux] Regarding "systemd" support with refpolicy-minimum v20151208

2016-07-01 Thread Shrikant Bobade
Hi, Using refpolicy-minimum v20151208 with systemd as init manager, I am facing few issues during enforcing mode, 1. systemd service status check, start & stop 2. auditd logfile error, so it is mixing with the boot log. 3. also other avc denials related to tmpfs & other types etc.. setup detail

Re: [yocto] customizing system configuration files in my image

2016-07-01 Thread Daniel.
After that you can create a image recipe and inherit from that .bbclass. If you don't want to create a .bbclass you can use this same aproach directly on your image recipe :) Regards, 2016-07-01 10:16 GMT-03:00 Daniel. : > Hi Ottavio, > > There is more than way to do it. In your case I would use

[yocto] [meta-selinux][PATCH] README: update with systemd & virtual/refpolicy details

2016-07-01 Thread bobadeshrikant
From: Shrikant Bobade add init manager user guidelines and examples for using refpolicy with perticular version and type. Signed-off-by: Shrikant Bobade --- README | 27 +-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/README b/README index 284d862..da

Re: [yocto] customizing system configuration files in my image

2016-07-01 Thread Daniel.
Hi Ottavio, There is more than way to do it. In your case I would use ROOTFS_POSTPROCESS_COMMAND to modify files prior the creation of the rootfs. You may: - Create a .bbclass for your image inheriting core-image for example. - Create a shell function to do some sed magic. - Setup that function t

Re: [yocto] setcap using recipe

2016-07-01 Thread Kumar, Shrawan
Hello Ross, None of the approach is working . I have attached the recipe where I am trying to execute postinst . It builds successfully , But when I run getcap on the target , does not return the set capabilities. Help will be highly appreciated . Regards Shrawan From: Burton, Ross [mailto:r

[yocto] Toaster fail to luanch bitbake

2016-07-01 Thread Richard Zhang
Hi: After setup toaster I can't finish build progress with bitbake. some ERROR log into : /opt/yocto/poky/build-toaster-4/toaster_ui.log ERROR: can't set event mask: None Is this ERROR come with Environment variant? Thanks. Richard Zhang signature.asc Description: Ope

Re: [yocto] meta-toolchain build errors

2016-07-01 Thread Daniel.
Did you tried "bitbake -fc cleanall imx6-demo-image && bitbake imx6-demo-image" !? 2016-06-30 12:05 GMT-03:00 Khem Raj : > > > On Thursday, June 30, 2016, Gary Thomas wrote: >> >> On 2016-06-29 17:27, Khem Raj wrote: >>> >>> On Jun 29, 2016 4:10 AM, "Gary Thomas" >> > wr

[yocto] customizing system configuration files in my image

2016-07-01 Thread Ottavio Campana
Hello, I would like to customize an image I am developing based on core image minimal. Particularly, I'd like to customize the files /etc/network/interfaces and /etc/inittab . What should I do achieve that? Thank you Ottavio -- [Videotec Logo] Ottavio Campana Produ

Re: [yocto] Per image customizations

2016-07-01 Thread Diego
In data lunedì 27 giugno 2016 16:11:30, Paul Eggleton ha scritto: > On Mon, 06 Jun 2016 15:27:17 Diego wrote: > > Hi Oleksandr, > > > > In data venerdì 3 giugno 2016 20:56:32, Oleksandr Poznyak ha scritto: > > > I found that that’s an issue with rpm packages. I didn't expect there > > > might > >