[Yocto-bsp] ERROR: - package networkmanager-1.10.6-r0.aarch64 conflicts with connman provided by connman-1.35-r0.aarch64

2019-01-14 Thread srinivasan
Dear Yocto experts, I am seeing the below error when I am trying to integrate the "fsl-image-validation-imx.bb" into my custom yocto build and trigger the build using "bitbake custom-image-debug-imx8.bb", I somewhat feel networkmanager is conflicting with conman, could you please let me know how

[linux-yocto] ERROR: - package networkmanager-1.10.6-r0.aarch64 conflicts with connman provided by connman-1.35-r0.aarch64

2019-01-14 Thread srinivasan
Dear Yocto experts, I am seeing the below error when I am trying to integrate the "fsl-image-validation-imx.bb" into my custom yocto build and trigger the build using "bitbake custom-image-debug-imx8.bb", I somewhat feel networkmanager is conflicting with conman, could you please let me know how

Re: [yocto] [selinux] sumo compilation

2019-01-14 Thread Stefano Cappa
I tried with yocto thud and your repo (thud branch) and I can build without issues. However when I try to run "fixfiles -f -F relabel" the result is: **Cleaning out /tmp* **fixfiles: No suitable file systems found* **Cleaning up labels on /tmp* **cat: /initial_contexts/unlabeled: No such file or

Re: [yocto] Yocto distribution license

2019-01-14 Thread Khem Raj
On Sun, Jan 13, 2019 at 10:35 PM Edward Wingate wrote: > > I understand that a Linux distribution created with Yocto is composed > of various packages, each with their own license, and the obligations > of the licenses must be met. But are there any > restrictions/obligations on the distribution

Re: [yocto] Yocto distribution license

2019-01-14 Thread Randy MacLeod
On 1/14/19 5:42 AM, Burton, Ross wrote: The license is the sum of the parts. Ross +1 It would be possible that the build system would attempt to restrict usage but bitbake is GPLv2 licensed and oe-core classes and recipes are mostly under MIT as explained here:

[yocto] Yocto Project Unassigned Bugs - Help Needed

2019-01-14 Thread Jolley, Stephen K
All, The triage team meets weekly and does its best to handle the bugs reported into the Bugzilla. The number of people attending that meeting has fallen, as have the number of people available to help fix bugs. One of the things we hear users report is they don't know how to help. We (the

Re: [yocto] meta-mingw and cmake

2019-01-14 Thread Sinan Kaya
On Sun, Jan 13, 2019 at 12:17 PM Sinan Kaya wrote: > > On Sat, Jan 12, 2019 at 2:41 PM Joshua Watt wrote: > > > > CC'ing yocto@yoctoproject.org > > > > On Sat, Jan 12, 2019 at 1:02 PM Sinan Kaya wrote: > > > > > > Hi Joshua, > > > > > > I have this instruction to build cmake as part of the SDK.

[yocto] [meta-security][PATCH 11/11] apparmor: backport a patch to fix tool paths instead of sedding

2019-01-14 Thread Ross Burton
Sedding is ugly, and as upstream have already fixed this cherry-pick the patch instead. Signed-off-by: Ross Burton --- recipes-security/AppArmor/apparmor_2.12.bb | 3 +- recipes-security/AppArmor/files/tool-paths.patch | 37 2 files changed, 38 insertions(+), 2

[yocto] [meta-security][PATCH 10/11] apparmor: if Perl is disabled remove perl-using scripts

2019-01-14 Thread Ross Burton
aa-notify uses the Perl bindings, so isn't usable when perl is disabled. Signed-off-by: Ross Burton --- recipes-security/AppArmor/apparmor_2.12.bb | 5 + 1 file changed, 5 insertions(+) diff --git a/recipes-security/AppArmor/apparmor_2.12.bb b/recipes-security/AppArmor/apparmor_2.12.bb

[yocto] [meta-security][PATCH 09/11] apparmor: systemd.bbclas is useful even when disabled

