Format volumes with "auto" filesystem type.

Bug: 20275581
Change-Id: Id4c7e1ad83f28110a77fecf563e1bcb8ca4d4d9a
This commit is contained in:
Jeff Sharkey
2015-05-27 14:38:39 -07:00
parent 4cf59747f8
commit 4e83cc9fc1

View File

@@ -1434,7 +1434,7 @@ class MountService extends IMountService.Stub
final VolumeInfo vol = findVolumeById(volId);
try {
mConnector.execute("volume", "format", vol.id);
mConnector.execute("volume", "format", vol.id, "auto");
} catch (NativeDaemonConnectorException e) {
throw e.rethrowAsParcelableException();
}