From 8aeb8a297c586e6860ffdd9135543fdf530a67f5 Mon Sep 17 00:00:00 2001 From: Sandeep Gundlupet Raju Date: Tue, 12 Aug 2025 11:41:36 -0600 Subject: [PATCH] qemu-cortex-a9: Fix runqemu errors Fix below runqemu errors for qemu-cortex-a9 machine. runqemu - ERROR - Failed to run qemu: qemu-system-arm: -device virtio-rng-pci,rng=rng0: No 'PCI' bus found for device 'virtio-rng-pci' Signed-off-by: Sandeep Gundlupet Raju --- meta-zephyr-bsp/conf/machine/qemu-cortex-a9.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-zephyr-bsp/conf/machine/qemu-cortex-a9.conf b/meta-zephyr-bsp/conf/machine/qemu-cortex-a9.conf index 9dfee42..e1b026f 100644 --- a/meta-zephyr-bsp/conf/machine/qemu-cortex-a9.conf +++ b/meta-zephyr-bsp/conf/machine/qemu-cortex-a9.conf @@ -14,6 +14,7 @@ QB_MACHINE = "-machine xilinx-zynq-a9" QB_CPU = "-cpu cortex-a9" QB_GRAPHICS = "-nographic -vga none" QB_OPT_APPEND = "-icount shift=3,align=off,sleep=off -rtc clock=vm" +QB_RNG = "" # Zephyr RTOS settings ZEPHYR_INHERIT_CLASSES += "zephyr-qemuboot"