vold: Always format FAT32

Signed-off-by: San Mehat <san@google.com>
This commit is contained in:
San Mehat 2010-01-09 12:23:47 -08:00
parent 23969931fa
commit 8d934caeae

View file

@ -168,13 +168,7 @@ int Fat::format(const char *fsPath) {
int rc;
args[0] = MKDOSFS_PATH;
args[1] = "-F";
if ((nr_sec * 512) <= ((unsigned int) (1024*1024) * 32))
args[2] = "12";
else if ((nr_sec * 512) <= ((unsigned int) (1024*1024*1024) * 2))
args[2] = "16";
else
args[2] = "32";
args[2] = "32";
args[3] = "-O";
args[4] = "android";
args[5] = fsPath;