aboutsummaryrefslogtreecommitdiffstats
path: root/bootloader.h
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-02-02 13:09:52 -0800
committerDoug Zongker <dougz@android.com>2010-02-03 09:20:07 -0800
commite08991e02a7d678f2574e85289a34b2a9a537c82 (patch)
treeca53b4adbf66388805a47f93c440412be552761c /bootloader.h
parent93dbe07ff6c06e8df2c804cbac63601fbb1de041 (diff)
downloadbootable_recovery-e08991e02a7d678f2574e85289a34b2a9a537c82.zip
bootable_recovery-e08991e02a7d678f2574e85289a34b2a9a537c82.tar.gz
bootable_recovery-e08991e02a7d678f2574e85289a34b2a9a537c82.tar.bz2
bump updater API version to 3; deprecate firmware update command
Remove support for the HTC-specific "firmware" update command and the corresponding edify function write_firmware_update(). This functionality is now done by an edify extension library that lives in vendor/htc. Change-Id: I80858951ff10ed8dfff98aefb796bef009e05efb
Diffstat (limited to 'bootloader.h')
-rw-r--r--bootloader.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/bootloader.h b/bootloader.h
index fec6409..2e749aa 100644
--- a/bootloader.h
+++ b/bootloader.h
@@ -47,20 +47,4 @@ struct bootloader_message {
int get_bootloader_message(struct bootloader_message *out);
int set_bootloader_message(const struct bootloader_message *in);
-/* Write an update to the cache partition for update-radio or update-hboot.
- * Note, this destroys any filesystem on the cache partition!
- * The expected bitmap format is 240x320, 16bpp (2Bpp), RGB 5:6:5.
- */
-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 *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