Re: [meta-freescale] meta-freescale Digest, Vol 51, Issue 5

2017-01-09 Thread Shree

Hello Gary,

I am using the Release L4.1.15_2.0.0_ga yocto source code from NXP 
site.This source code belongs to Yocto Project  version 2.1(krogoth).


Thanks & Regards,
Shree
--
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [Question] Using Linux 4.1.15 with wandboard (on krogoth)

2017-01-09 Thread Fabio Berton
Hi Amin,

Linux-wandboard 4.1.15 is also available in morty release, if you can
update to this release.

Other way, using krogoth release, is create a layer with
linux-wandboard_4.1.15.bb recipe, add this custom layer to your
bblayers.conf file and set PREFERRED_VERSION_virtual/kernel = "4.1.15" in
your local.conf.


On Sat, Jan 7, 2017 at 2:47 AM, Amin Bandali  wrote:

> Hello,
>
> On the latest stable release (krogoth), the Linux kernel version used
> for wandboard is 3.14.28:
> https://github.com/Freescale/meta-freescale-3rdparty/blob/
> krogoth/recipes-kernel/linux/linux-wandboard_3.14.28.bb
>
> Would it be possible to use Linux 4.1.15 instead?
> https://github.com/Freescale/meta-freescale-3rdparty/blob/
> master/recipes-kernel/linux/linux-wandboard_4.1.15.bb
>
> If yes, I would really appreciate some help / directions on how to
> swap out 3.14.28 and use 4.1.15.
>
> Thanks,
> Amin
> --
> ___
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
>
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v4 5/5] add fsl-qoriq distro conf file

2017-01-09 Thread Zhenhua Luo
Signed-off-by: Zhenhua Luo 
---
 conf/distro/fsl-qoriq.conf | 33 +
 1 file changed, 33 insertions(+)
 create mode 100644 conf/distro/fsl-qoriq.conf

diff --git a/conf/distro/fsl-qoriq.conf b/conf/distro/fsl-qoriq.conf
new file mode 100644
index 000..ef4e057
--- /dev/null
+++ b/conf/distro/fsl-qoriq.conf
@@ -0,0 +1,33 @@
+# FSL distro for QorIQ SDK
+
+require conf/distro/poky.conf
+
+DISTRO = "fsl-qoriq"
+DISTRO_NAME = "QorIQ SDK (FSL Reference Distro)"
+SDK_VENDOR = "-fsl"
+MAINTAINER = "Zhenhua Luo "
+
+TARGET_VENDOR = "-fsl"
+
+# Customize the DISTRO_FEATURES for QorIQ platforms
+POKY_DEFAULT_DISTRO_FEATURES_remove = " ptest"
+DISTRO_FEATURES_DEFAULT_remove = " pcmcia 3g"
+DISTRO_FEATURES_DEFAULT_append = " benchmark vfat ext2 mtd pam \
+alsa pulseaudio perl ppp python usbhost virtualization db"
+
+# When meta-openenbedded layer is included, bitbake will complain that
+# multiple providers are available for jpeg (jpeg, libjpeg-turbo).
+PREFERRED_PROVIDER_jpeg ?= "jpeg"
+PREFERRED_PROVIDER_jpeg-native ?= "jpeg-native"
+
+QEMU_TARGETS_append_pn-qemu-native = " ppc64"
+
+# Set the preferred provider of some native java packages which can support
+# QorIQ targets well.
+PREFERRED_PROVIDER_virtual/java-initial-native = "cacao-initial-native"
+PREFERRED_PROVIDER_virtual/java-native = "jamvm-native"
+PREFERRED_PROVIDER_virtual/javac-native = "ecj-bootstrap-native"
+
+# whitelist restricted license to ensure netperf can be included in QorIQ
+# demo images by default.
+LICENSE_FLAGS_WHITELIST = "non-commercial_netperf commercial_lame"
-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v4 4/5] add fsl-image-networking-full demo image

