1
0
liminix/modules/outputs/boot-extlinux.nix

47 lines
1.0 KiB
Nix
Raw Normal View History

2023-12-02 15:31:55 +00:00
{
config,
pkgs,
lib,
...
2023-12-02 15:31:55 +00:00
}:
let
inherit (lib)
mkIf
mkEnableOption
mkOption
types
concatStringsSep
;
inherit (pkgs.pseudofile) dir symlink;
2023-12-02 15:31:55 +00:00
cfg = config.boot.loader.extlinux;
o = config.system.outputs;
cmdline = concatStringsSep " " config.boot.commandLine;
wantsDtb = config.hardware.dts ? src && config.hardware.dts.src != null;
in
{
2023-12-02 15:31:55 +00:00
options.boot.loader.extlinux.enable = mkEnableOption "extlinux";
config = mkIf cfg.enable {
system.outputs.bootfiles = pkgs.runCommand "extlinux" { } ''
2023-12-02 15:31:55 +00:00
mkdir $out
cd $out
${if wantsDtb then "cp ${o.dtb} dtb" else "true"}
cp ${o.initramfs} initramfs
cp ${o.kernel.zImage} kernel
mkdir extlinux
cat > extlinux/extlinux.conf << _EOF
2023-12-02 15:31:55 +00:00
menu title Liminix
timeout 40
2023-12-02 15:31:55 +00:00
label Liminix
kernel /boot/kernel
# initrd /boot/initramfs
2024-01-07 20:30:23 +00:00
append ${cmdline}
${if wantsDtb then "fdt /boot/dtb" else ""}
2023-12-02 15:31:55 +00:00
_EOF
'';
filesystem = dir {
boot = symlink config.system.outputs.bootfiles;
};
2023-12-02 15:31:55 +00:00
};
}