diff options
author | Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> | 2024-11-12 16:27:05 -0700 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2025-03-30 11:13:36 -0600 |
commit | f6864f5dd79c2a17dbd23cc4934d4372795689be (patch) | |
tree | 5e81db9fdfef86f96c1b3b7d44d530f5982c6bf8 | |
parent | a54f33f0e2a29aeb81450477b5931d54c61e3058 (diff) | |
download | meta-xilinx-f6864f5dd79c2a17dbd23cc4934d4372795689be.tar.gz |
layer.conf: Add meta-qt5 layer to BBFILES_DYNAMIC
1. Add meta-qt5 layer to BBFILES_DYNAMIC variable.
2. Update LAYERRECOMMENDS variable with all dynamic layers and
other recipes depends layer.
Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r-- | meta-xilinx-demos/conf/layer.conf | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/meta-xilinx-demos/conf/layer.conf b/meta-xilinx-demos/conf/layer.conf index 1f4b6b64..afebeaf1 100644 --- a/meta-xilinx-demos/conf/layer.conf +++ b/meta-xilinx-demos/conf/layer.conf | |||
@@ -10,18 +10,29 @@ BBFILE_PATTERN_xilinx-demos = "^${LAYERDIR}/" | |||
10 | BBFILE_PRIORITY_xilinx-demos = "5" | 10 | BBFILE_PRIORITY_xilinx-demos = "5" |
11 | 11 | ||
12 | LAYERDEPENDS_xilinx-demos = "core" | 12 | LAYERDEPENDS_xilinx-demos = "core" |
13 | LAYERRECOMMENDS_xilinx-demos = "openembedded-layer" | 13 | LAYERRECOMMENDS_xilinx-demos = "\ |
14 | openembedded-layer \ | ||
15 | jupyter-layer \ | ||
16 | openamp-layer \ | ||
17 | ros-common-layer \ | ||
18 | ros2-layer \ | ||
19 | ros2-jazzy-layer \ | ||
20 | qt5-layer \ | ||
21 | amd-adaptive-socs-bsp \ | ||
22 | " | ||
14 | 23 | ||
15 | LAYERSERIES_COMPAT_xilinx-demos = "scarthgap" | 24 | LAYERSERIES_COMPAT_xilinx-demos = "scarthgap" |
16 | 25 | ||
17 | # Define dynamic layers | 26 | # Define dynamic layers |
18 | BBFILES_DYNAMIC += " \ | 27 | BBFILES_DYNAMIC += " \ |
19 | jupyter-layer:${LAYERDIR}/dynamic-layers/meta-jupyter/recipes-*/*/*.bb \ | 28 | jupyter-layer:${LAYERDIR}/dynamic-layers/meta-jupyter/recipes-*/*/*.bb \ |
20 | jupyter-layer:${LAYERDIR}/dynamic-layers/meta-jupyter/recipes-*/*/*.bbappend \ | 29 | jupyter-layer:${LAYERDIR}/dynamic-layers/meta-jupyter/recipes-*/*/*.bbappend \ |
21 | openamp-layer:${LAYERDIR}/dynamic-layers/meta-openamp/recipes-*/*/*.bb \ | 30 | openamp-layer:${LAYERDIR}/dynamic-layers/meta-openamp/recipes-*/*/*.bb \ |
22 | openamp-layer:${LAYERDIR}/dynamic-layers/meta-openamp/recipes-*/*/*.bbappend \ | 31 | openamp-layer:${LAYERDIR}/dynamic-layers/meta-openamp/recipes-*/*/*.bbappend \ |
23 | ros-common-layer:${LAYERDIR}/dynamic-layers/meta-ros/meta-ros-common/recipes-*/*/*.bb \ | 32 | ros-common-layer:${LAYERDIR}/dynamic-layers/meta-ros/meta-ros-common/recipes-*/*/*.bb \ |
24 | ros-common-layer:${LAYERDIR}/dynamic-layers/meta-ros/meta-ros-common/recipes-*/*/*.bbappend \ | 33 | ros-common-layer:${LAYERDIR}/dynamic-layers/meta-ros/meta-ros-common/recipes-*/*/*.bbappend \ |
25 | ros-common-layer:${LAYERDIR}/dynamic-layers/meta-ros/meta-ros2-jazzy/recipes-*/*/*.bb \ | 34 | ros2-jazzy-layer:${LAYERDIR}/dynamic-layers/meta-ros/meta-ros2-jazzy/recipes-*/*/*.bb \ |
26 | ros-common-layer:${LAYERDIR}/dynamic-layers/meta-ros/meta-ros2-jazzy/recipes-*/*/*.bbappend \ | 35 | ros2-jazzy-layer:${LAYERDIR}/dynamic-layers/meta-ros/meta-ros2-jazzy/recipes-*/*/*.bbappend \ |
27 | " | 36 | qt5-layer:${LAYERDIR}/dynamic-layers/meta-qt5/recipes-*/*/*.bb \ |
37 | qt5-layer:${LAYERDIR}/dynamic-layers/meta-qt5/recipes-*/*/*.bbappend \ | ||
38 | " | ||