Skip to content

Commit de64139

Browse files
committed
Update bootloader hash value.
1 parent 5207040 commit de64139

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

legacy/firmware/bl_check.c

+10-2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,14 @@ static int known_bootloader(int r, const uint8_t *hash) {
5959
memcpy(bootloader_version, "2.0.8", strlen("2.0.8"));
6060
return 1; // 2.0.8 shipped with fw 3.11.0
6161
}
62+
if (0 ==
63+
memcmp(hash,
64+
"\x5e\x4e\xb9\x22\xa2\x4f\xb3\x7c\x39\x70\xe0\x77\x53\x01\x3d\x67"
65+
"\x90\x54\xc9\x30\xdc\x68\x29\x29\xea\xc4\x77\x1b\x03\xc2\xc8\xdf",
66+
32)) {
67+
memcpy(bootloader_version, "2.0.8", strlen("2.0.8"));
68+
return 1; // 2.0.8 shipped with fw 3.11.0
69+
}
6270
// END AUTO-GENERATED QA BOOTLOADER ENTRIES (bl_check_qa.txt)
6371

6472
return 0;
@@ -95,8 +103,8 @@ static int known_bootloader(int r, const uint8_t *hash) {
95103
}
96104
if (0 ==
97105
memcmp(hash,
98-
"\xc4\x93\x1e\xc6\x3e\xdd\x3c\xa9\x23\x62\x72\x91\x6f\x0b\x17\x30"
99-
"\x46\x60\x7f\x8b\x86\xfd\x9a\x1b\x49\x28\x22\xce\xc8\xb4\xc7\xa4",
106+
"\x28\xbc\xd9\x46\xab\xf7\x7e\x69\xe7\xf5\xdb\x4d\x18\x67\xdb\x11"
107+
"\xaa\x1f\x2a\x46\x80\x1e\x5d\xa2\xfa\x4d\x88\xc8\xe5\x55\x5d\x8a",
100108
32)) {
101109
memcpy(bootloader_version, "2.0.8", strlen("2.0.8"));
102110
return 1; // 2.0.8 shipped with fw 3.11.0

legacy/firmware/bl_check.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
e4cfb4816677c565ca7362f5f013209509c3b08c712427420fc3acbcbbd8ed5c 2.0.6 shipped with fw 3.5.0
22
45e11f4d7d74f7c9aaa671f536e2c8d48f5b1da4716578136d6f68006f9ed1cc 2.0.7 shipped with fw 3.5.0
33
f6985aa0f3cf4a6285ff4c6335bb6bf194820d3f49b861b7b5ef8b9e09073255 2.0.7 shipped with fw 3.7.0
4-
c4931ec63edd3ca9236272916f0b173046607f8b86fd9a1b492822cec8b4c7a4 2.0.8 shipped with fw 3.11.0
4+
28bcd946abf77e69e7f5db4d1867db11aa1f2a46801e5da2fa4d88c8e5555d8a 2.0.8 shipped with fw 3.11.0

legacy/firmware/bl_check_qa.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
80b822f4d40880fc9022c8e1b6755bb059515b3b0b546104bd37e3f146063ab2 2.0.6 shipped with fw 3.5.0
22
f1d184fe18f406a38edec9829b981d56cd71ca3d7b7169d1e4f88a8c5a643ac1 2.0.7 shipped with fw 3.5.0
3-
5977409c0a4782224b400aa38b17af1fd72c88bd351d6de7e429b8ee7fb67c59 2.0.8 shipped with fw 3.11.0
3+
5e4eb922a24fb37c3970e07753013d679054c930dc682929eac4771b03c2c8df 2.0.8 shipped with fw 3.11.0

legacy/firmware/bootloader.dat

0 Bytes
Binary file not shown.

legacy/firmware/bootloader_qa.dat

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)