From 52f1381685285412162e2a2b8c71cb40533a4007 Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Thu, 7 Jan 2021 20:11:38 +0100 Subject: [PATCH] layer.conf: Fix dependency to freescale layer The name to use is actually the name defined in the layer.conf of the target layer and not the name of the directory itself (which can actually change). BugzID: 69469 --- conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/layer.conf b/conf/layer.conf index 9efa42d..a9a5b4d 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -6,7 +6,7 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ ${LAYERDIR}/recipes-*/*/*.bbappend" BBFILES_DYNAMIC += "meta-ublox-modules:${LAYERDIR}/bbappends/ublox-module/recipes-*/*/*.bbappend" -BBFILES_DYNAMIC += "meta-freescale:${LAYERDIR}/freescale/recipes-*/*/*.bb*" +BBFILES_DYNAMIC += "freescale-layer:${LAYERDIR}/freescale/recipes-*/*/*.bb*" BBFILE_COLLECTIONS += "netmodule-bsp"