From: Ting Liu Date: Fri, 10 Jul 2015 09:45:20 +0000 (+0800) Subject: layer.conf: include layer-specific bb files X-Git-Tag: 2.1~535 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=8800258fd611baf2dc62c8c620a4a2fdb75ef148;p=meta-freescale.git 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 Signed-off-by: Otavio Salvador --- 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 \ # layer is included in our configuration BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bbappend' % layer \ for layer in BBFILE_COLLECTIONS.split())}" +# Add layer-specific bb files too +BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bb' % layer \ + for layer in BBFILE_COLLECTIONS.split())}"