Skip to content

Commit

Permalink
Install Rust tools with stable compiler
Browse files Browse the repository at this point in the history
We only need the frozen nightly for Tock (and maybe the app).
  • Loading branch information
ia0 authored and kaczmarczyck committed Sep 9, 2021
1 parent e02eaa2 commit 420f062
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fuzzing_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ done_text="$(tput bold)DONE.$(tput sgr0)"
set -e

# Install cargo-fuzz library.
cargo install cargo-fuzz
cargo +stable install cargo-fuzz
3 changes: 2 additions & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ rustup target add thumbv7em-none-eabi

# Install dependency to create applications.
mkdir -p elf2tab
cargo install elf2tab --version 0.6.0 --root elf2tab/
rustup install stable
cargo +stable install elf2tab --version 0.6.0 --root elf2tab/

# Install python dependencies to factory configure OpenSK (crypto, JTAG lockdown)
pip3 install --user --upgrade colorama tqdm cryptography "fido2>=0.9.1"

0 comments on commit 420f062

Please sign in to comment.