Skip to content

Commit

Permalink
Meta: Add virtio input devices to the RISC-V machine in run.py
Browse files Browse the repository at this point in the history
  • Loading branch information
spholz committed May 7, 2024
1 parent 3e4432f commit 325626b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Meta/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 325626b

Please sign in to comment.