summaryrefslogtreecommitdiff
path: root/extra/usb_updater/gsctool.c
diff options
context:
space:
mode:
Diffstat (limited to 'extra/usb_updater/gsctool.c')
-rw-r--r--extra/usb_updater/gsctool.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/extra/usb_updater/gsctool.c b/extra/usb_updater/gsctool.c
index 64a7853d31..04432462eb 100644
--- a/extra/usb_updater/gsctool.c
+++ b/extra/usb_updater/gsctool.c
@@ -2358,6 +2358,9 @@ static int process_get_apro_boot_status(struct transfer_descriptor *td)
case AP_RO_PASS:
printf("pass\n");
break;
+ case AP_RO_PASS_UNVERIFIED_GBB:
+ printf("pass - unverified gbb!\n");
+ break;
case AP_RO_FAIL:
printf("FAIL\n");
break;
@@ -2370,6 +2373,9 @@ static int process_get_apro_boot_status(struct transfer_descriptor *td)
case AP_RO_UNSUPPORTED_NOT_TRIGGERED:
printf("not supported\ntriggered: no\n");
break;
+ case AP_RO_IN_PROGRESS:
+ printf("in progress.");
+ break;
default:
fprintf(stderr, "unknown status\n");
return update_error;