mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
22 lines
594 B
Bash
Executable File
22 lines
594 B
Bash
Executable File
#!/bin/bash
|
|
CURDIR=$(pwd)
|
|
mkdir -p $CURDIR/pb2/
|
|
echo > $CURDIR/pb2/__init__.py
|
|
|
|
INDEX=../src/trezor/messages/wire_types.py
|
|
rm -f $INDEX
|
|
|
|
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
|
|
done
|
|
|
|
for i in types messages storage ; do
|
|
# Convert google protobuf library to trezor's internal format
|
|
cd $CURDIR
|
|
../../trezor-common/tools/pb2py -m -p $CURDIR -i $INDEX $i ../src/trezor/messages/
|
|
done
|
|
|
|
rm -rf $CURDIR/pb2/
|