Skip to content

Commit c94d36d

Browse files
Comment out verify step in eboot.c (#7468)
* Comment out verify step in eboot.c Meant for #7458 , but still requires a recompiled eboot.elf. * Rebuild eboot.elf from changed source Co-authored-by: Earle F. Philhower, III <[email protected]>
1 parent 91427a1 commit c94d36d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

bootloaders/eboot/eboot.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,10 @@ int main()
229229
ets_wdt_enable();
230230

231231
ets_putc('0'+res); ets_putc('\n');
232-
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.
233236
// Verify the copy
234237
ets_putc('c'); ets_putc('m'); ets_putc('p'); ets_putc(':');
235238
if (res == 0) {
@@ -239,6 +242,7 @@ int main()
239242
}
240243

241244
ets_putc('0'+res); ets_putc('\n');
245+
#endif
242246
if (res == 0) {
243247
cmd.action = ACTION_LOAD_APP;
244248
cmd.args[0] = cmd.args[1];

bootloaders/eboot/eboot.elf

-680 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)