summaryrefslogtreecommitdiffstats
path: root/conf/layer.conf
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-11-17 00:55:36 -0800
committerAndrei Gherzan <andrei@gherzan.ro>2018-11-19 18:21:43 +0200
commitc8b696248701ba4183c98d3e7b286d21d22eaa4c (patch)
treeca6a995e4e0e9bfd9ae9ee77e58efd6309857aea /conf/layer.conf
parent15838158478518da41709113b0465c70ad49cc32 (diff)
downloadmeta-raspberrypi-c8b696248701ba4183c98d3e7b286d21d22eaa4c.tar.gz
conf/layer.conf: Use BBFILES_DYNAMIC to handle dynamic-layers
BBFILES_DYNAMIC can be used to activate content only when given layers are present. For now just add qt5 layer to the BBFILES_DYNAMIC list Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'conf/layer.conf')
-rw-r--r--conf/layer.conf5
1 files changed, 5 insertions, 0 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index 1c6224f..6e2fdf6 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -23,3 +23,8 @@ BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bbappend' %
23 for layer in BBFILE_COLLECTIONS.split())}" 23 for layer in BBFILE_COLLECTIONS.split())}"
24BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bb' % layer \ 24BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bb' % layer \
25 for layer in BBFILE_COLLECTIONS.split())}" 25 for layer in BBFILE_COLLECTIONS.split())}"
26
27BBFILES_DYNAMIC += " \
28 qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bb \
29 qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \
30"