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 authored and ADKaster committed May 23, 2024
1 parent 018a28c commit dc92bc2
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 @@ -733,6 +733,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 dc92bc2

Please sign in to comment.