We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 253cd1f commit c99e023Copy full SHA for c99e023
applications/bootloader/app.c
@@ -5,7 +5,7 @@
5
#include "app.h"
6
#include <base64.h>
7
8
-#define MODULE_NAME "bootloader"
+#define MODULE_NAME "bl"
9
10
11
/* String representation of bootloader states. Ordering must be the same
@@ -62,7 +62,7 @@ static app_ret_t bl_step(App *self) {
62
bl_set_state(self, BL_STATE_ALL_FAILED);
63
break;
64
}
65
-
+
66
if (chainloader_check_signature(&self->chainloader, pubkey) == CHAINLOADER_RET_OK) {
67
bl_set_state(self, BL_STATE_BOOT);
68
} else {
0 commit comments