use fs_type "emmc" instead of "block" for consistency (do not merge)

Change-Id: Iab60665d9c6daef7893896a64b7f319120a5f8ee
This commit is contained in:
Doug Zongker 2010-09-21 14:28:11 -07:00
parent d4208f9f9d
commit 93ca4fc694

View File

@ -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);