summaryrefslogtreecommitdiffstats
path: root/fastboot/protocol.c
diff options
context:
space:
mode:
authorBrian Swetland <swetland@google.com>2010-06-28 11:14:26 -0700
committerBrian Swetland <swetland@google.com>2010-07-01 13:54:13 -0700
commit63e5205cd2f693bbfa54411f2dd20354bd30ffd8 (patch)
tree67f5f450fa615c24cf85e1e08444d346d418368c /fastboot/protocol.c
parent57dbb2cb3767c625cfc8d15406b2c4d6b53bb7c6 (diff)
downloadsystem_core-63e5205cd2f693bbfa54411f2dd20354bd30ffd8.zip
system_core-63e5205cd2f693bbfa54411f2dd20354bd30ffd8.tar.gz
system_core-63e5205cd2f693bbfa54411f2dd20354bd30ffd8.tar.bz2
fastboot: make it so I can actually see the bootloader chatter
- prefix bootloader messages with (bootloader) - remove the fancy right justified no newline business Change-Id: Ica16ebe6a25971db423c5db06300a280d93faf3e Signed-off-by: Brian Swetland <swetland@google.com>
Diffstat (limited to 'fastboot/protocol.c')
-rw-r--r--fastboot/protocol.c2
1 files changed, 1 insertions, 1 deletions
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;
}