2023-02-11 00:10:44 +01:00
|
|
|
{
|
|
|
|
config
|
|
|
|
, pkgs
|
|
|
|
, lib
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (lib) mkOption types concatStringsSep;
|
|
|
|
inherit (pkgs) liminix callPackage writeText;
|
|
|
|
in
|
|
|
|
{
|
2023-04-10 20:59:09 +02:00
|
|
|
imports = [
|
|
|
|
./squashfs.nix
|
2023-11-08 22:48:45 +01:00
|
|
|
./outputs/vmroot.nix
|
2023-04-10 20:59:09 +02:00
|
|
|
];
|
2023-02-11 00:10:44 +01:00
|
|
|
options = {
|
2023-07-13 20:24:59 +02:00
|
|
|
system.outputs = {
|
2023-11-12 18:15:58 +01: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 20:24:59 +02:00
|
|
|
kernel = mkOption {
|
|
|
|
type = types.package;
|
2023-11-12 18:15:58 +01:00
|
|
|
internal = true;
|
2023-07-13 20:24:59 +02:00
|
|
|
description = ''
|
2023-11-12 18:15:58 +01:00
|
|
|
kernel
|
|
|
|
******
|
|
|
|
|
2023-07-13 20:24:59 +02:00
|
|
|
Kernel vmlinux file (usually ELF)
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
dtb = mkOption {
|
|
|
|
type = types.package;
|
2023-11-12 18:15:58 +01:00
|
|
|
internal = true;
|
2023-07-13 20:24:59 +02:00
|
|
|
description = ''
|
2023-11-12 18:15:58 +01:00
|
|
|
dtb
|
|
|
|
***
|
|
|
|
|
2023-07-13 20:24:59 +02:00
|
|
|
Compiled device tree (FDT) for the target device
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
uimage = mkOption {
|
|
|
|
type = types.package;
|
2023-11-12 18:15:58 +01:00
|
|
|
internal = true;
|
2023-07-13 20:24:59 +02:00
|
|
|
description = ''
|
2023-11-12 18:15:58 +01:00
|
|
|
uimage
|
|
|
|
******
|
|
|
|
|
2023-07-13 20:24:59 +02:00
|
|
|
Combined kernel and FDT in uImage (U-Boot compatible) format
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
manifest = mkOption {
|
|
|
|
type = types.package;
|
2023-11-12 18:15:58 +01:00
|
|
|
internal = true;
|
2023-07-13 20:24:59 +02: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
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
rootfs = mkOption {
|
|
|
|
type = types.package;
|
2023-11-12 18:15:58 +01:00
|
|
|
internal = true;
|
2023-07-13 20:24:59 +02:00
|
|
|
description = ''
|
|
|
|
root filesystem (squashfs or jffs2) image
|
|
|
|
'';
|
|
|
|
};
|
2023-02-11 00:10:44 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
2023-07-13 20:24:59 +02:00
|
|
|
system.outputs = rec {
|
|
|
|
# tftpd = pkgs.buildPackages.tufted;
|
2023-02-11 00:10:44 +01:00
|
|
|
kernel = liminix.builders.kernel.override {
|
|
|
|
inherit (config.kernel) config src extraPatchPhase;
|
|
|
|
};
|
2023-09-20 18:57:17 +02:00
|
|
|
dtb = liminix.builders.dtb {
|
2023-03-03 00:01:26 +01:00
|
|
|
inherit (config.boot) commandLine;
|
2023-03-03 23:52:33 +01:00
|
|
|
dts = config.hardware.dts.src;
|
|
|
|
includes = config.hardware.dts.includes ++ [
|
2023-02-11 00:10:44 +01:00
|
|
|
"${kernel.headers}/include"
|
|
|
|
];
|
|
|
|
};
|
2023-09-20 18:57:17 +02:00
|
|
|
uimage = liminix.builders.uimage {
|
2023-02-11 00:10:44 +01:00
|
|
|
commandLine = concatStringsSep " " config.boot.commandLine;
|
2023-03-03 23:52:33 +01:00
|
|
|
inherit (config.hardware) loadAddress entryPoint;
|
2023-10-08 23:35:30 +02:00
|
|
|
inherit (config.boot) imageFormat;
|
2023-02-11 00:10:44 +01:00
|
|
|
inherit kernel;
|
|
|
|
inherit dtb;
|
|
|
|
};
|
|
|
|
manifest = writeText "manifest.json" (builtins.toJSON config.filesystem.contents);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|