mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Merge pull request #100 from cr1901/tinyprog-fix
lattice/programmer: Use --program-image option with tinyprog if addre…
This commit is contained in:
commit
69716852f1
1 changed files with 3 additions and 2 deletions
|
@ -76,8 +76,9 @@ class TinyProgProgrammer(GenericProgrammer):
|
|||
# Ditto with user data.
|
||||
subprocess.call(["tinyprog", "-u", bitstream_file])
|
||||
else:
|
||||
# Provide override so user can program wherever they wish.
|
||||
subprocess.call(["tinyprog", "-a", str(address), "-p",
|
||||
# Provide override so user can program wherever they wish (outside
|
||||
# of bootloader region).
|
||||
subprocess.call(["tinyprog", "-a", str(address), "--program-image",
|
||||
bitstream_file])
|
||||
|
||||
# Force user image to boot if a user reset tinyfpga, the bootloader
|
||||
|
|
Loading…
Reference in a new issue