blob: 6947f12d4673c951898d3e95ebb880273c01943e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# CRC generation
import json
process_imports = True
#
# Plugin entry point
#
def run(args, input_filename, s):
j = {}
major = 0
if 'version' in s['Option']:
v = s['Option']['version']
(major, minor, patch) = v.split('.')
for t in s['Define']:
j[t.name] = {'crc': f'{t.crc:#08x}', 'version': major,
'options': t.options}
return json.dumps(j, indent=4, separators=(',', ': '))
|