summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Enedino Hernandez Samaniego <alejandr@xilinx.com>2019-12-09 01:03:06 -0800
committerAlejandro Enedino Hernandez Samaniego <alejandr@xilinx.com>2020-01-30 13:46:54 -0800
commit741cbe14e4738bb69a45f858607a6c099a541c3a (patch)
treefa57492c69d364b31369d03e0965fa6d1003a17e
parent5d1d818cd6b7ffd1c4990921a6b6a649883f89eb (diff)
downloadmeta-xilinx-741cbe14e4738bb69a45f858607a6c099a541c3a.tar.gz
layer.conf: Include recipe files from a pattern with no directory required
Due to the large amount of recipes required from the ESW repo, include a pattern to parse recipes without requiring a directory per recipe Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com>
-rw-r--r--meta-xilinx-standalone/conf/layer.conf5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-xilinx-standalone/conf/layer.conf b/meta-xilinx-standalone/conf/layer.conf
index ae147475..4ea40468 100644
--- a/meta-xilinx-standalone/conf/layer.conf
+++ b/meta-xilinx-standalone/conf/layer.conf
@@ -3,7 +3,10 @@ BBPATH .= ":${LAYERDIR}"
3 3
4# We have recipes-* directories, add to BBFILES 4# We have recipes-* directories, add to BBFILES
5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ 5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
6 ${LAYERDIR}/recipes-*/*/*.bbappend" 6 ${LAYERDIR}/recipes-*/*/*.bbappend \
7 ${LAYERDIR}/recipes-*/*.bb \
8 ${LAYERDIR}/recipes-*/*.bbappend \
9 "
7 10
8BBFILE_COLLECTIONS += "xilinx-standalone" 11BBFILE_COLLECTIONS += "xilinx-standalone"
9BBFILE_PATTERN_xilinx-standalone = "^${LAYERDIR}/" 12BBFILE_PATTERN_xilinx-standalone = "^${LAYERDIR}/"