diff mbox series

qemuarmv5: Drop QB_DTB conditional for older kernels

Message ID 20231016204523.1185892-1-alejandro@enedino.org
State Accepted, archived
Commit f5dee6290ca750519455e311e429951b8eb7301b
Headers show
Series qemuarmv5: Drop QB_DTB conditional for older kernels | expand

Commit Message

Alejandro Enedino Hernandez Samaniego Oct. 16, 2023, 8:45 p.m. UTC
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'

Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org>
---
 meta/conf/machine/qemuarmv5.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/conf/machine/qemuarmv5.conf b/meta/conf/machine/qemuarmv5.conf
index f0a86f1e4c..d648e01121 100644
--- a/meta/conf/machine/qemuarmv5.conf
+++ b/meta/conf/machine/qemuarmv5.conf
@@ -14,6 +14,6 @@  QB_SYSTEM_NAME = "qemu-system-arm"
 QB_MACHINE = "-machine versatilepb"
 QB_GRAPHICS = "-device virtio-gpu-pci"
 QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device usb-kbd"
-QB_DTB = "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}"
+QB_DTB ?= "zImage-versatile-pb.dtb"
 
 KMACHINE:qemuarmv5 = "arm-versatile-926ejs"