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