build/osfpga: Add workaround to copy .init file to work directory.
This commit is contained in:
parent
c401bdd7f1
commit
a977adf551
|
@ -97,6 +97,10 @@ class OSFPGAToolchain:
|
||||||
v_output.write(v_file)
|
v_output.write(v_file)
|
||||||
platform.add_source(v_file)
|
platform.add_source(v_file)
|
||||||
|
|
||||||
|
# Copy .init files to work directory; FIXME.
|
||||||
|
os.makedirs(build_name, exist_ok=True)
|
||||||
|
os.system(f"cp *.init {build_name}")
|
||||||
|
|
||||||
# Generate constraints file.
|
# Generate constraints file.
|
||||||
# IOs.
|
# IOs.
|
||||||
# TODO.
|
# TODO.
|
||||||
|
|
Loading…
Reference in New Issue