2017-01-09 Thread Zhenhua Luo
fsl-image-networking-full is a large demo image to support silicon evaluation,
software development and debug on target boards.

Signed-off-by: Zhenhua Luo 
---
 recipes-fsl/images/fsl-image-networking-full.bb | 25 +
 1 file changed, 25 insertions(+)
 create mode 100644 recipes-fsl/images/fsl-image-networking-full.bb

diff --git a/recipes-fsl/images/fsl-image-networking-full.bb 
b/recipes-fsl/images/fsl-image-networking-full.bb
new file mode 100644
index 000..7341d54
--- /dev/null
+++ b/recipes-fsl/images/fsl-image-networking-full.bb
@@ -0,0 +1,25 @@
+require fsl-image-networking.bb
+
+SUMMARY = "Large image to be used for development and evaluation"
+DESCRIPTION = "Large image which includes all the tested tools and \
+NXP specific packages. It is a full Linux system for development and \
+evaluation tasks."
+
+LICENSE = "MIT"
+
+# copy the manifest and the license text for each package to image
+COPY_LIC_MANIFEST = "1"
+
+IMAGE_INSTALL_append_qoriq = " \
+packagegroup-core-buildessential \
+packagegroup-core-eclipse-debug \
+packagegroup-core-full-cmdline \
+packagegroup-core-nfs-server \
+packagegroup-core-tools-debug \
+packagegroup-fsl-networking-core-extend \
+packagegroup-fsl-networking-server \
+packagegroup-fsl-networking-extend \
+packagegroup-fsl-virtualization \
+"
+
+IMAGE_FSTYPES_qoriq = "tar.gz"
-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v4 3/5] add fsl-image-networking demo image

2017-01-09 Thread Zhenhua Luo
fsl-image-networking is the small demo image for networking core features
support.

Signed-off-by: Zhenhua Luo 
---
 recipes-fsl/images/fsl-image-networking.bb | 14 ++
 1 file changed, 14 insertions(+)
 create mode 100644 recipes-fsl/images/fsl-image-networking.bb

diff --git a/recipes-fsl/images/fsl-image-networking.bb 
b/recipes-fsl/images/fsl-image-networking.bb
new file mode 100644
index 000..cca5b4a
--- /dev/null
+++ b/recipes-fsl/images/fsl-image-networking.bb
@@ -0,0 +1,14 @@
+require recipes-core/images/core-image-minimal.bb
+
+SUMMARY = "Minimal networking image used for evaluating the NXP SOCs"
+DESCRIPTION = "The mininal networking image which includes some useful \
+networking, benchmark and NXP specific packages. It is used for evaluating \
+the NXP QorIQ SOCs."
+
+LICENSE = "MIT"
+
+IMAGE_INSTALL_append_qoriq = " \
+packagegroup-fsl-networking-core \
+packagegroup-fsl-networking-client \
+packagegroup-fsl-tools-benchmark \
+"
-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v4 2/5] packagegroup-fsl-virtualization: add recipe

2017-01-09 Thread Zhenhua Luo
packagegroup-fsl-virtualization defines the packages group for virtualization
support.

Signed-off-by: Zhenhua Luo 
---
 .../packagegroup-fsl-virtualization.bb | 27 ++
 1 file changed, 27 insertions(+)
 create mode 100644 recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb

