2020-01-06 23:09:56 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
extlinux-conf-builder =
|
|
|
|
import <nixpkgs/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix> {
|
|
|
|
pkgs = pkgs.buildPackages;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./sd-image.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
boot.loader.grub.enable = false;
|
|
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
|
|
|
|
|
|
|
boot.consoleLogLevel = lib.mkDefault 7;
|
|
|
|
|
|
|
|
boot.kernelParams = [
|
|
|
|
"cma=32M"
|
|
|
|
#"console=ttyS0,115200n8" "console=ttyAMA0,115200n8" "console=tty0"
|
2020-01-07 02:28:54 +01:00
|
|
|
|
2020-01-06 23:30:09 +01:00
|
|
|
"console=ttyS2,1500000n8"
|
|
|
|
"earlycon=uart8250,mmio32,0xff1a0000" "earlyprintk"
|
2020-01-07 02:28:54 +01:00
|
|
|
|
|
|
|
# The last console parameter will be where the boot process will print
|
|
|
|
# its messages. Comment or move abot ttyS2 for better serial debugging.
|
|
|
|
"console=tty0"
|
2020-01-06 23:09:56 +01:00
|
|
|
];
|
|
|
|
|
2020-01-06 23:30:09 +01:00
|
|
|
services.mingetty.serialSpeed = [ 1500000 115200 57600 38400 9600 ];
|
|
|
|
|
2020-01-06 23:09:56 +01:00
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
];
|
|
|
|
|
|
|
|
sdImage = {
|
|
|
|
populateRootCommands = ''
|
|
|
|
mkdir -p ./files/boot
|
|
|
|
${extlinux-conf-builder} -t 3 -c ${config.system.build.toplevel} -d ./files/boot
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
# the installation media is also the installation target,
|
|
|
|
# so we don't want to provide the installation configuration.nix.
|
|
|
|
installer.cloneConfig = false;
|
|
|
|
}
|