1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-12 18:49:07 +00:00

rename resource collector script and move it to scripts

This commit is contained in:
Pavol Rusnak 2016-05-31 14:31:28 +02:00
parent 7195e1d12f
commit ea3bd0b6f8
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -3,7 +3,11 @@ import os
resources = {}
os.chdir('..')
def process_file(name):
if name.endswith('.gitignore'):
return
if name.endswith('.py'):
return
with open(name, 'rb') as f:
@ -16,10 +20,13 @@ for res in os.scandir('src/trezor/res/'):
# scan apps
for app in os.scandir('src/apps/'):
if app.is_dir():
if app.is_dir() and os.path.isdir('src/apps/%s/res/' % app.name):
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))
f.write('resdata = {\n')
for k in sorted(resources.keys()):
f.write(" '%s': %s,\n" % (k, resources[k]))
f.write('}\n')