aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2011-12-01 14:49:59 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-12-01 14:49:59 -0800
commitb539f0acabe7a314afe3d704c7574030246f3674 (patch)
tree91f3047f9569e647d70d35d714cb8bfba182447c
parent6940ec41d1ed10157b61ba4967b1ab2e79fcb808 (diff)
parentd7608a40d6bed0d8ca686414a5a4f44b6d4d0435 (diff)
downloadsystem_core-b539f0acabe7a314afe3d704c7574030246f3674.tar.gz
system_core-b539f0acabe7a314afe3d704c7574030246f3674.tar.bz2
system_core-b539f0acabe7a314afe3d704c7574030246f3674.zip
Merge "Flash cache partition with cache.img by default."
-rw-r--r--fastboot/fastboot.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fastboot/fastboot.c b/fastboot/fastboot.c
index 4a2de206..0639f3b7 100644
--- a/fastboot/fastboot.c
+++ b/fastboot/fastboot.c
@@ -88,6 +88,8 @@ char *find_item(const char *item, const char *product)
fn = "system.img";
} else if(!strcmp(item,"userdata")) {
fn = "userdata.img";
+ } else if(!strcmp(item,"cache")) {
+ fn = "cache.img";
} else if(!strcmp(item,"info")) {
fn = "android-info.txt";
} else {