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-02-11 00:10:44 +01:00
|
|
|
options = {
|
2023-07-13 20:24:59 +02:00
|
|
|
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
|
|
|
|
use with qemu (see mips-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-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;
|
|
|
|
};
|
|
|
|
dtb = (callPackage ../kernel/dtb.nix {}) {
|
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"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
uimage = (callPackage ../kernel/uimage.nix {}) {
|
|
|
|
commandLine = concatStringsSep " " config.boot.commandLine;
|
2023-03-03 23:52:33 +01:00
|
|
|
inherit (config.hardware) loadAddress entryPoint;
|
2023-02-11 00:10:44 +01:00
|
|
|
inherit kernel;
|
|
|
|
inherit dtb;
|
|
|
|
};
|
2023-02-11 14:10:38 +01:00
|
|
|
vmroot = pkgs.runCommand "qemu" {} ''
|
2023-02-11 00:10:44 +01:00
|
|
|
mkdir $out
|
|
|
|
cd $out
|
2023-07-13 20:24:59 +02:00
|
|
|
ln -s ${config.system.outputs.rootfs} rootfs
|
2023-02-11 00:10:44 +01:00
|
|
|
ln -s ${kernel} vmlinux
|
|
|
|
ln -s ${manifest} manifest
|
|
|
|
ln -s ${kernel.headers} build
|
2023-02-11 14:10:38 +01:00
|
|
|
'';
|
|
|
|
|
2023-02-11 00:10:44 +01:00
|
|
|
manifest = writeText "manifest.json" (builtins.toJSON config.filesystem.contents);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|