We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91427a1 commit 68bf59eCopy full SHA for 68bf59e
bootloaders/eboot/eboot.c
@@ -229,7 +229,10 @@ int main()
229
ets_wdt_enable();
230
231
ets_putc('0'+res); ets_putc('\n');
232
-
+#if 0
233
+ //devyte: this verify step below (cmp:) only works when the end of copy operation above does not overwrite the
234
+ //beginning of the image in the empty area, see #7458. Disabling for now.
235
+ //TODO: replace the below verify with hash type, crc, or similar.
236
// Verify the copy
237
ets_putc('c'); ets_putc('m'); ets_putc('p'); ets_putc(':');
238
if (res == 0) {
@@ -239,6 +242,7 @@ int main()
239
242
}
240
243
241
244
245
+#endif
246
247
cmd.action = ACTION_LOAD_APP;
248
cmd.args[0] = cmd.args[1];
0 commit comments