liminix/modules/outputs.nix

92 lines
2.4 KiB
Nix
Raw Normal View History

2023-02-10 23:10:44 +00:00
{
config
, pkgs
, lib
, ...
}:
let
inherit (lib) mkOption types concatStringsSep;
inherit (pkgs) liminix callPackage writeText;
in
{
imports = [
./squashfs.nix
];
2023-02-10 23:10:44 +00:00
options = {
system.outputs = {
kernel = mkOption {
type = types.package;
description = ''
Kernel vmlinux file (usually ELF)
'';
};
dtb = mkOption {
type = types.package;
description = ''
Compiled device tree (FDT) for the target device
'';
};
uimage = mkOption {
type = types.package;
description = ''
Combined kernel and FDT in uImage (U-Boot compatible) format
'';
};
vmroot = mkOption {
type = types.package;
description = ''
Directory containing separate kernel and rootfs image for
2023-09-20 17:33:08 +00:00
use with qemu (see run-liminix-vm)
'';
};
manifest = mkOption {
type = types.package;
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;
description = ''
root filesystem (squashfs or jffs2) image
'';
internal = true;
};
2023-02-10 23:10:44 +00:00
};
};
config = {
system.outputs = rec {
# tftpd = pkgs.buildPackages.tufted;
2023-02-10 23:10:44 +00:00
kernel = liminix.builders.kernel.override {
inherit (config.kernel) config src extraPatchPhase;
};
dtb = liminix.builders.dtb {
inherit (config.boot) commandLine;
dts = config.hardware.dts.src;
includes = config.hardware.dts.includes ++ [
2023-02-10 23:10:44 +00:00
"${kernel.headers}/include"
];
};
uimage = liminix.builders.uimage {
2023-02-10 23:10:44 +00:00
commandLine = concatStringsSep " " config.boot.commandLine;
inherit (config.hardware) loadAddress entryPoint;
2023-02-10 23:10:44 +00:00
inherit kernel;
inherit dtb;
};
2023-08-28 17:24:14 +00:00
# could use trivial-builders.linkFarmFromDrvs here?
vmroot = pkgs.runCommand "qemu" {} ''
2023-02-10 23:10:44 +00:00
mkdir $out
cd $out
ln -s ${config.system.outputs.rootfs} rootfs
2023-02-10 23:10:44 +00:00
ln -s ${kernel} vmlinux
ln -s ${manifest} manifest
ln -s ${kernel.headers} build
'';
2023-02-10 23:10:44 +00:00
manifest = writeText "manifest.json" (builtins.toJSON config.filesystem.contents);
};
};
}