2022-10-07 01:24:35 +02:00
|
|
|
{
|
2023-01-29 21:29:36 +01:00
|
|
|
device
|
2023-01-29 10:23:09 +01:00
|
|
|
, liminix-config ? <liminix-config>
|
2022-10-07 01:24:35 +02:00
|
|
|
, phram ? false
|
2022-09-20 00:51:38 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
overlay = import ./overlay.nix;
|
2023-01-29 11:00:13 +01:00
|
|
|
nixpkgs = import <nixpkgs> (device.system // {
|
|
|
|
overlays = [overlay device.overlay];
|
|
|
|
config = {allowUnsupportedSystem = true; };
|
|
|
|
});
|
2022-10-19 18:10:35 +02:00
|
|
|
inherit (nixpkgs) callPackage writeText liminix fetchFromGitHub;
|
2022-10-07 01:21:04 +02:00
|
|
|
inherit (nixpkgs.lib) concatStringsSep;
|
2022-09-25 12:22:15 +02:00
|
|
|
config = (import ./merge-modules.nix) [
|
2022-09-25 14:17:21 +02:00
|
|
|
./modules/base.nix
|
|
|
|
({ lib, ... } : { config = { inherit (device) kernel; }; })
|
2023-01-29 10:23:09 +01:00
|
|
|
liminix-config
|
2022-09-27 11:19:44 +02:00
|
|
|
./modules/s6
|
2022-09-28 22:31:15 +02:00
|
|
|
./modules/users.nix
|
2022-10-07 01:24:35 +02:00
|
|
|
(if phram then ./modules/phram.nix else (args: {}))
|
2022-10-19 18:10:35 +02:00
|
|
|
] nixpkgs;
|
2022-09-27 23:06:36 +02:00
|
|
|
squashfs = liminix.builders.squashfs config.filesystem.contents;
|
2022-10-19 18:34:22 +02:00
|
|
|
|
|
|
|
openwrt = fetchFromGitHub {
|
|
|
|
name = "openwrt-source";
|
|
|
|
repo = "openwrt";
|
|
|
|
owner = "openwrt";
|
|
|
|
rev = "a5265497a4f6da158e95d6a450cb2cb6dc085cab";
|
|
|
|
hash = "sha256-YYi4gkpLjbOK7bM2MGQjAyEBuXJ9JNXoz/JEmYf8xE8=";
|
2022-09-25 23:02:45 +02:00
|
|
|
};
|
2022-10-05 22:52:30 +02:00
|
|
|
|
2022-10-03 23:28:15 +02:00
|
|
|
outputs = rec {
|
2022-10-19 18:34:22 +02:00
|
|
|
inherit squashfs;
|
|
|
|
kernel = nixpkgs.kernel.override {
|
2022-10-19 23:09:38 +02:00
|
|
|
inherit (config.kernel) config;
|
2022-10-19 18:34:22 +02:00
|
|
|
};
|
|
|
|
dtb = (callPackage ./kernel/dtb.nix {}) {
|
|
|
|
dts = "${openwrt}/target/linux/ath79/dts/qca9531_glinet_gl-ar750.dts";
|
|
|
|
includes = [
|
|
|
|
"${openwrt}/target/linux/ath79/dts"
|
|
|
|
"${kernel.headers}/include"
|
|
|
|
];
|
2022-10-05 22:52:30 +02:00
|
|
|
};
|
2022-10-19 18:34:22 +02:00
|
|
|
uimage = (callPackage ./kernel/uimage.nix {}) {
|
2022-10-07 01:21:04 +02:00
|
|
|
commandLine = concatStringsSep " " config.boot.commandLine;
|
2022-10-03 23:28:15 +02:00
|
|
|
inherit (device.boot) loadAddress entryPoint;
|
2022-10-19 18:34:22 +02:00
|
|
|
inherit kernel;
|
2022-10-05 22:52:30 +02:00
|
|
|
inherit dtb;
|
2022-10-03 23:28:15 +02:00
|
|
|
};
|
2022-10-19 18:10:35 +02:00
|
|
|
combined-image = nixpkgs.runCommand "firmware.bin" {
|
2022-10-03 23:28:15 +02:00
|
|
|
nativeBuildInputs = [ nixpkgs.buildPackages.ubootTools ];
|
|
|
|
} ''
|
2022-10-05 00:09:20 +02:00
|
|
|
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
|
2022-10-03 23:28:15 +02:00
|
|
|
'';
|
2022-10-07 01:24:35 +02:00
|
|
|
boot-scr =
|
|
|
|
let
|
|
|
|
inherit (nixpkgs.lib.trivial) toHexString;
|
|
|
|
uimageStart = 10485760; # 0xa00000
|
2022-10-15 17:11:40 +02:00
|
|
|
squashfsStart = uimageStart + 4 * 1024 * 1024;
|
2022-10-07 01:24:35 +02:00
|
|
|
squashfsSize = 8;
|
|
|
|
cmd = "mtdparts=phram0:${toString squashfsSize}M(nix) phram.phram=phram0,0x${toHexString squashfsStart},${toString squashfsSize}Mi memmap=${toString squashfsSize}M\$0x${toHexString squashfsStart} root=1f00";
|
|
|
|
in
|
2022-10-19 18:10:35 +02:00
|
|
|
nixpkgs.buildPackages.writeScript "firmware.bin" ''
|
2022-10-07 01:24:35 +02:00
|
|
|
setenv serverip 192.168.8.148
|
|
|
|
setenv ipaddr 192.168.8.251
|
|
|
|
setenv bootargs '${concatStringsSep " " config.boot.commandLine} ${cmd}'
|
|
|
|
tftp 0x8${toHexString uimageStart} result/uimage ; tftp 0x8${toHexString squashfsStart} result/squashfs
|
|
|
|
bootm 0x${toHexString uimageStart}
|
|
|
|
'';
|
|
|
|
|
2022-10-19 18:10:35 +02:00
|
|
|
directory = nixpkgs.runCommand "liminix" {} (''
|
2022-10-07 01:23:04 +02:00
|
|
|
mkdir $out
|
|
|
|
cd $out
|
|
|
|
ln -s ${squashfs} squashfs
|
2022-10-19 18:34:22 +02:00
|
|
|
ln -s ${kernel} vmlinux
|
2022-10-07 01:23:04 +02:00
|
|
|
ln -s ${manifest} manifest
|
2022-10-19 18:34:22 +02:00
|
|
|
ln -s ${kernel.headers} build
|
2022-10-15 19:55:33 +02:00
|
|
|
'' +
|
|
|
|
(if device ? boot then ''
|
2022-10-07 01:23:04 +02:00
|
|
|
ln -s ${uimage} uimage
|
2022-10-07 01:24:35 +02:00
|
|
|
${if phram then "ln -s ${boot-scr} boot.scr" else ""}
|
|
|
|
ln -s ${boot-scr} flash.scr
|
2022-10-15 19:55:33 +02:00
|
|
|
'' else ""));
|
2022-09-27 23:07:18 +02:00
|
|
|
# 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-19 18:10:35 +02:00
|
|
|
tftpd = nixpkgs.buildPackages.tufted;
|
2022-09-20 19:54:27 +02:00
|
|
|
};
|
2022-10-03 23:28:15 +02:00
|
|
|
in {
|
|
|
|
outputs = outputs // { default = outputs.${device.outputs.default}; };
|
|
|
|
|
2022-09-25 14:18:26 +02: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;
|
2022-09-20 19:54:27 +02:00
|
|
|
}
|