aboutsummaryrefslogtreecommitdiffstats
path: root/bootloader.h
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-01-20 16:34:10 -0800
committerDoug Zongker <dougz@android.com>2010-01-21 12:50:04 -0800
commit687bc12ccfbda26ad134b27d09d1d70a2b8705a6 (patch)
tree83d313c1cb3e9a3a6795faeceb832cfd1f423870 /bootloader.h
parent883b4c8be5f50cde679cdfa589d7ade83c0253b7 (diff)
downloadbootable_recovery-687bc12ccfbda26ad134b27d09d1d70a2b8705a6.zip
bootable_recovery-687bc12ccfbda26ad134b27d09d1d70a2b8705a6.tar.gz
bootable_recovery-687bc12ccfbda26ad134b27d09d1d70a2b8705a6.tar.bz2
save the recovery log from before HTC firmware updates
When doing a firmware (radio or hboot) update on HTC devices, save the recovery log in block 1 of the cache partition, before the firmware image and the UI bitmaps. When we boot back into recovery after the firmware update to reformat the cache partition, copy that log out of cache before reformatting it and dump it into the current invocation's log. The practical upshot of all this is that we can see the log output from radio and hboot updates. Change-Id: Ie0e89566754c88f4bed6a90d8a0aa04047b01a27
Diffstat (limited to 'bootloader.h')
-rw-r--r--bootloader.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/bootloader.h b/bootloader.h
index 3d4302f..fec6409 100644
--- a/bootloader.h
+++ b/bootloader.h
@@ -54,6 +54,13 @@ int set_bootloader_message(const struct bootloader_message *in);
int write_update_for_bootloader(
const char *update, int update_len,
int bitmap_width, int bitmap_height, int bitmap_bpp,
- const char *busy_bitmap, const char *error_bitmap);
+ const char *busy_bitmap, const char *error_bitmap,
+ const char *log_filename);
+
+/* Look for a log stored in the cache partition in the block after the
+ * firmware update header. If we can read such a log, copy it to
+ * stdout (ie, the current log).
+ */
+void recover_firmware_update_log();
#endif