Skip to content

Commit db479ba

Browse files
committed
bootstrap.sh: also install protobuf and grpcio-tools in venv
1 parent 0c15649 commit db479ba

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

extra/bootstrap.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,16 @@ done
1414

1515
python3 -m venv venv
1616
source venv/bin/activate
17-
pip install west
17+
pip install -r ../zephyr/scripts/requirements-base.txt
18+
pip install protobuf grpcio-tools # c33 wifi
19+
1820
west init -l .
1921
west config manifest.project-filter -- "$HAL_FILTER"
2022
west update "$@"
2123
west zephyr-export
22-
pip install -r ../zephyr/scripts/requirements-base.txt
2324
west sdk install --version 0.17.0 -t arm-zephyr-eabi
2425

26+
2527
for hal in $NEEDED_HALS; do
2628
west blobs fetch $hal
2729
done

0 commit comments

Comments
 (0)