vm: add arguments to use virt machine type for qemu-riscv64. * gnu/system/vm.scm (system-qemu-image/shared-store-script): When target riscv64, add arguments to set qemu virt machine type. Change-Id: I974c82fdd2d5bfc01caff9e6411db38e472b5cd4 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
1 files changed, 4 insertions(+), 0 deletions(-) M gnu/system/vm.scm
M gnu/system/vm.scm => gnu/system/vm.scm +4 -0
@@ 295,6 295,10 @@ useful when FULL-BOOT? is true." "-initrd" #$(file-append os "/initrd") (format #f "-append ~s" (string-join #$kernel-arguments " ")))) ;; Default qemu-riscv64 have not PCI, virt have it, so we set it. #$@(if (target-riscv64? (or target system)) #~("-M" "virt") #~()) #$@(common-qemu-options (if volatile? base-image rw-image) (map file-system-mapping-source (cons %store-mapping mappings))