2016-05-27 14:48:23 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import os
|
|
|
|
|
|
|
|
resources = {}
|
|
|
|
|
|
|
|
def process_file(name):
|
|
|
|
if name.endswith('.py'):
|
|
|
|
return
|
|
|
|
with open(name, 'rb') as f:
|
|
|
|
resources[name] = f.read()
|
|
|
|
|
2016-05-28 01:24:58 +00:00
|
|
|
# scan common resources
|
2016-05-27 14:48:23 +00:00
|
|
|
for res in os.scandir('src/trezor/res/'):
|
|
|
|
if res.is_file():
|
|
|
|
process_file('src/trezor/res/%s' % res.name)
|
|
|
|
|
|
|
|
# scan apps
|
|
|
|
for app in os.scandir('src/apps/'):
|
|
|
|
if app.is_dir():
|
|
|
|
for res in os.scandir('src/apps/%s/res/' % app.name):
|
|
|
|
if res.is_file():
|
|
|
|
process_file('src/apps/%s/res/%s' % (app.name, res.name))
|
|
|
|
|
|
|
|
with open('src/trezor/res/resources.py', 'wt') as f:
|
|
|
|
f.write('resdata = ' + str(resources))
|