diff --git a/recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb 
b/recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb
new file mode 100644
index 000..774cf0b
--- /dev/null
+++ b/recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb
@@ -0,0 +1,27 @@
+# Copyright (C) 2016 NXP Semiconductors
+# Released under the MIT license (see COPYING.MIT for the terms)
+DESCRIPTION = "Package group used by NXP Community to provide virtualization 
packages"
+SUMMARY = "NXP Community Package group - virtualization, virtualization is \
+the creation of a virtual -- rather than actual -- version of something, such \
+as an operating system, it is an important feature of NXP QorIQ platforms, the 
\
+major virtualization technique supported by QorIQ includes docker, qemu and 
lxc"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+inherit packagegroup
+
+PACKAGES = "${PN}"
+
+DOCKER-PKGS = ""
+DOCKER-PKGS_qoriq-arm = "docker docker-registry"
+DOCKER-PKGS_qoriq-arm64 = "docker docker-registry"
+
+RDEPENDS_${PN}_qoriq = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', \
+'libvirt \
+libvirt-libvirtd \
+libvirt-virsh \
+lxc \
+qemu', \
+'', d)} \
+${DOCKER-PKGS} \
+" 
-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v4 0/5] add new packagegroups, demo images and distro file

2017-01-09 Thread Zhenhua Luo
* add packagegroup for networking and virtualization
* add demo images of networking and networking-full
* add fsl-qoriq distro conf file

Revision history:
v1: add new packagegroups, demo images and distro file
v2: fix typo in bb of packagegroup, demo images and distro file
v3: fix typo in fsl-qoriq distro file
v4: fix mixture changes in patch of adding fsl-qoriq distro file

Zhenhua Luo (5):
  packagegroup-fsl-networking: add recipe
  packagegroup-fsl-virtualization: add recipe
  add fsl-image-networking demo image
  add fsl-image-networking-full demo image
  add fsl-qoriq distro conf file

 conf/distro/fsl-qoriq.conf |  33 
 recipes-fsl/images/fsl-image-networking-full.bb|  25 +++
 recipes-fsl/images/fsl-image-networking.bb |  14 ++
 .../packagegroups/packagegroup-fsl-networking.bb   | 173 +
 .../packagegroup-fsl-virtualization.bb |  27 
 5 files changed, 272 insertions(+)
 create mode 100644 conf/distro/fsl-qoriq.conf
 create mode 100644 recipes-fsl/images/fsl-image-networking-full.bb
 create mode 100644 recipes-fsl/images/fsl-image-networking.bb
 create mode 100644 recipes-fsl/packagegroups/packagegroup-fsl-networking.bb
 create mode 100644 recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb

-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v3 5/5] add fsl-qoriq distro conf file

2017-01-09 Thread Zhenhua Luo
Signed-off-by: Zhenhua Luo 
---
 conf/distro/fsl-qoriq.conf  | 33 +
 recipes-fsl/images/fsl-image-networking-full.bb |  4 +--
 2 files changed, 35 insertions(+), 2 deletions(-)
 create mode 100644 conf/distro/fsl-qoriq.conf

diff --git a/conf/distro/fsl-qoriq.conf b/conf/distro/fsl-qoriq.conf
new file mode 100644
index 000..ef4e057
--- /dev/null
+++ b/conf/distro/fsl-qoriq.conf
@@ -0,0 +1,33 @@
+# FSL distro for QorIQ SDK
+
+require conf/distro/poky.conf
+
+DISTRO = "fsl-qoriq"
+DISTRO_NAME = "QorIQ SDK (FSL Reference Distro)"
+SDK_VENDOR = "-fsl"
+MAINTAINER = "Zhenhua Luo "
+
+TARGET_VENDOR = "-fsl"
+
+# Customize the DISTRO_FEATURES for QorIQ platforms
+POKY_DEFAULT_DISTRO_FEATURES_remove = " ptest"
+DISTRO_FEATURES_DEFAULT_remove = " pcmcia 3g"
+DISTRO_FEATURES_DEFAULT_append = " benchmark vfat ext2 mtd pam \
+alsa pulseaudio perl ppp python usbhost virtualization db"
+
+# When meta-openenbedded layer is included, bitbake will complain that
+# multiple providers are available for jpeg (jpeg, libjpeg-turbo).
+PREFERRED_PROVIDER_jpeg ?= "jpeg"
+PREFERRED_PROVIDER_jpeg-native ?= "jpeg-native"
+
+QEMU_TARGETS_append_pn-qemu-native = " ppc64"
+
+# Set the preferred provider of some native java packages which can support
+# QorIQ targets well.
+PREFERRED_PROVIDER_virtual/java-initial-native = "cacao-initial-native"
+PREFERRED_PROVIDER_virtual/java-native = "jamvm-native"
+PREFERRED_PROVIDER_virtual/javac-native = "ecj-bootstrap-native"
+
+# whitelist restricted license to ensure netperf can be included in QorIQ
+# demo images by default.
+LICENSE_FLAGS_WHITELIST = "non-commercial_netperf commercial_lame"
diff --git a/recipes-fsl/images/fsl-image-networking-full.bb 
b/recipes-fsl/images/fsl-image-networking-full.bb
index f80b734..7341d54 100644
--- a/recipes-fsl/images/fsl-image-networking-full.bb
+++ b/recipes-fsl/images/fsl-image-networking-full.bb
@@ -2,8 +2,8 @@ require fsl-image-networking.bb
 
 SUMMARY = "Large image to be used for development and evaluation"
 DESCRIPTION = "Large image which includes all the tested tools and \
-NXP specific packages. It is a full Linux system rather than \
-an embedded system for development and evaluation tasks."
+NXP specific packages. It is a full Linux system for development and \
+evaluation tasks."
 
 LICENSE = "MIT"
 
