Skip to content

Commit ba02587

Browse files
committed
disko-install: fix serial kernel configuration
1 parent c65f130 commit ba02587

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/disko-install/configuration.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
boot.kernelParams = [
2929
"console=tty0"
3030
]
31-
++ (lib.optional (pkgs.stdenv.hostPlatform.isAarch) "ttyAMA0,115200")
32-
++ (lib.optional (pkgs.stdenv.hostPlatform.isRiscV64) "ttySIF0,115200")
31+
++ (lib.optional (pkgs.stdenv.hostPlatform.isAarch) "console=ttyAMA0,115200")
32+
++ (lib.optional (pkgs.stdenv.hostPlatform.isRiscV64) "console=ttySIF0,115200")
3333
++ [ "console=ttyS0,115200" ];
3434

3535
# reduce closure size

0 commit comments

Comments
 (0)