From: Denys Dmytriyenko Date: Mon, 6 Mar 2023 21:16:56 +0000 (+0000) Subject: conf/layer.conf: explicitly depend on networking-layer X-Git-Tag: 15.0.1~6 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=d432c2a926278e928a0e04467ff2be334f786d2e;p=AGL%2Fmeta-agl-demo.git conf/layer.conf: explicitly depend on networking-layer As meta-agl-demo now explicitly depends on meta-flutter layer, it appears it uses networkmanager package in some of its plugins w/o marking the correct dependency in its own layer.conf. Also, cannelloni is no longer a standalone recipe, but a bbappend against the upstream recipe in meta-networking layer of meta-openembedded repository. To resolve both of the above issues and make yocto-check-layer happy, let's add an explicit dependency on networking-layer. Bug-AGL: SPEC-4685 Change-Id: Ib6781f63bd1f76ccbf2fcd649473bf59407bb7ef Signed-off-by: Denys Dmytriyenko (cherry picked from commit ebac35dea1de30d02c3ba2d48b91a557f9f0c989) --- diff --git a/conf/layer.conf b/conf/layer.conf index 32c6b28bb..4589fbaa7 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -11,4 +11,4 @@ BBFILE_PRIORITY_agldemo = "70" LAYERSERIES_COMPAT_agldemo = "kirkstone" -LAYERDEPENDS_agldemo = "aglcore qt5-layer openembedded-layer meta-flutter" +LAYERDEPENDS_agldemo = "aglcore qt5-layer openembedded-layer networking-layer meta-flutter"