From 4dd8c93729620a98fb6cf21677ac0ee0f7f5b614 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 14 Oct 2020 12:35:23 +0800 Subject: [PATCH] add SZL for Red Pitaya --- default.nix | 1 + szl/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/default.nix b/default.nix index 0f050ff..291daba 100644 --- a/default.nix +++ b/default.nix @@ -39,4 +39,5 @@ in redpitaya-experiments = build-crate "redpitaya-experiments" "experiments" "target_redpitaya" cargoSha256Experiments; zc706-fsbl = (import ./nix/fsbl.nix { inherit pkgs; }); zc706-szl = build-crate "zc706-szl" "szl" "target_zc706" cargoSha256SZL; + redpitaya-szl = build-crate "redpitaya-szl" "szl" "target_redpitaya" cargoSha256SZL; } diff --git a/szl/Cargo.toml b/szl/Cargo.toml index 7e51a0b..8af58fb 100644 --- a/szl/Cargo.toml +++ b/szl/Cargo.toml @@ -7,6 +7,7 @@ edition = "2018" [features] target_zc706 = ["libboard_zynq/target_zc706", "libsupport_zynq/target_zc706"] +target_redpitaya = ["libboard_zynq/target_redpitaya", "libsupport_zynq/target_redpitaya"] default = ["target_zc706"] [dependencies]