-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v3 4/5] add fsl-image-networking-full demo image

2017-01-09 Thread Zhenhua Luo
fsl-image-networking-full is a large demo image to support silicon evaluation,
software development and debug on target boards.

Signed-off-by: Zhenhua Luo 
---
 recipes-fsl/images/fsl-image-networking-full.bb | 25 +
 1 file changed, 25 insertions(+)
 create mode 100644 recipes-fsl/images/fsl-image-networking-full.bb

diff --git a/recipes-fsl/images/fsl-image-networking-full.bb 
b/recipes-fsl/images/fsl-image-networking-full.bb
new file mode 100644
index 000..f80b734
--- /dev/null
+++ b/recipes-fsl/images/fsl-image-networking-full.bb
@@ -0,0 +1,25 @@
+require fsl-image-networking.bb
+
+SUMMARY = "Large image to be used for development and evaluation"
+DESCRIPTION = "Large image which includes all the tested tools and \
+NXP specific packages. It is a full Linux system rather than \
+an embedded system for development and evaluation tasks."
+
+LICENSE = "MIT"
+
+# copy the manifest and the license text for each package to image
+COPY_LIC_MANIFEST = "1"
+
+IMAGE_INSTALL_append_qoriq = " \
+packagegroup-core-buildessential \
+packagegroup-core-eclipse-debug \
+packagegroup-core-full-cmdline \
+packagegroup-core-nfs-server \
+packagegroup-core-tools-debug \
+packagegroup-fsl-networking-core-extend \
+packagegroup-fsl-networking-server \
+packagegroup-fsl-networking-extend \
+packagegroup-fsl-virtualization \
+"
+
+IMAGE_FSTYPES_qoriq = "tar.gz"
-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v3 3/5] add fsl-image-networking demo image

2017-01-09 Thread Zhenhua Luo
fsl-image-networking is the small demo image for networking core features
support.

Signed-off-by: Zhenhua Luo 
---
 recipes-fsl/images/fsl-image-networking.bb | 14 ++
 1 file changed, 14 insertions(+)
 create mode 100644 recipes-fsl/images/fsl-image-networking.bb

