Skip to content

Commit d62392a

Browse files
committed
Added printing URLs and MD5 sums of downloaded FPGA interchange resources
Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
1 parent b663bf1 commit d62392a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,15 @@ install_f4pga: | $(CONDA_ENV_PYTHON)
6767
install_interchange:
6868
mkdir -p env/interchange/devices
6969
TECHMAP_DATA_URL=$$(curl -fsSL ${INTERCHANGE_RELEASES_URL}/interchange-techmaps-latest); \
70+
echo "FPGA Interchange techmaps URL: $${TECHMAP_DATA_URL}"; \
7071
curl -fsSL $${TECHMAP_DATA_URL} | tar -xJC env/interchange; \
7172
for device in ${INTERCHANGE_DEVICES}; do \
7273
DEVICE_DATA_URL=$$(curl -fsSL ${INTERCHANGE_RELEASES_URL}/interchange-$${device}-latest); \
74+
echo "FPGA Interchange $${device} data URL: $${DEVICE_DATA_URL}"; \
7375
curl -fsSL $${DEVICE_DATA_URL} | tar -xJC env/interchange/devices; \
7476
done
77+
@echo "FPGA Interchange device data MD5 checksums:"
78+
@find env/interchange/devices -type f | xargs md5sum
7579
make install_rapidwright
7680

7781
install_rapidwright:

0 commit comments

Comments
 (0)