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-02 19:35:54 -0700
commit4844bb6668ef6b3fb94830bfd54bfa04205595b3 (patch)
treea01e37a64c5f827e730fc0510d60f6ff29ba51fa /meta-xilinx-core/conf/layer.conf
parent7716b3c31fdd8fd98518f943fa9b556af3942de1 (diff)
downloadmeta-xilinx-4844bb6668ef6b3fb94830bfd54bfa04205595b3.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.conf28
1 files changed, 22 insertions, 6 deletions
diff --git a/meta-xilinx-core/conf/layer.conf b/meta-xilinx-core/conf/layer.conf
index 42d74d6c..6e6045be 100644
--- a/meta-xilinx-core/conf/layer.conf
+++ b/meta-xilinx-core/conf/layer.conf
@@ -50,10 +50,26 @@ XILINX_RELEASE_VERSION ??= "v2022.2"
50 50
51BUILDCFG_VARS:append = " XILINX_RELEASE_VERSION" 51BUILDCFG_VARS:append = " XILINX_RELEASE_VERSION"
52 52
53PREFERRED_VERSION_qemu-xilinx ?= "v6.1.0-xilinx-${XILINX_RELEASE_VERSION}%" 53XILINX_QEMU_VERSION[v2022.1] = "v6.1.0-xilinx-v2022.1%"
54PREFERRED_VERSION_qemu-xilinx-native ?= "v6.1.0-xilinx-${XILINX_RELEASE_VERSION}%" 54XILINX_QEMU_VERSION[v2022.2] = "v6.1.0-xilinx-v2022.2%"
55PREFERRED_VERSION_qemu-xilinx-system-native ?= "v6.1.0-xilinx-${XILINX_RELEASE_VERSION}%" 55XILINX_QEMU_VERSION[v2023.1] = "v6.1.0-xilinx-v2023.1%"
56PREFERRED_VERSION_qemu-xilinx ?= "${@d.getVarFlag('XILINX_QEMU_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
57PREFERRED_VERSION_qemu-xilinx-native ?= "${@d.getVarFlag('XILINX_QEMU_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
58PREFERRED_VERSION_qemu-xilinx-system-native ?= "${@d.getVarFlag('XILINX_QEMU_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
56PREFERRED_VERSION_qemu-devicetrees ?= "xilinx-${XILINX_RELEASE_VERSION}%" 59PREFERRED_VERSION_qemu-devicetrees ?= "xilinx-${XILINX_RELEASE_VERSION}%"
57PREFERRED_VERSION_arm-trusted-firmware ?= "2.6-xilinx-${XILINX_RELEASE_VERSION}%" 60
58PREFERRED_VERSION_u-boot-xlnx ?= "v2021.01-xilinx-${XILINX_RELEASE_VERSION}%" 61XILINX_ATF_VERSION[v2022.1] = "2.6-xilinx-v2022.1%"
59PREFERRED_VERSION_linux-xlnx ?= "${@'5.15.19' if d.getVar("XILINX_RELEASE_VERSION") == 'v2022.1' else '5.15.36'}%" 62XILINX_ATF_VERSION[v2022.2] = "2.6-xilinx-v2022.2%"
63XILINX_ATF_VERSION[v2023.1] = "2.8-xilinx-v2023.1%"
64PREFERRED_VERSION_arm-trusted-firmware ?= "${@d.getVarFlag('XILINX_ATF_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
65
66XILINX_UBOOT_VERSION[v2022.1] = "v2021.01-xilinx-v2022.1%"
67XILINX_UBOOT_VERSION[v2022.2] = "v2021.01-xilinx-v2022.2%"
68XILINX_UBOOT_VERSION[v2023.1] = "v2021.01-xilinx-v2023.1%"
69
70PREFERRED_VERSION_u-boot-xlnx ?= "${@d.getVarFlag('XILINX_UBOOT_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"
71
72XILINX_LINUX_VERSION[v2022.1] = "5.15.19-xilinx-v2022.1%"
73XILINX_LINUX_VERSION[v2022.2] = "5.15.36-xilinx-v2022.2%"
74XILINX_LINUX_VERSION[v2023.1] = "5.15.0-xilinx-v2023.1%"
75PREFERRED_VERSION_linux-xlnx ?= "${@d.getVarFlag('XILINX_LINUX_VERSION', d.getVar('XILINX_RELEASE_VERSION')) or 'undefined'}"