summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/conf/layer.conf
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2022-11-02 19:35:54 -0700
committerMark Hatle <mark.hatle@amd.com>2022-11-10 15:04:42 -0800
commit799f2b1ffd0967dbf7a5d5be8e5fe983e1797a32 (patch)
treeee495eefe989a8611299199c116c950c072a81c7 /meta-xilinx-core/conf/layer.conf
parentf3081bf884d25649c59405d696c3ed448abfb0f3 (diff)
downloadmeta-xilinx-799f2b1ffd0967dbf7a5d5be8e5fe983e1797a32.tar.gz
layer.conf: Revise the PREFERRED_VERSION operations
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core/conf/layer.conf')
-rw-r--r--meta-xilinx-core/conf/layer.conf24
1 files changed, 18 insertions, 6 deletions
diff --git a/meta-xilinx-core/conf/layer.conf b/meta-xilinx-core/conf/layer.conf
index f8626cbc..d852f6b3 100644
--- a/meta-xilinx-core/conf/layer.conf
+++ b/meta-xilinx-core/conf/layer.conf
@@ -48,10 +48,22 @@ XILINX_RELEASE_VERSION ??= "v2022.2"
48 48
49BUILDCFG_VARS:append = " XILINX_RELEASE_VERSION" 49BUILDCFG_VARS:append = " XILINX_RELEASE_VERSION"
50 50
51PREFERRED_VERSION_qemu-xilinx ?= "v6.1.0-xilinx-${XILINX_RELEASE_VERSION}%" 51XILINX_QEMU_VERSION[v2022.1] = "v6.1.0-xilinx-v2022.1%"
52PREFERRED_VERSION_qemu-xilinx-native ?= "v6.1.0-xilinx-${XILINX_RELEASE_VERSION}%" 52XILINX_QEMU_VERSION[v2022.2] = "v6.1.0-xilinx-v2022.2%"
53PREFERRED_VERSION_qemu-xilinx-system-native ?= "v6.1.0-xilinx-${XILINX_RELEASE_VERSION}%" 53PREFERRED_VERSION_qemu-xilinx ?= "${@d.getVarFlag('XILINX_QEMU_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
54PREFERRED_VERSION_qemu-xilinx-native ?= "${@d.getVarFlag('XILINX_QEMU_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
55PREFERRED_VERSION_qemu-xilinx-system-native ?= "${@d.getVarFlag('XILINX_QEMU_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
54PREFERRED_VERSION_qemu-devicetrees ?= "xilinx-${XILINX_RELEASE_VERSION}%" 56PREFERRED_VERSION_qemu-devicetrees ?= "xilinx-${XILINX_RELEASE_VERSION}%"
55PREFERRED_VERSION_arm-trusted-firmware ?= "2.6-xilinx-${XILINX_RELEASE_VERSION}%" 57
56PREFERRED_VERSION_u-boot-xlnx ?= "v2021.01-xilinx-${XILINX_RELEASE_VERSION}%" 58XILINX_ATF_VERSION[v2022.1] = "2.6-xilinx-v2022.1%"
57PREFERRED_VERSION_linux-xlnx ?= "${@'5.15.19' if d.getVar("XILINX_RELEASE_VERSION") == 'v2022.1' else '5.15.36'}%" 59XILINX_ATF_VERSION[v2022.2] = "2.6-xilinx-v2022.2%"
60PREFERRED_VERSION_arm-trusted-firmware ?= "${@d.getVarFlag('XILINX_ATF_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
61
62XILINX_UBOOT_VERSION[v2022.1] = "v2021.01-xilinx-v2022.1%"
63XILINX_UBOOT_VERSION[v2022.2] = "v2021.01-xilinx-v2022.2%"
64
65PREFERRED_VERSION_u-boot-xlnx ?= "${@d.getVarFlag('XILINX_UBOOT_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
66
67XILINX_LINUX_VERSION[v2022.1] = "5.15.19-xilinx-v2022.1%"
68XILINX_LINUX_VERSION[v2022.2] = "5.15.36-xilinx-v2022.2%"
69PREFERRED_VERSION_linux-xlnx ?= "${@d.getVarFlag('XILINX_LINUX_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"