mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-23 07:58:09 +00:00
13 lines
373 B
Bash
Executable File
13 lines
373 B
Bash
Executable File
#!/bin/bash
|
|
CURDIR=$(pwd)
|
|
|
|
for i in types messages storage ; do
|
|
# 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
|
|
./pb2py $i ../src/trezor/messages/
|
|
done
|