am 63e5205c: fastboot: make it so I can actually see the bootloader chatter

Merge commit '63e5205cd2f693bbfa54411f2dd20354bd30ffd8' into gingerbread-plus-aosp

* commit '63e5205cd2f693bbfa54411f2dd20354bd30ffd8':
  fastboot: make it so I can actually see the bootloader chatter
This commit is contained in:
Brian Swetland 2010-07-13 17:15:57 -07:00 committed by Android Git Automerger
commit beb72464ff
2 changed files with 3 additions and 2 deletions

View file

@ -285,7 +285,8 @@ void 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);

View file

@ -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;
}