diff options
author | Daniel Rosenberg <drosen@google.com> | 2014-09-16 21:46:37 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-09-16 21:46:37 +0000 |
commit | 4c13769dbab130a21a802df61a8a7fa8a059ffa4 (patch) | |
tree | e6b1b8a186f59e67ccd3fc69b742ebe283cfcba4 /fastboot | |
parent | 4a3ed65549b57a021f0641151093e2073c380230 (diff) | |
parent | 24e834ab6037cee0d3e8569d5fd45695f86865bd (diff) | |
download | system_core-4c13769dbab130a21a802df61a8a7fa8a059ffa4.zip system_core-4c13769dbab130a21a802df61a8a7fa8a059ffa4.tar.gz system_core-4c13769dbab130a21a802df61a8a7fa8a059ffa4.tar.bz2 |
am 24e834ab: am 81b857f3: Merge "fastboot: Remove tos from flashall" into lmp-dev
* commit '24e834ab6037cee0d3e8569d5fd45695f86865bd':
fastboot: Remove tos from flashall
Diffstat (limited to 'fastboot')
-rw-r--r-- | fastboot/fastboot.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fastboot/fastboot.c b/fastboot/fastboot.c index 64a52b5..019d16f 100644 --- a/fastboot/fastboot.c +++ b/fastboot/fastboot.c @@ -104,7 +104,6 @@ static struct { {"recovery.img", "recovery.sig", "recovery", true}, {"system.img", "system.sig", "system", false}, {"vendor.img", "vendor.sig", "vendor", true}, - {"tos.img", "tos.sig", "tos", true}, }; void get_my_path(char *path); @@ -123,8 +122,6 @@ char *find_item(const char *item, const char *product) fn = "system.img"; } else if(!strcmp(item,"vendor")) { fn = "vendor.img"; - } else if(!strcmp(item,"tos")) { - fn = "tos.img"; } else if(!strcmp(item,"userdata")) { fn = "userdata.img"; } else if(!strcmp(item,"cache")) { @@ -291,7 +288,7 @@ void usage(void) "commands:\n" " update <filename> reflash device from update.zip\n" " flashall flash boot, system, vendor and if found,\n" - " recovery, tos\n" + " recovery\n" " flash <partition> [ <filename> ] write a file to a flash partition\n" " erase <partition> erase a flash partition\n" " format[:[<fs type>][:[<size>]] <partition> format a flash partition.\n" |