8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 696c865 + c94d36d commit 22769c5Copy full SHA for 22769c5
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];
bootloaders/eboot/eboot.elf
-680 Bytes
0 commit comments