linux-initrd: Add the 'virtio_console' module for QEMU guests.

* gnu/system/linux-initrd.scm (base-initrd)[virtio-modules]: Add
  "virtio_console".
master
Ludovic Courtès 2014-12-08 23:06:57 +01:00
parent c3ea85d110
commit a182e94e25
1 changed files with 2 additions and 1 deletions

View File

@ -166,7 +166,8 @@ modules can be listed in EXTRA-MODULES. They will be added to the initrd, and
loaded at boot time in the order in which they appear." loaded at boot time in the order in which they appear."
(define virtio-modules (define virtio-modules
;; Modules for Linux para-virtualized devices, for use in QEMU guests. ;; Modules for Linux para-virtualized devices, for use in QEMU guests.
'("virtio_pci" "virtio_balloon" "virtio_blk" "virtio_net")) '("virtio_pci" "virtio_balloon" "virtio_blk" "virtio_net"
"virtio_console"))
(define cifs-modules (define cifs-modules
;; Modules needed to mount CIFS file systems. ;; Modules needed to mount CIFS file systems.