summary refs log tree commit diff
path: root/nixos/tests/installer.nix
diff options
context:
space:
mode:
authorBenjamin Staffin <benley@gmail.com>2020-04-22 20:30:19 -0400
committerBenjamin Staffin <benley@gmail.com>2020-04-22 20:30:19 -0400
commitf09b8be73dbfd6d25cc7fe8ee2352dfc4751b231 (patch)
treee566bfbd3ae7a38a57469b83760e7655c8f12c92 /nixos/tests/installer.nix
parentffc0e67742b5ecb9116b1fb4689445d5dccf7f40 (diff)
downloadnixpkgs-f09b8be73dbfd6d25cc7fe8ee2352dfc4751b231.tar
nixpkgs-f09b8be73dbfd6d25cc7fe8ee2352dfc4751b231.tar.gz
nixpkgs-f09b8be73dbfd6d25cc7fe8ee2352dfc4751b231.tar.bz2
nixpkgs-f09b8be73dbfd6d25cc7fe8ee2352dfc4751b231.tar.lz
nixpkgs-f09b8be73dbfd6d25cc7fe8ee2352dfc4751b231.tar.xz
nixpkgs-f09b8be73dbfd6d25cc7fe8ee2352dfc4751b231.tar.zst
nixpkgs-f09b8be73dbfd6d25cc7fe8ee2352dfc4751b231.zip
installer test: Fix grub extraConfig syntax
It looks like `terminal_output.serial` is incorrect, according to the
grub documentation:

https://www.gnu.org/software/grub/manual/grub/html_node/Serial-terminal.html

Related PR: #79406
Diffstat (limited to 'nixos/tests/installer.nix')
-rw-r--r--nixos/tests/installer.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index c5abd458ec9..8d1bfa96d03 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -29,7 +29,7 @@ let
             boot.loader.grub.splashImage = null;
           ''}
 
-          boot.loader.grub.extraConfig = "serial; terminal_output.serial";
+          boot.loader.grub.extraConfig = "serial; terminal_output serial";
           ${if grubUseEfi then ''
             boot.loader.grub.device = "nodev";
             boot.loader.grub.efiSupport = true;