summaryrefslogtreecommitdiffstats
path: root/fastboot
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-03-19 18:27:08 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-03-19 18:27:08 +0000
commitddaabcf22f678abb3f949667cac458935eb17941 (patch)
tree8f4b0e0cafc9cadf9e287128ca1a12fee0bd3a3e /fastboot
parent787ed98d683cd16faa5d87bb4a4137cc0cb0eff4 (diff)
parent41233fcc35ce8c5efa06348f013c31072505229b (diff)
downloadsystem_core-ddaabcf22f678abb3f949667cac458935eb17941.zip
system_core-ddaabcf22f678abb3f949667cac458935eb17941.tar.gz
system_core-ddaabcf22f678abb3f949667cac458935eb17941.tar.bz2
am 41233fcc: am 294d3f74: Merge "Remove a prehistoric fastboot hack."
* commit '41233fcc35ce8c5efa06348f013c31072505229b': Remove a prehistoric fastboot hack.
Diffstat (limited to 'fastboot')
-rw-r--r--fastboot/fastboot.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp
index 48d980a..a1847f6 100644
--- a/fastboot/fastboot.cpp
+++ b/fastboot/fastboot.cpp
@@ -701,13 +701,7 @@ void do_update(usb_handle *usb, const char *filename, int erase_first)
unsigned sz;
void* data = unzip_file(zip, "android-info.txt", &sz);
if (data == 0) {
- /* fallback for older zipfiles */
- data = unzip_file(zip, "android-product.txt", &sz);
- if ((data == 0) || (sz < 1)) {
- die("update package has no android-info.txt or android-product.txt");
- }
- data = mkmsg("board=%sversion-baseband=0.66.04.19\n", reinterpret_cast<char*>(data));
- sz = strlen(reinterpret_cast<char*>(data));
+ die("update package '%s' has no android-info.txt", filename);
}
setup_requirements(reinterpret_cast<char*>(data), sz);