mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
build/lattice/LatticeProgrammer: pgrcmd always seems to return a non-zero value so disable check.
This commit is contained in:
parent
f381cdcd1a
commit
3d81c9a437
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class LatticeProgrammer(GenericProgrammer):
|
|||
xcf_file = bitstream_file.replace(".bit", ".xcf")
|
||||
xcf_content = self.xcf_template.format(bitstream_file=bitstream_file)
|
||||
tools.write_to_file(xcf_file, xcf_content)
|
||||
self.call(["pgrcmd", "-infile", xcf_file])
|
||||
self.call(["pgrcmd", "-infile", xcf_file], check=False)
|
||||
|
||||
# OpenOCDJTAGProgrammer --------------------------------------------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in a new issue