diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-12-08 23:06:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-12-08 23:29:23 +0100 |
commit | a182e94e2535e13f8c18132ec461f5c8abd3e003 (patch) | |
tree | 0a4e37396e54827d777e243e6b1691d2fcc89e38 /gnu/system | |
parent | c3ea85d110dbad391045a09ab7e382b3007deff9 (diff) | |
download | patches-a182e94e2535e13f8c18132ec461f5c8abd3e003.tar patches-a182e94e2535e13f8c18132ec461f5c8abd3e003.tar.gz |
linux-initrd: Add the 'virtio_console' module for QEMU guests.
* gnu/system/linux-initrd.scm (base-initrd)[virtio-modules]: Add
"virtio_console".
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/linux-initrd.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 27e3f19402..ee6ce48828 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -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." (define virtio-modules ;; 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 ;; Modules needed to mount CIFS file systems. |