summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-xilinx-standalone/conf/layer.conf13
1 files changed, 9 insertions, 4 deletions
diff --git a/meta-xilinx-standalone/conf/layer.conf b/meta-xilinx-standalone/conf/layer.conf
index 84d83673..ef4a919e 100644
--- a/meta-xilinx-standalone/conf/layer.conf
+++ b/meta-xilinx-standalone/conf/layer.conf
@@ -17,7 +17,12 @@ LAYERRECOMMENDS_xilinx-standalone = "xilinx-microblaze"
17 17
18LAYERSERIES_COMPAT_xilinx-standalone = "scarthgap" 18LAYERSERIES_COMPAT_xilinx-standalone = "scarthgap"
19 19
20PREFERRED_VERSION_plm-firmware ?= "${@d.getVar("XILINX_RELEASE_VERSION").replace('v','')}%" 20# What version of ESW and related should we default to?
21PREFERRED_VERSION_psm-firmware ?= "${@d.getVar("XILINX_RELEASE_VERSION").replace('v','')}%" 21# Note, there is no 'esw' recipe, but we're going to use this for all
22PREFERRED_VERSION_pmu-firmware ?= "${@d.getVar("XILINX_RELEASE_VERSION").replace('v','')}%" 22# of the related items in this layer.
23PREFERRED_VERSION_fsbl-firmware ?= "${@d.getVar("XILINX_RELEASE_VERSION").replace('v','')}%" 23PREFERRED_VERSION_esw ??= "${@(d.getVar('XILINX_RELEASE_VERSION') or 'undefined').replace('v', '')}"
24
25PREFERRED_VERSION_plm-firmware ??= "${PREFERRED_VERSION_esw}%"
26PREFERRED_VERSION_psm-firmware ??= "${PREFERRED_VERSION_esw}%"
27PREFERRED_VERSION_pmu-firmware ??= "${PREFERRED_VERSION_esw}%"
28PREFERRED_VERSION_fsbl-firmware ??= "${PREFERRED_VERSION_esw}%"