fxconv: fix CLI which was broken since 4d46661d3

This commit is contained in:
Lephenixnoir 2022-01-26 20:54:13 +01:00
parent 9e097109bc
commit f17d741d54
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
2 changed files with 4 additions and 4 deletions

View File

@ -119,7 +119,7 @@ def main():
# In manual conversion modes, read parameters from the command-line
else:
params = parse_parameters(args)
params = fxconv.parse_parameters(args)
if "type" in params:
pass

View File

@ -25,7 +25,7 @@ __all__ = [
"convert_topti",
"convert_libimg_fx", "convert_libimg_cg",
# Meta API to use fxconv-metadata.txt files
"Metadata",
"Metadata", "parse_parameters",
]
#
@ -1353,7 +1353,7 @@ def elf(data, output, symbol, toolchain=None, arch=None, section=None,
# Meta API
#
def _parse_parameters(params):
def parse_parameters(params):
"""Parse parameters of the form "NAME:VALUE" into a dictionary."""
d = dict()
@ -1405,7 +1405,7 @@ def _parse_metadata(contents):
metadata = []
for (wildcard, params) in elements:
params = [ s.strip() for s in params.split("\n") if s.strip() ]
metadata.append((wildcard, _parse_parameters(params)))
metadata.append((wildcard, parse_parameters(params)))
return metadata