Skip to content

Commit 68bf59e

Browse files
authored
Comment out verify step in eboot.c
Meant for #7458 , but still requires a recompiled eboot.elf.
1 parent 91427a1 commit 68bf59e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: 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];

0 commit comments

Comments
 (0)