diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-11-17 00:55:36 -0800 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2018-11-19 18:21:43 +0200 |
commit | c8b696248701ba4183c98d3e7b286d21d22eaa4c (patch) | |
tree | ca6a995e4e0e9bfd9ae9ee77e58efd6309857aea | |
parent | 15838158478518da41709113b0465c70ad49cc32 (diff) | |
download | meta-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>
-rw-r--r-- | conf/layer.conf | 5 |
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())}" |
24 | BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bb' % layer \ | 24 | BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bb' % layer \ |
25 | for layer in BBFILE_COLLECTIONS.split())}" | 25 | for layer in BBFILE_COLLECTIONS.split())}" |
26 | |||
27 | BBFILES_DYNAMIC += " \ | ||
28 | qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bb \ | ||
29 | qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \ | ||
30 | " | ||