From 0a2e89e8668b9f425b9a7d1a1eaf49e9a083ac93 Mon Sep 17 00:00:00 2001 From: Adrian Calianu Date: Thu, 10 Aug 2017 10:26:26 +0200 Subject: do not force layer to depend on an ARCH specific BSP layer Since this layer accomodate different BSPs from different providers is not possible to be depent on all providers layer. We need to live with some warnings until find a better solution. Signed-off-by: Adrian Calianu --- README | 18 +++++++++++++++++- conf/layer.conf | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/README b/README index 9a93c03..608e14f 100644 --- a/README +++ b/README @@ -49,15 +49,31 @@ it. Assuming the enea-bsp-arm layer exists at the top-level of your yocto build tree, you can add it to the build system by adding the location of the enea-bsp-arm layer to bblayers.conf, along with any -other layers needed. e.g.: +other layers needed. This is dependent on the Yocto machine you +need to build for: + ------------------------------------------- + local.conf + MACHINE = "ls1021aiot" + bblayers.conf BBLAYERS ?= " \ /path/to/yocto/meta \ /path/to/yocto/meta-poky \ /path/to/yocto/meta-enea-bsp-common \ /path/to/yocto/meta-freescale \ " + ------------------------------------------- + local.conf + MACHINE = "cn8304" + + bblayers.conf + BBLAYERS ?= " \ + /path/to/yocto/meta \ + /path/to/yocto/meta-poky \ + /path/to/yocto/meta-enea-bsp-common \ + " + ------------------------------------------- II. Misc ======== diff --git a/conf/layer.conf b/conf/layer.conf index 4a40645..2ae610a 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -9,4 +9,4 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ BBFILE_COLLECTIONS += "enea-bsp-arm" BBFILE_PATTERN_enea-bsp-arm = "^${LAYERDIR}/" BBFILE_PRIORITY_enea-bsp-arm = "6" -LAYERDEPENDS_enea-bsp-arm = "enea-bsp-common freescale-layer" +LAYERDEPENDS_enea-bsp-arm = "enea-bsp-common" -- cgit v1.2.3-54-g00ecf