diff options
-rw-r--r-- | gnu/system/vm.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 70f7b00116..8c27ff787d 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -168,6 +168,12 @@ environment with the store shared with the host. MAPPINGS is a list of file-systems #:volatile-root? volatile? rest))) + ;; The (QEMU-only) "cirrus" graphics driver is still expected by some + ;; VPS with old QEMU versions. See <https://bugs.gnu.org/36069>. + (initrd-modules (let ((modules (operating-system-initrd-modules os))) + (if (member "cirrus" modules) + modules + (cons "cirrus" modules)))) ;; Disable swap. (swap-devices '()) |