2023-02-10 23:10:44 +00:00
|
|
|
{
|
2024-06-30 15:58:29 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
2023-02-10 23:10:44 +00:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (lib) mkOption types concatStringsSep;
|
2024-06-29 21:59:27 +00:00
|
|
|
inherit (pkgs) liminix writeText;
|
2023-12-05 17:29:01 +00:00
|
|
|
o = config.system.outputs;
|
2023-02-10 23:10:44 +00:00
|
|
|
in
|
|
|
|
{
|
2023-04-10 18:59:09 +00:00
|
|
|
imports = [
|
2024-12-19 14:32:44 +00:00
|
|
|
./outputs/squashfs.nix
|
2023-11-08 21:48:45 +00:00
|
|
|
./outputs/vmroot.nix
|
2024-12-23 10:31:22 +00:00
|
|
|
./outputs/boot-extlinux.nix
|
2024-12-23 11:21:58 +00:00
|
|
|
./outputs/boot-fit.nix
|
2024-12-22 21:10:07 +00:00
|
|
|
./outputs/uimage.nix
|
2024-12-20 00:05:07 +00:00
|
|
|
./outputs/updater
|
2023-04-10 18:59:09 +00:00
|
|
|
];
|
2023-02-10 23:10:44 +00:00
|
|
|
options = {
|
2023-07-13 18:24:59 +00:00
|
|
|
system.outputs = {
|
2023-11-12 17:15:58 +00:00
|
|
|
# the convention here is to mark an output as "internal" if
|
|
|
|
# it's not a complete system (kernel plus userland, or installer)
|
|
|
|
# but only part of one.
|
2023-07-13 18:24:59 +00:00
|
|
|
kernel = mkOption {
|
|
|
|
type = types.package;
|
2024-06-30 15:58:29 +00:00
|
|
|
internal = true;
|
2023-07-13 18:24:59 +00:00
|
|
|
description = ''
|
2023-11-12 17:15:58 +00:00
|
|
|
kernel
|
|
|
|
******
|
|
|
|
|
2024-12-22 17:27:59 +00:00
|
|
|
Kernel package (multi-output derivation)
|
2023-12-07 22:31:26 +00:00
|
|
|
'';
|
|
|
|
};
|
2023-07-13 18:24:59 +00:00
|
|
|
dtb = mkOption {
|
|
|
|
type = types.package;
|
2024-06-30 15:58:29 +00:00
|
|
|
internal = true;
|
2023-07-13 18:24:59 +00:00
|
|
|
description = ''
|
2023-11-12 17:15:58 +00:00
|
|
|
dtb
|
|
|
|
***
|
|
|
|
|
2023-07-13 18:24:59 +00:00
|
|
|
Compiled device tree (FDT) for the target device
|
|
|
|
'';
|
|
|
|
};
|
2024-01-30 10:20:57 +00:00
|
|
|
tplink-safeloader = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
};
|
2023-12-29 17:07:47 +00:00
|
|
|
u-boot = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
};
|
2023-07-13 18:24:59 +00:00
|
|
|
manifest = mkOption {
|
|
|
|
type = types.package;
|
2024-06-30 15:58:29 +00:00
|
|
|
internal = true;
|
2023-07-13 18:24:59 +00:00
|
|
|
description = ''
|
|
|
|
Debugging aid. JSON rendition of config.filesystem, on
|
|
|
|
which can run "nix-store -q --tree" on it and find
|
|
|
|
out what's in the image, which is nice if it's unexpectedly huge
|
|
|
|
'';
|
|
|
|
};
|
2023-12-11 20:49:48 +00:00
|
|
|
rootdir = mkOption {
|
2023-12-05 17:29:01 +00:00
|
|
|
type = types.package;
|
|
|
|
internal = true;
|
|
|
|
description = ''
|
|
|
|
directory of files to package into root filesystem
|
|
|
|
'';
|
|
|
|
};
|
2024-12-23 00:09:31 +00:00
|
|
|
bootfiles = mkOption {
|
|
|
|
type = types.nullOr types.package;
|
|
|
|
internal = true;
|
|
|
|
default = null;
|
|
|
|
# description = "";
|
|
|
|
};
|
2023-12-11 20:49:48 +00:00
|
|
|
bootablerootdir = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
internal = true;
|
|
|
|
description = ''
|
|
|
|
directory of files to package into root filesystem, including
|
|
|
|
a kernel and appropriate associated gubbins for the
|
|
|
|
selected bootloader
|
|
|
|
'';
|
|
|
|
};
|
2023-07-13 18:24:59 +00:00
|
|
|
rootfs = mkOption {
|
|
|
|
type = types.package;
|
2023-11-12 17:15:58 +00:00
|
|
|
internal = true;
|
2023-07-13 18:24:59 +00:00
|
|
|
description = ''
|
|
|
|
root filesystem (squashfs or jffs2) image
|
|
|
|
'';
|
|
|
|
};
|
2023-02-10 23:10:44 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
2023-07-13 18:24:59 +00:00
|
|
|
system.outputs = rec {
|
2023-09-20 16:57:17 +00:00
|
|
|
dtb = liminix.builders.dtb {
|
2023-03-02 23:01:26 +00:00
|
|
|
inherit (config.boot) commandLine;
|
2024-12-17 23:24:31 +00:00
|
|
|
dts = [config.hardware.dts.src] ++ config.hardware.dts.includes;
|
2024-12-17 17:34:04 +00:00
|
|
|
includes = config.hardware.dts.includePaths ++ [
|
2024-01-02 19:40:57 +00:00
|
|
|
"${o.kernel.headers}/include"
|
2023-02-10 23:10:44 +00:00
|
|
|
];
|
|
|
|
};
|
2023-12-11 20:49:48 +00:00
|
|
|
rootdir =
|
2023-12-05 17:29:01 +00:00
|
|
|
let
|
|
|
|
inherit (pkgs.pkgsBuildBuild) runCommand;
|
|
|
|
in runCommand "mktree" { } ''
|
|
|
|
mkdir -p $out/nix/store/ $out/secrets $out/boot
|
|
|
|
cp ${o.systemConfiguration}/bin/activate $out/activate
|
|
|
|
ln -s ${pkgs.s6-init-bin}/bin/init $out/init
|
|
|
|
mkdir -p $out/nix/store
|
|
|
|
for path in $(cat ${o.systemConfiguration}/etc/nix-store-paths) ; do
|
|
|
|
(cd $out && cp -a $path .$path)
|
|
|
|
done
|
|
|
|
'';
|
2023-12-11 20:49:48 +00:00
|
|
|
bootablerootdir =
|
|
|
|
let inherit (pkgs.pkgsBuildBuild) runCommand;
|
|
|
|
in runCommand "add-slash-boot" { } ''
|
|
|
|
cp -a ${o.rootdir} $out
|
2024-12-23 00:09:31 +00:00
|
|
|
${if o.bootfiles != null
|
|
|
|
then "(cd $out && chmod -R +w . && rmdir boot && cp -a ${o.bootfiles} boot)"
|
2023-12-11 20:49:48 +00:00
|
|
|
else ""
|
|
|
|
}
|
|
|
|
'';
|
2023-02-10 23:10:44 +00:00
|
|
|
manifest = writeText "manifest.json" (builtins.toJSON config.filesystem.contents);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|