Skip to content

Commit 989b43f

Browse files
committed
Added printing URLs and MD5 sums of downloaded FPGA interchange resources
Signed-off-by: Maciej Kurc <[email protected]>
1 parent 618ab47 commit 989b43f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,14 @@ 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+
find env/interchange/devices -type f | xargs md5sum
7578
make install_rapidwright
7679

7780
install_rapidwright:

0 commit comments

Comments
 (0)