2019-01-14 Thread Ross Burton
The systemd bbclass will remove any systemd files that have been installed if systemd is disabled, so always install the files and always inherit. Signed-off-by: Ross Burton --- recipes-security/AppArmor/apparmor_2.12.bb | 10 +++--- 1 file changed, 3 insertions(+), 7 deletions(-) diff

[yocto] [meta-security][PATCH 08/11] apparmor: remove pointless ALLOW_EMPTY

2019-01-14 Thread Ross Burton
${PN} has content, so there's no need to set ALLOW_EMPTY_${PN}. Signed-off-by: Ross Burton --- recipes-security/AppArmor/apparmor_2.12.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/recipes-security/AppArmor/apparmor_2.12.bb b/recipes-security/AppArmor/apparmor_2.12.bb index

[yocto] [meta-security][PATCH 07/11] apparmor: no need to conditionalise PACKAGES

2019-01-14 Thread Ross Burton
A package with no content is not generated, so there's no need to conditionalise assignments to PACKAGES. Signed-off-by: Ross Burton --- recipes-security/AppArmor/apparmor_2.12.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-security/AppArmor/apparmor_2.12.bb

[yocto] [meta-security][PATCH 06/11] apparmor: use manpages class

2019-01-14 Thread Ross Burton
The manpages class handles enabling/disabling the man pages based on the api-documentation DISTRO_FEATURE, and ensures that mandb is called. Signed-off-by: Ross Burton --- recipes-security/AppArmor/apparmor_2.12.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[yocto] [meta-security][PATCH 05/11] apparmor: remove redundant S

2019-01-14 Thread Ross Burton
This is the default value, so remove it. Signed-off-by: Ross Burton --- recipes-security/AppArmor/apparmor_2.12.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/recipes-security/AppArmor/apparmor_2.12.bb b/recipes-security/AppArmor/apparmor_2.12.bb index 303d5c7..6434e42 100644 ---

[yocto] [meta-security][PATCH 04/11] apparmor: enable static libraries neatly

2019-01-14 Thread Ross Burton
No need to fiddle with the configure arguments as we can just neuter disable-static.inc. Signed-off-by: Ross Burton --- recipes-security/AppArmor/apparmor_2.12.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes-security/AppArmor/apparmor_2.12.bb

[yocto] [meta-security][PATCH 03/11] apparmor: add missing bash dependency

2019-01-14 Thread Ross Burton
testsuite/parser/tst/minimize.sh is a bash script, so until it is reviewed add a bash dependency to apparmor-ptest. Signed-off-by: Ross Burton --- recipes-security/AppArmor/apparmor_2.12.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[yocto] [meta-security][PATCH 02/11] README: remove Saul from maintainers

2019-01-14 Thread Ross Burton
Signed-off-by: Ross Burton --- README | 1 - 1 file changed, 1 deletion(-) diff --git a/README b/README index c15fea9..5abb0e2 100644 --- a/README +++ b/README @@ -65,7 +65,6 @@ $ git config format.subjectPrefix meta-security][PATCH Now you can just do 'git send-email origin/master' to send

[yocto] [meta-security][PATCH 01/11] README: add git-config tips

2019-01-14 Thread Ross Burton
Signed-off-by: Ross Burton --- README | 7 +++ 1 file changed, 7 insertions(+) diff --git a/README b/README index e238271..c15fea9 100644 --- a/README +++ b/README @@ -57,6 +57,13 @@ Send pull requests, patches, comments or questions to yocto@yoctoproject.org When sending single patches,

[yocto] kernel-fitimage.bbclass possible bug in Yocto 2.6

2019-01-14 Thread Amol Lad
Hi, There seems to be a bug in kernel-fitimage.bbclass. I get below error message when FIT support is enabled (and with initramfs) | lib/modules/4.14.54-yocto-standard-custom/kernel/crypto/ctr.ko | lib/modules/4.14.54-yocto-standard-custom/kernel/crypto/seqiv.ko |