aboutsummaryrefslogtreecommitdiffstats
path: root/src/lg-downloader.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lg-downloader.c')
-rw-r--r--src/lg-downloader.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/lg-downloader.c b/src/lg-downloader.c
index 8e1e6a6..61b6edd 100644
--- a/src/lg-downloader.c
+++ b/src/lg-downloader.c
@@ -321,8 +321,7 @@ int main(int argc, char *argv[])
goto error;
}
- if (context.verbose)
- printf("Finding and opening USB device\n");
+ printf("Finding and opening USB device\n");
rc = usb_open(&context);
if (rc < 0)
@@ -337,7 +336,7 @@ int main(int argc, char *argv[])
switch (context.operation) {
case 'r':
- printf("Rebooting device\n");
+ printf("Rebooting device...\n");
rc = download_reset(&context);
if (rc < 0) {
@@ -347,7 +346,7 @@ int main(int argc, char *argv[])
break;
case 'e':
- printf("Erasing partition %s\n", context.partition);
+ printf("Erasing partition %s...\n", context.partition);
/* Give the user a chance to hit Ctrl+C */
sleep(1);
@@ -360,7 +359,7 @@ int main(int argc, char *argv[])
break;
case 'f':
- printf("Flashing %s to partition %s\n", context.filename, context.partition);
+ printf("Flashing %s to partition %s...\n", context.filename, context.partition);
rc = flash(&context);
if (rc < 0) {
@@ -370,7 +369,7 @@ int main(int argc, char *argv[])
break;
case 'd':
- printf("Dumping partition %s to %s\n", context.partition, context.filename);
+ printf("Dumping partition %s to %s...\n", context.partition, context.filename);
rc = dump(&context);
if (rc < 0) {
@@ -380,7 +379,7 @@ int main(int argc, char *argv[])
break;
case 'p':
- printf("Reading partitions table\n");
+ printf("Reading partitions table...\n");
rc = partitions(&context);
if (rc < 0) {