Skip to content

Commit

Permalink
Added printing URLs and MD5 sums of downloaded FPGA interchange resou…
Browse files Browse the repository at this point in the history
…rces

Signed-off-by: Maciej Kurc <[email protected]>
  • Loading branch information
mkurc-ant committed Jan 9, 2023
1 parent 618ab47 commit 989b43f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,14 @@ install_f4pga: | $(CONDA_ENV_PYTHON)
install_interchange:
mkdir -p env/interchange/devices
TECHMAP_DATA_URL=$$(curl -fsSL ${INTERCHANGE_RELEASES_URL}/interchange-techmaps-latest); \
echo "FPGA Interchange techmaps URL: $${TECHMAP_DATA_URL}"; \
curl -fsSL $${TECHMAP_DATA_URL} | tar -xJC env/interchange; \
for device in ${INTERCHANGE_DEVICES}; do \
DEVICE_DATA_URL=$$(curl -fsSL ${INTERCHANGE_RELEASES_URL}/interchange-$${device}-latest); \
echo "FPGA Interchange $${device} data URL: $${DEVICE_DATA_URL}"; \
curl -fsSL $${DEVICE_DATA_URL} | tar -xJC env/interchange/devices; \
done
find env/interchange/devices -type f | xargs md5sum
make install_rapidwright

install_rapidwright:
Expand Down

0 comments on commit 989b43f

Please sign in to comment.