2024-12-23 11:21:58 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
2024-12-23 11:21:58 +00:00
|
|
|
}:
|
|
|
|
let
|
2025-02-10 21:55:08 +00:00
|
|
|
inherit (lib)
|
|
|
|
mkIf
|
|
|
|
mkEnableOption
|
|
|
|
mkOption
|
|
|
|
types
|
|
|
|
concatStringsSep
|
|
|
|
;
|
2024-12-23 11:21:58 +00:00
|
|
|
inherit (pkgs.pseudofile) dir symlink;
|
|
|
|
cfg = config.boot.loader.fit;
|
|
|
|
o = config.system.outputs;
|
|
|
|
cmdline = concatStringsSep " " config.boot.commandLine;
|
|
|
|
wantsDtb = config.hardware.dts ? src && config.hardware.dts.src != null;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
2024-12-23 11:21:58 +00:00
|
|
|
options.boot.loader.fit.enable = mkEnableOption "FIT in /boot";
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2025-02-10 21:55:08 +00:00
|
|
|
system.outputs.bootfiles = pkgs.runCommand "boot-fit" { } ''
|
2024-12-23 11:21:58 +00:00
|
|
|
mkdir $out
|
|
|
|
cd $out
|
|
|
|
cp ${o.uimage} fit
|
|
|
|
'';
|
|
|
|
filesystem = dir {
|
|
|
|
boot = symlink config.system.outputs.bootfiles;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|