diff options
author | Koushik Dutta <koushd@gmail.com> | 2011-01-01 17:55:22 -0800 |
---|---|---|
committer | Koushik Dutta <koushd@gmail.com> | 2011-01-01 17:55:22 -0800 |
commit | da32b54f85065fd9d68e234571f1208369069463 (patch) | |
tree | 6f931ce0dd1e126471f3eced74b2791fcf6fcf26 /roots.c | |
parent | 29a78912043cf6287399a058a2fc57cfe2a8cbfe (diff) | |
download | android_bootable_recovery-da32b54f85065fd9d68e234571f1208369069463.tar.gz android_bootable_recovery-da32b54f85065fd9d68e234571f1208369069463.tar.bz2 android_bootable_recovery-da32b54f85065fd9d68e234571f1208369069463.zip |
readd ext2/ext3 format support.
Change-Id: I58652abaea8f7a52b70bc1b14aec5b530fe70382
Diffstat (limited to 'roots.c')
-rw-r--r-- | roots.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -217,7 +217,8 @@ int format_volume(const char* volume) { LOGE("can't give path \"%s\" to format_volume\n", volume); return -1; #endif - return format_unknown_device(volume); + printf("Formatting volume %s of fs type %s\n", volume, v->fs_type); + return format_unknown_device(v->device, volume, v->fs_type); } if (ensure_path_unmounted(volume) != 0) { |