diff options
author | Ting Liu <ting.liu@freescale.com> | 2015-07-10 17:45:20 +0800 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-13 14:00:59 -0300 |
commit | 8800258fd611baf2dc62c8c620a4a2fdb75ef148 (patch) | |
tree | 2ef31eb18d70a26a344fbdafbf75f5169c8f99d6 | |
parent | eac3a1c56631d675dfe9a3d19276c705ecb67a3c (diff) | |
download | meta-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.conf | 3 |
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 |
22 | BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bbappend' % layer \ | 22 | BBFILES += "${@' '.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 | ||
25 | BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bb' % layer \ | ||
26 | for layer in BBFILE_COLLECTIONS.split())}" | ||