diff options
author | Brian Swetland <swetland@google.com> | 2010-07-13 17:18:39 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-07-13 17:18:39 -0700 |
commit | 587c286f988a99469b8961f024c3be13f43c847a (patch) | |
tree | 2c52b859dbbdec45765dc722d14a5d2da3787515 /fastboot | |
parent | 5db1ebe0292a021ebb54c5981bc12bd6ee12eb7a (diff) | |
parent | beb72464ff8c501597cd7e098090f7d131dc5ccb (diff) | |
download | system_core-587c286f988a99469b8961f024c3be13f43c847a.zip system_core-587c286f988a99469b8961f024c3be13f43c847a.tar.gz system_core-587c286f988a99469b8961f024c3be13f43c847a.tar.bz2 |
am beb72464: am 63e5205c: fastboot: make it so I can actually see the bootloader chatter
Merge commit 'beb72464ff8c501597cd7e098090f7d131dc5ccb'
* commit 'beb72464ff8c501597cd7e098090f7d131dc5ccb':
fastboot: make it so I can actually see the bootloader chatter
Diffstat (limited to 'fastboot')
-rw-r--r-- | fastboot/engine.c | 3 | ||||
-rw-r--r-- | fastboot/protocol.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/fastboot/engine.c b/fastboot/engine.c index f29cc03..ee68f26 100644 --- a/fastboot/engine.c +++ b/fastboot/engine.c @@ -285,7 +285,8 @@ int fb_execute_queue(usb_handle *usb) a->start = now(); if (start < 0) start = a->start; if (a->msg) { - fprintf(stderr,"%30s... ",a->msg); + // fprintf(stderr,"%30s... ",a->msg); + fprintf(stderr,"%s...\n",a->msg); } if (a->op == OP_DOWNLOAD) { status = fb_download_data(usb, a->data, a->size); diff --git a/fastboot/protocol.c b/fastboot/protocol.c index c788a12..3948363 100644 --- a/fastboot/protocol.c +++ b/fastboot/protocol.c @@ -62,7 +62,7 @@ static int check_response(usb_handle *usb, unsigned size, } if(!memcmp(status, "INFO", 4)) { - fprintf(stderr,"%s\n", status); + fprintf(stderr,"(bootloader) %s\n", status + 4); continue; } |