summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-09-21 23:28:11 +0200
committerDoug Zongker <dougz@android.com>2010-09-21 23:28:11 +0200
commit93ca4fc6943a3ebf758c5db98531531b8fe92c98 (patch)
tree5fc4f04fc540d627934a6c677e077ef4ac76c4c8
parentremove the notion of "root path"; support mixed flash types (do not merge) (diff)
downloadandroid_bootable_recovery-93ca4fc6943a3ebf758c5db98531531b8fe92c98.tar
android_bootable_recovery-93ca4fc6943a3ebf758c5db98531531b8fe92c98.tar.gz
android_bootable_recovery-93ca4fc6943a3ebf758c5db98531531b8fe92c98.tar.bz2
android_bootable_recovery-93ca4fc6943a3ebf758c5db98531531b8fe92c98.tar.lz
android_bootable_recovery-93ca4fc6943a3ebf758c5db98531531b8fe92c98.tar.xz
android_bootable_recovery-93ca4fc6943a3ebf758c5db98531531b8fe92c98.tar.zst
android_bootable_recovery-93ca4fc6943a3ebf758c5db98531531b8fe92c98.zip
-rw-r--r--bootloader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader.c b/bootloader.c
index 7da3f4ef6..b690c5582 100644
--- a/bootloader.c
+++ b/bootloader.c
@@ -32,7 +32,7 @@ int get_bootloader_message(struct bootloader_message *out) {
Volume* v = volume_for_path("/misc");
if (strcmp(v->fs_type, "mtd") == 0) {
return get_bootloader_message_mtd(out, v);
- } else if (strcmp(v->fs_type, "block") == 0) {
+ } else if (strcmp(v->fs_type, "emmc") == 0) {
return get_bootloader_message_block(out, v);
}
LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type);
@@ -43,7 +43,7 @@ int set_bootloader_message(const struct bootloader_message *in) {
Volume* v = volume_for_path("/misc");
if (strcmp(v->fs_type, "mtd") == 0) {
return set_bootloader_message_mtd(in, v);
- } else if (strcmp(v->fs_type, "block") == 0) {
+ } else if (strcmp(v->fs_type, "emmc") == 0) {
return set_bootloader_message_block(in, v);
}
LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type);