diff --git a/recipes-fsl/images/fsl-image-networking.bb 
b/recipes-fsl/images/fsl-image-networking.bb
new file mode 100644
index 000..cca5b4a
--- /dev/null
+++ b/recipes-fsl/images/fsl-image-networking.bb
@@ -0,0 +1,14 @@
+require recipes-core/images/core-image-minimal.bb
+
+SUMMARY = "Minimal networking image used for evaluating the NXP SOCs"
+DESCRIPTION = "The mininal networking image which includes some useful \
+networking, benchmark and NXP specific packages. It is used for evaluating \
+the NXP QorIQ SOCs."
+
+LICENSE = "MIT"
+
+IMAGE_INSTALL_append_qoriq = " \
+packagegroup-fsl-networking-core \
+packagegroup-fsl-networking-client \
+packagegroup-fsl-tools-benchmark \
+"
-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v3 2/5] packagegroup-fsl-virtualization: add recipe

2017-01-09 Thread Zhenhua Luo
packagegroup-fsl-virtualization defines the packages group for virtualization
support.

Signed-off-by: Zhenhua Luo 
---
 .../packagegroup-fsl-virtualization.bb | 27 ++
 1 file changed, 27 insertions(+)
 create mode 100644 recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb

diff --git a/recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb 
b/recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb
new file mode 100644
index 000..774cf0b
--- /dev/null
+++ b/recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb
@@ -0,0 +1,27 @@
+# Copyright (C) 2016 NXP Semiconductors
+# Released under the MIT license (see COPYING.MIT for the terms)
+DESCRIPTION = "Package group used by NXP Community to provide virtualization 
packages"
+SUMMARY = "NXP Community Package group - virtualization, virtualization is \
+the creation of a virtual -- rather than actual -- version of something, such \
+as an operating system, it is an important feature of NXP QorIQ platforms, the 
\
+major virtualization technique supported by QorIQ includes docker, qemu and 
lxc"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+inherit packagegroup
+
+PACKAGES = "${PN}"
+
+DOCKER-PKGS = ""
+DOCKER-PKGS_qoriq-arm = "docker docker-registry"
+DOCKER-PKGS_qoriq-arm64 = "docker docker-registry"
+
+RDEPENDS_${PN}_qoriq = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', \
+'libvirt \
+libvirt-libvirtd \
+libvirt-virsh \
+lxc \
+qemu', \
+'', d)} \
+${DOCKER-PKGS} \
+" 
-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [meta-freescale-distro][PATCH v3 0/5] add new packagegroups, demo images and distro file

2017-01-09 Thread Zhenhua Luo
* add packagegroup for networking and virtualization
* add demo images of networking and networking-full
* add fsl-qoriq distro conf file

Zhenhua Luo (5):
  packagegroup-fsl-networking: add recipe
  packagegroup-fsl-virtualization: add recipe
  add fsl-image-networking demo image
  add fsl-image-networking-full demo image
  add fsl-qoriq distro conf file

 conf/distro/fsl-qoriq.conf |  33 
 recipes-fsl/images/fsl-image-networking-full.bb|  25 +++
 recipes-fsl/images/fsl-image-networking.bb |  14 ++
 .../packagegroups/packagegroup-fsl-networking.bb   | 173 +
 .../packagegroup-fsl-virtualization.bb |  27 
 5 files changed, 272 insertions(+)
 create mode 100644 conf/distro/fsl-qoriq.conf
 create mode 100644 recipes-fsl/images/fsl-image-networking-full.bb
 create mode 100644 recipes-fsl/images/fsl-image-networking.bb
 create mode 100644 recipes-fsl/packagegroups/packagegroup-fsl-networking.bb
 create mode 100644 recipes-fsl/packagegroups/packagegroup-fsl-virtualization.bb

-- 
2.9.3

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [Question] IMAGE_FSTYPES has no effect on master

2017-01-09 Thread Daiane Angolini
On Sat, Jan 7, 2017 at 2:08 AM, Amin Bandali  wrote:
> Hello Daiane,
>
> Thanks for the reply, that indeed worked! It'd be nice to have this
> change merged upstream.

Great!

Can you, please, prepare the patch and send it to review?


