make outputs.directory useful for tftp-booting devices

basically, add some more symlinks to it
This commit is contained in:
Daniel Barlow
2022-10-07 00:23:04 +01:00
parent 58c287ef6a
commit e78028e58f
2 changed files with 8 additions and 6 deletions

View File

@@ -37,11 +37,13 @@ let
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 "both-kinds" {} ''
mkdir $out
cd $out
ln -s ${squashfs} squashfs
ln -s ${kernel.vmlinux} vmlinux
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