From 1f7d3d85a746949f47ca1549ea492d24a712a860 Mon Sep 17 00:00:00 2001 From: Self Not Found Date: Thu, 22 Dec 2022 12:24:20 +0800 Subject: [PATCH] Fix the steps when updating from old version When updating from a old version on Windows, the `pm3-flash-all` always fails even after updating the bootloader. This is because it detects the hardware by the serial number "ICEMAN", which only appears after flashing the fullimage. --- client/src/flash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/flash.c b/client/src/flash.c index 6275db0bf..20729b2da 100644 --- a/client/src/flash.c +++ b/client/src/flash.c @@ -489,7 +489,7 @@ static void flash_suggest_update_bootloader(void) { PrintAndLogEx(ERR, "------------- " _CYAN_("Follow these steps") " -------------------"); PrintAndLogEx(NORMAL, ""); PrintAndLogEx(ERR, " 1) ./pm3-flash-bootrom"); - PrintAndLogEx(ERR, " 2) ./pm3-flash-all"); + PrintAndLogEx(ERR, " 2) ./pm3-flash-fullimage"); PrintAndLogEx(ERR, " 3) ./pm3"); PrintAndLogEx(NORMAL, ""); PrintAndLogEx(INFO, "---------------------------------------------------");