1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 18:39:05 +00:00
trezor-firmware/tools/build_pb.sh

13 lines
373 B
Bash
Raw Normal View History

2016-04-26 23:32:57 +00:00
#!/bin/bash
CURDIR=$(pwd)
2016-04-27 20:44:37 +00:00
for i in types messages storage ; do
2016-04-26 23:32:57 +00:00
# Compile .proto files to python2 modules using google protobuf library
cd $CURDIR/../../trezor-common/protob
protoc --python_out=$CURDIR/pb2/ -I/usr/include -I. $i.proto
# Convert google protobuf library to trezor's internal format
cd $CURDIR
2016-04-27 20:44:37 +00:00
./pb2py $i ../src/trezor/messages/
2016-04-26 23:32:57 +00:00
done