Merge pull request #51 from nix-community/aarch64
kexec-installer: make serial console more universal
This commit is contained in:
commit
209b1d9ee6
1 changed files with 5 additions and 5 deletions
|
@ -85,11 +85,11 @@ in {
|
|||
'';
|
||||
|
||||
# IPMI SOL console redirection stuff
|
||||
boot.kernelParams = [
|
||||
"console=ttyS0,115200n8"
|
||||
"console=ttyAMA0,115200n8"
|
||||
"console=tty0"
|
||||
];
|
||||
boot.kernelParams =
|
||||
[ "console=ttyS0,115200" ] ++
|
||||
(lib.optional (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) "console=ttyAMA0,115200") ++
|
||||
(lib.optional (pkgs.stdenv.hostPlatform.isRiscV) "console=ttySIF0,115200") ++
|
||||
[ "console=tty0" ];
|
||||
|
||||
documentation.enable = false;
|
||||
# Not really needed. Saves a few bytes and the only service we are running is sshd, which we want to be reachable.
|
||||
|
|
Loading…
Reference in a new issue