[yocto] if else blocks in recipes(bitbake)

2016-08-12 Thread S . Jaritz
Hej If have a simple problem. On one system a program is started as a daemon and on the other one not. In my recipe the program is build. by using update-rc.d I create the init script for systemV. The code looks like: ## SUMMARY = "myApp" SECTION = "myApp" LICENSE = "CLOSED" DEPENDS = "

Re: [yocto] if else blocks in recipes(bitbake)

2016-08-12 Thread Burton, Ross
On 12 August 2016 at 09:46, wrote: > > If have a simple problem. On one system a program is started as a daemon > and on the other one not. In my recipe the program is build. by using > update-rc.d I create the init script for systemV. The code looks like: The easy solution here is to build two

[yocto] Is There a easy way to check which version of GCC was been used to a package

2016-08-12 Thread Richard Zhang
Hi all After use yocto build linux distro , how could I check the toolchain's version? Is there a version description? Best Regard. Richard Zhang -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] can one use "ASSUME_PROVIDED += mono-native" to avoid compiling?

2016-08-12 Thread Robert P. J. Day
built mono for the first time, and a significant amount of time was spent compiling mono-native. if i already have mono on my build host, is it worth checking if i can take advantage of it? rday -- Robert P. J. Day

[yocto] Access Control List (ACL) permissions attributes not getting preserved in rootfs

2016-08-12 Thread Kumar, Shrawan
Hello All, I am using poky " jethro" , and though one of my recipe, I have created user1 & user2 and then trying to set ACL rules on "helloworld" bin as below : do_install() { install -d ${D}${bindir} install -m 0700 helloworld ${D}${bindir}

Re: [yocto] Access Control List (ACL) permissions attributes not getting preserved in rootfs

2016-08-12 Thread Joshua G Lock
On Fri, 2016-08-12 at 12:33 +, Kumar, Shrawan wrote: > Hello All, >   > I am  using  poky “ jethro”  , and  though  one of my recipe, I have > created user1 & user2 and then trying to set ACL rules  on > “helloworld” bin as below : >   >   > do_install() { >    install -d ${D}$

Re: [yocto] [meta][PATCH v2] python-3.4-manifest: Add some missing RDEPENDS

2016-08-12 Thread Burton, Ross
On 11 August 2016 at 22:14, Kyle Russell wrote: > In case anyone is interested, I posted an update for both the script and > .inc to openembedded-core (which now has master at python 3.5), but it > doesn't seem to have gone anywhere yet. > Sorry that got stalled because the patch was mangled by

Re: [yocto] can one use "ASSUME_PROVIDED += mono-native" to avoid compiling?

2016-08-12 Thread Burton, Ross
On 12 August 2016 at 11:50, Robert P. J. Day wrote: > built mono for the first time, and a significant amount of time was > spent compiling mono-native. if i already have mono on my build host, > is it worth checking if i can take advantage of it? > sstate obviously means if it doesn't change

Re: [yocto] [meta][PATCH v2] python-3.4-manifest: Add some missing RDEPENDS

2016-08-12 Thread Kyle Russell
Ok, thanks! Sorry about that, not sure what happened. On Fri, Aug 12, 2016 at 10:00 AM, Burton, Ross wrote: > > On 11 August 2016 at 22:14, Kyle Russell wrote: > >> In case anyone is interested, I posted an update for both the script and >> .inc to openembedded-core (which now has master at py

Re: [yocto] [meta-swupd][PATCH] swupd-image: Fix files ownership if IMAGE_BASENAME is not default

2016-08-12 Thread Joshua G Lock
On Thu, 2016-08-11 at 14:27 +0200, Piotr Figiel wrote: > From: Piotr Figiel > > In case IMAGE_BASENAME is set on image recipe level the files > ownership on > target rootfs is incorrect for recipes inheriting swupd- > image.bbclass. > Depending on the context swupd-image.bbclass used either PN (P

Re: [yocto] Is There a easy way to check which version of GCC was been used to a package

2016-08-12 Thread Daniel.
Try executing libc. It shows the version of gcc that was used to be compiled. Here is a sample output from *my workstation*. [geckos@localhost ~]$ /lib/libc-2.24.so GNU C Library (GNU libc) stable release version 2.24, by Roland McGrath et al. Copyright (C) 2016 Free Software Foundation, Inc. This

[yocto] [ANNOUNCEMENT] Yocto Project 2.1.1 (Krogoth 15.0.1) Released

2016-08-12 Thread Tracy Graydon
Hello, The latest release of the Yocto Project 2.1.1 (krogoth-15.0.1) is now available for download at: http://downloads.yoctoproject.org/releases/yocto/yocto-2.1.1/poky-krogoth-15.0.1.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-2.1.1/poky-krogoth-15.0.1.tar.bz2 A gpg signed version of

[yocto] [yocto-autobuilder][PATCH] PublishArtifacts.py: generate md5sums for buildtools

2016-08-12 Thread Bill Randle
Md5sum files were not being generated for the buildtools artifacts. Also, ignore files with a .md5sum extension when doing the sum. Signed-off-by: Bill Randle --- .../autobuilder/buildsteps/PublishArtifacts.py | 27 ++ 1 file changed, 18 insertions(+), 9 deletions(-) dif