From ac9288778c04130c5eae07062691862f9293a3d9 Mon Sep 17 00:00:00 2001 From: Douglas Reis Date: Mon, 25 May 2026 10:49:20 +0100 Subject: [PATCH] [app] Don't automatically check loaded files The verify command must be used after load instead. Signed-off-by: Douglas Reis --- app/commands.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/commands.hh b/app/commands.hh index 0c4d320..d89b85b 100644 --- a/app/commands.hh +++ b/app/commands.hh @@ -277,9 +277,8 @@ struct LoadFile : public Commands { if (bootstrap) { this->flash.reset(); - return 1; } - return commands::VerifyFile(this->flash, filename, start_addr, quad).run(); + return 1; } };