trezor-core/tools/build_protobuf

27 lines
720 B
Plaintext
Raw Normal View History

2016-04-26 16:32:57 -07:00
#!/bin/bash
CURDIR=$(pwd)
mkdir -p $CURDIR/pb2/
echo > $CURDIR/pb2/__init__.py
2016-04-26 16:32:57 -07:00
2017-06-13 10:35:14 -07:00
mkdir -p ../src/trezor/messages
2016-09-21 05:12:46 -07:00
INDEX=../src/trezor/messages/wire_types.py
rm -f $INDEX
2017-06-07 10:06:26 -07:00
echo '# Automatically generated by pb2py' >> $INDEX
echo 'from micropython import const' >> $INDEX
echo '' >> $INDEX
2016-09-21 05:12:46 -07:00
2016-04-27 13:44:37 -07:00
for i in types messages storage ; do
2016-04-26 16:32:57 -07: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
done
2016-04-26 16:32:57 -07:00
for i in types messages storage ; do
2016-04-26 16:32:57 -07:00
# Convert google protobuf library to trezor's internal format
cd $CURDIR
2017-06-13 10:35:14 -07:00
./pb2py -m -p $CURDIR -i $INDEX $i ../src/trezor/messages/
2016-04-26 16:32:57 -07:00
done
rm -rf $CURDIR/pb2/