liminix/default.nix

60 lines
2.0 KiB
Nix
Raw Normal View History

{ device ? (import devices/gl-ar750.nix)
}:
let
overlay = import ./overlay.nix;
nixpkgs = import <nixpkgs> ( device.system // {overlays = [overlay]; });
inherit (nixpkgs.pkgs) callPackage writeText liminix;
inherit (nixpkgs.lib) concatStringsSep;
2022-09-25 10:22:15 +00:00
config = (import ./merge-modules.nix) [
./modules/base.nix
({ lib, ... } : { config = { inherit (device) kernel; }; })
2022-09-25 10:22:15 +00:00
<liminix-config>
2022-09-27 09:19:44 +00:00
./modules/s6
2022-09-28 20:31:15 +00:00
./modules/users.nix
2022-09-25 10:22:15 +00:00
] nixpkgs.pkgs;
squashfs = liminix.builders.squashfs config.filesystem.contents;
2022-09-27 15:06:54 +00:00
kernel = callPackage ./kernel {
inherit (config.kernel) config checkedConfig;
2022-09-25 21:02:45 +00:00
};
2022-10-05 20:52:30 +00:00
outputs = rec {
inherit squashfs kernel;
2022-10-05 20:52:30 +00:00
dtb = kernel.dtb {
dts = "qca9531_glinet_gl-ar750.dts";
};
uimage = kernel.uimage {
commandLine = concatStringsSep " " config.boot.commandLine;
inherit (device.boot) loadAddress entryPoint;
inherit (kernel) vmlinux;
2022-10-05 20:52:30 +00:00
inherit dtb;
};
combined-image = nixpkgs.pkgs.runCommand "firmware.bin" {
nativeBuildInputs = [ nixpkgs.buildPackages.ubootTools ];
} ''
mkdir $out
dd if=${uimage} of=$out/firmware.bin bs=128k conv=sync
dd if=${squashfs} of=$out/firmware.bin bs=128k conv=sync,nocreat,notrunc oflag=append
'';
directory = nixpkgs.pkgs.runCommand "liminix" {} ''
mkdir $out
cd $out
ln -s ${squashfs} squashfs
ln -s ${kernel.vmlinux} vmlinux
ln -s ${manifest} manifest
ln -s ${uimage} uimage
'';
# this exists so that you can run "nix-store -q --tree" on it and find
# out what's in the image, which is nice if it's unexpectedly huge
manifest = writeText "manifest.json" (builtins.toJSON config.filesystem.contents);
2022-10-04 22:08:43 +00:00
tftpd = nixpkgs.pkgs.buildPackages.tufted;
};
in {
outputs = outputs // { default = outputs.${device.outputs.default}; };
2022-09-25 12:18:26 +00:00
# this is just here as a convenience, so that we can get a
# cross-compiling nix-shell for any package we're customizing
inherit (nixpkgs) pkgs;
}