Skip to content

Commit

Permalink
Merge pull request #1142 from AkihiroSuda/dev
Browse files Browse the repository at this point in the history
qemu: do not use `-device ramfb` for RISC-V
  • Loading branch information
AkihiroSuda committed Nov 2, 2022
2 parents 5b08cc5 + ffd6422 commit e2652c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/qemu/qemu.go
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ func Cmdline(cfg Config) (string, []string, error) {
args = appendArgsIfNoConflict(args, "-display", *y.Video.Display)
}
switch *y.Arch {
case limayaml.X8664:
case limayaml.X8664, limayaml.RISCV64:
args = append(args, "-device", "virtio-vga")
args = append(args, "-device", "virtio-keyboard-pci")
args = append(args, "-device", "virtio-mouse-pci")
Expand Down

0 comments on commit e2652c5

Please sign in to comment.