From 325626b659b53464f36e8ab7826ca2bd5b6bae9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Holz?= Date: Tue, 7 May 2024 13:35:05 +0200 Subject: [PATCH] Meta: Add virtio input devices to the RISC-V machine in run.py --- Meta/run.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Meta/run.py b/Meta/run.py index 3ce1ae558986658..710f6c91cac7ff8 100755 --- a/Meta/run.py +++ b/Meta/run.py @@ -725,6 +725,12 @@ def set_up_machine_devices(config: Configuration): config.extra_arguments.extend(["-serial", "stdio"]) config.kernel_cmdline.extend(["serial_debug", "nvme_poll"]) config.qemu_cpu = None + config.add_devices( + [ + "virtio-keyboard", + "virtio-tablet", + ] + ) return # Machine specific base setups