Re: [yocto] svn fetch problem?

2015-10-07 Thread Daniel.
The build system creates a tar.gz file from the SVN checkout. Probally the devshell opens on this .tar.gz exploded, not at the folder checked out. What I do is checkout manunally and use toolchain to compile. So I do fix/compile/test cycle on my own workcopy and using toolchains provided by

[yocto] [meta-selinux][PATCH 1/1] refpolicy: SRCREV_FORMAT needed

2015-10-07 Thread Joe Slater
Signed-off-by: Joe Slater --- recipes-security/refpolicy/refpolicy_git.inc |1 + 1 file changed, 1 insertion(+) diff --git a/recipes-security/refpolicy/refpolicy_git.inc b/recipes-security/refpolicy/refpolicy_git.inc index 6db4b9e..32b3195 100644 ---

Re: [yocto] can any one please tell the difference between DEPENDS and RDEPENDS

2015-10-07 Thread YUKATHARSANI JEYACHANDRA
DEPENDS means a build-time dependency i.e. between recipes, RDEPENDS means a runtime dependency i.e. between packages. From: yocto-boun...@yoctoproject.org on behalf of Vivek Per Sent: Wednesday, October 7,

[yocto] can any one please tell the difference between DEPENDS and RDEPENDS

2015-10-07 Thread Vivek Per
Hi, Can any one please tell the what is the exact difference between DEPENDS and RDEPENDS . I am not able to get it . How these variables are exactly parsed. regards vivek -- ___ yocto mailing list yocto@yoctoproject.org

[yocto] [PATCH 2/2][meta-selinux] swig: remove package

2015-10-07 Thread wenzong.fan
From: Wenzong Fan swig 3.0.6 has been added to oe-croe: 66923c6776da13bd4513a73c3f7c5e60d74eb0f3 No change need to port. Signed-off-by: Wenzong Fan --- recipes-devtools/swig/swig.inc | 59 --

[yocto] [PATCH 1/2][meta-selinux] libcap-ng: remove package

2015-10-07 Thread wenzong.fan
From: Wenzong Fan libcap-ng 0.7.7 has been added to oe-core: ad509d7644803ff9386affefe2ec1a3664027074 No change need to port. Signed-off-by: Wenzong Fan --- recipes-security/libcap-ng/libcap-ng/python.patch | 58 ---

[yocto] Can any one please tell the what is the exact difference between DEPENDS and RDEPENDS

2015-10-07 Thread Vivek Per
Hi, Can any one please tell the what is the exact difference between DEPENDS and RDEPENDS . I am not able to get it . How these variables are exactly parsed. -regards vivek -- ___ yocto mailing list yocto@yoctoproject.org

[yocto] [PATCH 0/2][meta-selinux] remove packages: libcap-ng, swig

2015-10-07 Thread wenzong.fan
From: Wenzong Fan They have been added to oe-core. The following changes since commit 463f97bfd1180475540b7d91e3fec6a2b33966bd: audit/auvirt: get inline functions work with both gnu89 & gnu11 (2015-09-21 10:42:27 -0400) are available in the git repository at:

Re: [yocto] [meta-selinux][PATCH 1/1] refpolicy: SRCREV_FORMAT needed

2015-10-07 Thread wenzong fan
On 10/08/2015 07:36 AM, Joe Slater wrote: Signed-off-by: Joe Slater --- recipes-security/refpolicy/refpolicy_git.inc |1 + 1 file changed, 1 insertion(+) diff --git a/recipes-security/refpolicy/refpolicy_git.inc b/recipes-security/refpolicy/refpolicy_git.inc

[linux-yocto] [PATCH] nf_tables: Add nf_tables feature

2015-10-07 Thread jianchuan.wang
From: Jianchuan Wang Add a nf_tables feature that turns on the kernel options required to support nf_tables. Signed-off-by: Jianchuan Wang --- features/nf_tables/nf_tables.cfg | 24

Re: [yocto] tmp on NFS

2015-10-07 Thread Mike Looijmans
I can think of various things that would go wrong with tmp on NFS. One of the most obvious example would be to try and change the network configuration while running, and needing some temporary file to manage that.\ I think the expectation is that /tmp should be accessible at all times, and

Re: [yocto] tmp on NFS

2015-10-07 Thread Luke (Lucas) Starrett
I should clarify, the sanity check warning I'm referring to is about the Yocto build/tmp directory not /tmp as in the system level tmp dir. Thanks, Luke. -Original Message- From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On Behalf Of Mike Looijmans Sent:

Re: [yocto] tmp on NFS

2015-10-07 Thread Burton, Ross
On 7 October 2015 at 02:37, Luke (Lucas) Starrett wrote: > I’m aware of the checks added by changes like this: > > > > patchwork.openembedded.org/patch/61107/ > > > > However, I don’t see the reasoning/background documented as to exactly > what is actually broken when

Re: [yocto] tmp on NFS

2015-10-07 Thread Burton, Ross
On 7 October 2015 at 13:59, Burton, Ross wrote: > Follow the link in the patch to the referenced bug, and comment #8 by Mark > Hatle explains the problems that Wind River were seeing in testing: > I should also add that many people buy lots of RAM and do builds with

[yocto] packagegroup not appearing in HOB

2015-10-07 Thread Allen Curtis
Hello, I created a packagegroup file as per the instructions called packagegroup-foo.bb Within that file I define 2 package groups as such. PACKAGES = "\ packagegroup-foo-apps \ packagegroup-foo-tools \ " RDEPENDS_packagegroup-foo-apps = "…" RDEPENDS_packagegroup-foo-tools = "…" However,

[yocto] svn fetch problem?

2015-10-07 Thread Allen Curtis
Hello, I am fetching my source code from SVN in my recipe file. The build works fine. However if I open a "devshell", the .svn directory is missing so I can not checkin any modifications. I looked at svn.py and it looks like it should be doing a checkout operation. How do I fix this? --