summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/conf/layer.conf
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2023-12-20 14:35:56 -0700
committerMark Hatle <mark.hatle@amd.com>2024-01-30 17:48:07 -0700
commit0d1cfe8de320a2fb470e3b832b249b8e0c820685 (patch)
treea20e2627c30b50bf5566fd4aee9d64850f0b095d /meta-xilinx-core/conf/layer.conf
parent28ba82e414e24ca66ea5d10f026ecdff9818db2c (diff)
downloadmeta-xilinx-0d1cfe8de320a2fb470e3b832b249b8e0c820685.tar.gz
meta-xilinx-core: layer.conf: Default to qemu for arm (32)
Normally we default to qemu-xlnx (the AMD/Xilinx QEMU fork). However, this fork depends on some functionality not present on 32-bit arm. For on-target qemu we need to use the stock QEMU instead. 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.conf5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-xilinx-core/conf/layer.conf b/meta-xilinx-core/conf/layer.conf
index 5e1b5b5c..539688ff 100644
--- a/meta-xilinx-core/conf/layer.conf
+++ b/meta-xilinx-core/conf/layer.conf
@@ -54,7 +54,10 @@ PREFERRED_VERSION_qemu-xilinx ?= "${@d.getVarFlag('XILINX_QEMU_VERSION', d.getVa
54PREFERRED_VERSION_qemu-xilinx-native ?= "${@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'}" 55PREFERRED_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}%" 56PREFERRED_VERSION_qemu-devicetrees ?= "xilinx-${XILINX_RELEASE_VERSION}%"
57PREFERRED_PROVIDER_qemu ?= "qemu-xilinx" 57
58DEFAULT_XILINX_QEMU = "qemu-xilinx"
59DEFAULT_XILINX_QEMU:arm = "qemu"
60PREFERRED_PROVIDER_qemu ?= "${DEFAULT_XILINX_QEMU}"
58 61
59XILINX_ATF_VERSION[v2023.1] = "2.8-xilinx-v2023.1%" 62XILINX_ATF_VERSION[v2023.1] = "2.8-xilinx-v2023.1%"
60XILINX_ATF_VERSION[v2023.2] = "2.8-xilinx-v2023.2%" 63XILINX_ATF_VERSION[v2023.2] = "2.8-xilinx-v2023.2%"