aboutsummaryrefslogtreecommitdiffstats
path: root/updater/updater.c
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 /updater/updater.c
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 'updater/updater.c')
-rw-r--r--updater/updater.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/updater/updater.c b/updater/updater.c
index 1aa277c..2d16dee 100644
--- a/updater/updater.c
+++ b/updater/updater.c
@@ -39,9 +39,11 @@ int main(int argc, char** argv) {
}
char* version = argv[1];
- if ((version[0] != '1' && version[0] != '2') || version[1] != '\0') {
- // We support version "1" or "2".
- fprintf(stderr, "wrong updater binary API; expected 1 or 2, got %s\n",
+ if ((version[0] != '1' && version[0] != '2' && version[0] != '3') ||
+ version[1] != '\0') {
+ // We support version 1, 2, or 3.
+ fprintf(stderr, "wrong updater binary API; expected 1, 2, or 3; "
+ "got %s\n",
argv[1]);
return 2;
}
@@ -100,6 +102,7 @@ int main(int argc, char** argv) {
UpdaterInfo updater_info;
updater_info.cmd_pipe = cmd_pipe;
updater_info.package_zip = &za;
+ updater_info.version = atoi(version);
State state;
state.cookie = &updater_info;