Daiane
>
> Amin
>
> On Fri, Jan 6, 2017 at 10:30 AM, Daiane Angolini  
> wrote:
>> On Thu, Jan 5, 2017 at 9:33 PM, Amin Bandali  wrote:
>>> Hello,
>>>
>>> Up until krogoth, I could adjust IMAGE_FSTYPES in my local.conf to generate
>>> various types of archives:
>>>
>>> IMAGE_FSTYPES += "tar.bz2 tar.gz"
>>>
>>> However, I've noticed that this has no effect on master, and only wic.gz
>>> archives are generated.
>>>
>>> The only relevant piece of information I came across was the following 
>>> commit:
>>>
>>> https://github.com/Freescale/meta-freescale-3rdparty/commit/038b0b737f55ebd2cbc29c91c8274fed422142d4
>>>
>>> Any thoughts on how I could generate other image types on master, like I 
>>> used to
>>> on krogoth?
>>
>> Please, try to change the code on
>> https://github.com/Freescale/meta-freescale-3rdparty/blob/master/conf/machine/wandboard.conf#L49
>>
>> Instead of
>> IMAGE_FSTYPES = "wic.gz"
>>
>> use
>>
>> IMAGE_FSTYPES ?= "wic.gz"
>>
>>
>> Keep IMAGE_FSTYPES += "tar.bz2 tar.gz" in your local.conf, give it a
>> try and let us know.
>>
>> Daiane
>>>
>>> (I need a tar.gz or tar.bz2 so that I can un-tar them with sudo so that all 
>>> the
>>> files and directories have correct permissions. Because the files and 
>>> folders
>>> generated by bitbake in this directory
>>> {YOCTO_BUILD_DIR}/tmp/work/wandboard-poky-linux-gnueabi/{IMAGE}/1.0-r0/rootfs
>>> are owned by a regular user and when booting over NFS, those permissions 
>>> cause
>>> trouble.)
>>>
>>> Thanks,
>>> Amin
>>> --
>>> ___
>>> meta-freescale mailing list
>>> meta-freescale@yoctoproject.org
>>> https://lists.yoctoproject.org/listinfo/meta-freescale
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] Errors building the Chromium browser

2017-01-09 Thread Gary Thomas

On 2017-01-09 11:06, Shree wrote:

Hello All,



I am trying to build the yocto images with the Chromium browser integrated into 
it.

For that I followed the info. given in i.MX yocto Project's user guide and I 
added below lines in my local.conf file

CORE_IMAGE_EXTRA_INSTALL += "chromium libexif"

LICENSE_FLAGS_WHITELIST="commercial"



and Started the build but I am getting below errors:

ERROR: Nothing RPROVIDES 'chromium' (but
/home/hrushi/fsl-release-bsp/sources/meta-fsl-bsp-release/imx/meta-sdk/recipes-fsl/images/fsl-image-qt5.bb
 RDEPENDS on
or otherwise requires it)
ERROR: chromium was skipped: Recipe is blacklisted: BROKEN: fails to build with 
gcc-6
NOTE: Runtime target 'chromium' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['chromium']
ERROR: Required build target 'fsl-image-qt5' has no buildable providers.
Missing or unbuildable dependency chain was: ['fsl-image-qt5', 'chromium']


What version/branch of the metadata (OE-core/Yocto layers, meta-browser, etc)
are you using?

--

Gary Thomas |  Consulting for the
MLB Associates  |Embedded world

--
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] mfgtool-initramfs-image.bbclass conflict with other layers

