summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine
diff options
context:
space:
mode:
authorAlejandro Hernandez Samaniego <alejandro@enedino.org>2023-10-16 14:45:23 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-10-17 11:41:34 +0100
commite1e50ebc4ea06026260370ed8bbc700f6175f674 (patch)
tree7e2d3cbc1c3c76d7695d25d544306da718a0166f /meta/conf/machine
parent26e3d58e71e5a88ac2c2d34845f45c77635cd2d4 (diff)
downloadpoky-e1e50ebc4ea06026260370ed8bbc700f6175f674.tar.gz
qemuarmv5: Drop QB_DTB conditional for older kernels
The conditional for the DTB nomenclature hasnt changed and the 4.7 kernel is old enough at this point, hence this check has become unnecessary' (From OE-Core rev: f5dee6290ca750519455e311e429951b8eb7301b) Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine')
-rw-r--r--meta/conf/machine/qemuarmv5.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/qemuarmv5.conf b/meta/conf/machine/qemuarmv5.conf
index f0a86f1e4c..ecd2873d91 100644
--- a/meta/conf/machine/qemuarmv5.conf
+++ b/meta/conf/machine/qemuarmv5.conf
@@ -14,6 +14,6 @@ QB_SYSTEM_NAME = "qemu-system-arm"
14QB_MACHINE = "-machine versatilepb" 14QB_MACHINE = "-machine versatilepb"
15QB_GRAPHICS = "-device virtio-gpu-pci" 15QB_GRAPHICS = "-device virtio-gpu-pci"
16QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device usb-kbd" 16QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device usb-kbd"
17QB_DTB = "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}" 17QB_DTB ?= "zImage-versatile-pb.dtb"
18 18
19KMACHINE:qemuarmv5 = "arm-versatile-926ejs" 19KMACHINE:qemuarmv5 = "arm-versatile-926ejs"