add SZL multi-board package

esavkin/reboot_support
Sebastien Bourdeauducq 2021-06-25 16:21:49 +08:00
parent 040d41fd76
commit 8dbe2cf9f3
1 changed files with 10 additions and 3 deletions

View File

@ -39,10 +39,17 @@ let
"${target}-szl" = build-crate "${target}-szl" "szl" "target_${target}" cargoSha256SZL; "${target}-szl" = build-crate "${target}-szl" "szl" "target_${target}" cargoSha256SZL;
}; };
targets = ["zc706" "coraz7" "redpitaya" "kasli_soc"]; targets = ["zc706" "coraz7" "redpitaya" "kasli_soc"];
allTargetCrates = (builtins.foldl' (results: target:
results // targetCrates target
) {} targets);
in in
{ {
inherit cargo-xbuild; inherit cargo-xbuild;
zc706-fsbl = import ./nix/fsbl.nix { inherit pkgs; }; zc706-fsbl = import ./nix/fsbl.nix { inherit pkgs; };
} // (builtins.foldl' (results: target: szl = pkgs.runCommand "szl" {} (builtins.foldl' (commands: target:
results // targetCrates target let
) {} targets) szlResult = builtins.getAttr "${target}-szl" allTargetCrates;
in
commands + "ln -s ${szlResult}/szl.elf $out/szl-${target}.elf\n"
) "mkdir $out\n" targets);
} // allTargetCrates