2017-01-09 Thread Mirza Krak
2017-01-05 20:25 GMT+01:00 Mirza Krak :
> 2017-01-05 20:22 GMT+01:00 Mirza Krak :
>> Hi.
>>
>> My first post on this list, be gentle :).
>>
>> I am running morty branch and trying to build for "colibri-vf" target.
>>
>> Here is my setup:
>> meta
>> meta-poky
>> meta-yocto-bsp= "morty:5aa481dfedfd089f0d6e8a3bae1b84134d5dff4c"
>> meta-freescale= "morty:6ec09e6a0f09d1cb9c3761b339590c0a0baeeeb3"
>> meta-fsl-arm  = "master:154ccf1e8b08e3d6219bd455b7dfe9ff7ab975b0"
>> meta-fsl-arm-extra = "morty:69ed94bb781a9c1bfbba4fb3026e4cbf3a194878"
>> meta-toradex-bsp-common = 
>> "morty-next:ad286efa19257f83985f5f5844a2d500118e40ef"
>> meta-toradex-nxp  = "morty-next:06d4bf9c8b936976d2469b50680a2bbb53cb6f54"
>> meta-mender-core  = "master:10b22602b5a3a8615fcb58b55ae8191712365cf6"
>> oe-meta-go= "master:fbd51ce7e5acaf1ec298a384f1b3fb791ee7483a"
>>
>> And I am running in to a parse error but I can not determain which
>> layer is to blame.
>>
>> In meta-mender-core there is a file called mender-image.bbclass that
>> does following:
>> IMAGE_CLASSES += "mender-sdimg mender-artifactimg"
>> IMAGE_FSTYPES_append = " sdimg mender"
>>
>> But when I run "bitbake " I get the following error:
>> ERROR: 
>> /home/mirzak/project/mender.io/ubifs-support/layers/meta-fsl-arm/recipes-fsl/images/fsl-image-mfgtool-initramfs.bb:
>> No IMAGE_CMD defined for IMAGE_FSTYPES entry 'mender' - possibly
>> invalid type name or missing support class
>> ERROR: 
>> /home/mirzak/project/mender.io/ubifs-support/layers/meta-freescale/recipes-fsl/images/fsl-image-mfgtool-initramfs.bb:
>> No IMAGE_CMD defined for IMAGE_FSTYPES entry 'mender' - possibly
>> invalid type name or missing support class
>> ERROR: Failed to parse recipe:
>> /home/mirzak/project/mender.io/ubifs-support/layers/meta-fsl-arm/recipes-fsl/images/fsl-image-mfgtool-initramfs.bb
>>
>> Now looked at fsl-image-mfgtool-initramfs.bb and it does modify 
>> IMAGE_CLASSES.
>>
>> I changed the following line:
>> IMAGE_CLASSES = "image_types_uboot"
>> to
>> IMAGE_CLASSES += "image_types_uboot"
>>
>> And then everything is fine again, no parse error and it starts to build.
>>
>> I thought that this could be a layer priority issue but it seems that
>> it is in order for me.
>
> Pre-mature send.
>
> meta-mender-core = 6 and meta-freescale = 5.
>
> Any ides on what is to blame? Please let me know if you want me
> produce more debug output.
>

re-send, since my initial mail is in "waiting for moderator approval".
I am member on the list now so hopefully this will go all the way.

Best Regards
Mirza
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] Errors building the Chromium browser

2017-01-09 Thread Shree

Hello All,

I am trying to build the yocto images with the Chromium browser 
integrated into it.


For that I followed the info. given in i.MX yocto Project's user guide 
and I added below lines in my local.conf file


CORE_IMAGE_EXTRA_INSTALL += "chromium libexif"

LICENSE_FLAGS_WHITELIST="commercial"

and Started the build but I am getting below errors:

ERROR: Nothing RPROVIDES 'chromium' (but 
/home/hrushi/fsl-release-bsp/sources/meta-fsl-bsp-release/imx/meta-sdk/recipes-fsl/images/fsl-image-qt5.bb 
RDEPENDS on or otherwise requires it)
ERROR: chromium was skipped: Recipe is blacklisted: BROKEN: fails to 
build with gcc-6

NOTE: Runtime target 'chromium' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['chromium']
ERROR: Required build target 'fsl-image-qt5' has no buildable providers.
Missing or unbuildable dependency chain was: ['fsl-image-qt5', 'chromium']

Please help me solve these errors.

Best Regards,

Shrikant

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale