write combined-image into a directory not $out directly

this makes the tftp workflow a bit easier
module-based-network
Daniel Barlow 2022-10-04 23:09:20 +01:00
parent e7987c9520
commit c70d556f44
1 changed files with 3 additions and 3 deletions

View File

@ -26,10 +26,10 @@ let
combined-image = nixpkgs.pkgs.runCommand "firmware.bin" {
nativeBuildInputs = [ nixpkgs.buildPackages.ubootTools ];
} ''
dd if=${uimage} of=$out bs=128k conv=sync
dd if=${squashfs} of=$out bs=128k conv=sync,nocreat,notrunc oflag=append
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 "both-kinds" {} ''
mkdir $out
cd $out