1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-14 18:21:41 +03:00
mobile-nixos/modules/stage-0.nix
2021-08-29 19:51:34 -04:00

91 lines
2.5 KiB
Nix

{ config, lib, pkgs, ... }:
# This module provides the `stage-0` build output.
# It is the same configuration, with minor customizations.
let
inherit (lib) mkOption types;
inherit (config.mobile.quirks) supportsStage-0;
inherit (config.mobile.boot.stage-1) kernel;
# A bit dirty, but actually works for what we want.
fdt-forward = pkgs.runCommandNoCC "fdt-forward-for-initrd" {} ''
mkdir -p $out/bin
# /bin/sh is busybox in the initrd, assuredly.
echo "#!/bin/sh" > $out/bin/fdt-forward
cat "${pkgs.mobile-nixos.fdt-forward}/bin/fdt-forward" >> $out/bin/fdt-forward
chmod +x $out/bin/fdt-forward
cp ${pkgs.ubootTools}/bin/fdtgrep $out/bin/
cp ${pkgs.dtc}/bin/dtc $out/bin/
'';
in
{
options = {
mobile.quirks.supportsStage-0 = mkOption {
type = types.bool;
default = false;
description = ''
Set to true when a device, and its kernel, can use kexec.
This will enable booting into the generation's kernel.
'';
};
mobile.quirks.fdt-forward = {
nodes = mkOption {
type = types.listOf types.str;
default = [];
description = ''
FDT nodes to forward to the kexec'd system.
'';
};
props = mkOption {
type = types.listOf (types.listOf types.str);
default = [];
example = [
["/soc/mmc@1c10000/wifi@1" "local-mac-address"]
];
description = ''
Pair of [node prop] to forward to the kexec'd system.
Only the prop described on the exact node will be forwarded.
'';
};
};
mobile = {
outputs = {
stage-0 = mkOption {
internal = true;
description = ''
The configuration, re-evaluated with assumptions for stage-0 use.
'';
};
};
};
};
config = {
mobile.outputs.stage-0 = (config.lib.mobile-nixos.composeConfig {
config = { config, ... }: {
mobile.boot.stage-1.stage = if supportsStage-0 then 0 else 1;
mobile.boot.stage-1.extraUtils = with pkgs; [
{ package = pkgs.kexectools; }
{ package = fdt-forward; }
];
mobile.boot.stage-1.bootConfig.stage-0 = {
forward = {
nodes = [
"/memory"
] ++ config.mobile.quirks.fdt-forward.nodes;
props = [
["/" "serial-number"]
] ++ config.mobile.quirks.fdt-forward.props;
};
};
};
}).config;
};
}