example_designs/make.py: do not use "-" in build_name
This commit is contained in:
parent
d0b4688184
commit
21b76a1860
|
@ -91,7 +91,7 @@ if __name__ == "__main__":
|
||||||
platform_kwargs = dict((k, autotype(v)) for k, v in args.platform_option)
|
platform_kwargs = dict((k, autotype(v)) for k, v in args.platform_option)
|
||||||
platform = platform_module.Platform(**platform_kwargs)
|
platform = platform_module.Platform(**platform_kwargs)
|
||||||
|
|
||||||
build_name = top_class.__name__.lower() + "-" + platform_name
|
build_name = top_class.__name__.lower() + "_" + platform_name
|
||||||
top_kwargs = dict((k, autotype(v)) for k, v in args.target_option)
|
top_kwargs = dict((k, autotype(v)) for k, v in args.target_option)
|
||||||
soc = top_class(platform, **top_kwargs)
|
soc = top_class(platform, **top_kwargs)
|
||||||
soc.finalize()
|
soc.finalize()
|
||||||
|
|
Loading…
Reference in New Issue