summaryrefslogtreecommitdiffstats
path: root/tools/irecovery.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/irecovery.c')
-rw-r--r--tools/irecovery.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/irecovery.c b/tools/irecovery.c
index 91d1d48..c32a7f9 100644
--- a/tools/irecovery.c
+++ b/tools/irecovery.c
@@ -353,8 +353,10 @@ static void print_usage(int argc, char **argv) {
353 char *name = NULL; 353 char *name = NULL;
354 name = strrchr(argv[0], '/'); 354 name = strrchr(argv[0], '/');
355 printf("Usage: %s [OPTIONS]\n", (name ? name + 1: argv[0])); 355 printf("Usage: %s [OPTIONS]\n", (name ? name + 1: argv[0]));
356 printf("Interact with an iOS device in DFU or recovery mode.\n\n"); 356 printf("\n");
357 printf("options:\n"); 357 printf("Interact with an iOS device in DFU or recovery mode.\n");
358 printf("\n");
359 printf("OPTIONS:\n");
358 printf(" -i ECID\tconnect to specific device by its ECID\n"); 360 printf(" -i ECID\tconnect to specific device by its ECID\n");
359 printf(" -c CMD\trun CMD on device\n"); 361 printf(" -c CMD\trun CMD on device\n");
360 printf(" -m\t\tprint current device mode\n"); 362 printf(" -m\t\tprint current device mode\n");
@@ -368,7 +370,8 @@ static void print_usage(int argc, char **argv) {
368 printf(" -v\t\tenable verbose output, repeat for higher verbosity\n"); 370 printf(" -v\t\tenable verbose output, repeat for higher verbosity\n");
369 printf(" -h\t\tprints this usage information\n"); 371 printf(" -h\t\tprints this usage information\n");
370 printf("\n"); 372 printf("\n");
371 printf("Homepage: <" PACKAGE_URL ">\n"); 373 printf("Homepage: <" PACKAGE_URL ">\n");
374 printf("Bug Reports: <" PACKAGE_BUGREPORT ">\n");
372} 375}
373 376
374int main(int argc, char* argv[]) { 377int main(int argc, char* argv[]) {