summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing Liu <ting.liu@freescale.com>2015-07-10 17:45:20 +0800
committerOtavio Salvador <otavio@ossystems.com.br>2015-07-13 14:00:59 -0300
commit8800258fd611baf2dc62c8c620a4a2fdb75ef148 (patch)
tree2ef31eb18d70a26a344fbdafbf75f5169c8f99d6
parenteac3a1c56631d675dfe9a3d19276c705ecb67a3c (diff)
downloadmeta-freescale-8800258fd611baf2dc62c8c620a4a2fdb75ef148.tar.gz
layer.conf: include layer-specific bb files
Previously layer-specific bbappends are applied when that layer is included in the configuration. There is layer-specific bb files too (like asf_git.bb). Apply the same rule here. Signed-off-by: Ting Liu <ting.liu@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--meta-fsl-arm/conf/layer.conf3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-fsl-arm/conf/layer.conf b/meta-fsl-arm/conf/layer.conf
index e260e623..81d29f59 100644
--- a/meta-fsl-arm/conf/layer.conf
+++ b/meta-fsl-arm/conf/layer.conf
@@ -21,3 +21,6 @@ ${FSL_MIRROR} http://download.ossystems.com.br/bsp/freescale/source/ \n \
21# layer is included in our configuration 21# layer is included in our configuration
22BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bbappend' % layer \ 22BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bbappend' % layer \
23 for layer in BBFILE_COLLECTIONS.split())}" 23 for layer in BBFILE_COLLECTIONS.split())}"
24# Add layer-specific bb files too
25BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bb' % layer \
26 for layer in BBFILE_COLLECTIONS.split())}"