mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
28 lines
702 B
Python
28 lines
702 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
|
||
|
|
import sys
|
||
|
|
import json
|
||
|
|
import os
|
||
|
|
import jinja2
|
||
|
|
|
||
|
|
def render(tpl_path):
|
||
|
|
path, filename = os.path.split(tpl_path)
|
||
|
|
return jinja2.Environment(
|
||
|
|
loader=jinja2.FileSystemLoader(path or './')
|
||
|
|
).get_template(filename).render()
|
||
|
|
|
||
|
|
n = len(sys.argv)
|
||
|
|
if ( n != 3 ):
|
||
|
|
sys.exit("The template file name and output file name are expected as arguments")
|
||
|
|
# set template file name, output file name
|
||
|
|
driver_wrapper_template_filename = sys.argv[1]
|
||
|
|
driver_wrapper_output_filename = sys.argv[2]
|
||
|
|
|
||
|
|
# render the template
|
||
|
|
result = render(driver_wrapper_template_filename)
|
||
|
|
|
||
|
|
# write output to file
|
||
|
|
outFile = open(driver_wrapper_output_filename,"w")
|
||
|
|
outFile.write(result)
|
||
|
|
outFile.close()
|