Adding 0_5407_1 versions trough enumeration

This commit is contained in:
Bastian Widmer
2023-09-10 09:58:14 +02:00
parent 63cf162af7
commit 7a6c8331f1
5 changed files with 15 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1 @@
f917f1f20960c75fd8f8a07d680d8b290e70523bb01bbd27436e8831712c7b35 MCU1-SG-Ver0000-C366-CK.bin

View File

@@ -0,0 +1,5 @@
# loop over all *.bin.DIGEST files
for filename in *.bin.DIGEST; do
shasum -a 256 -c $filename
done

View File

@@ -0,0 +1,8 @@
# bash script that runs shasum on all *.bin files in this directory
# and creates a file called $filename.DIGEST
# loop over all *.bin files
for filename in *.bin; do
# create a file called $filename.DIGEST
shasum -a 256 $filename > $filename.DIGEST
done

View File

@@ -0,0 +1 @@
for i in {0..99} ; do wget -nc http://47.254.36.66/0_5407_1/MCU1-SG-Ver0000-C3$i-CK.bin ; done