1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 19:08:26 -06:00

MacOSX: Support creation exFAT volumes on OSX using the built-in command newfs_exfat

This commit is contained in:
Mounir IDRASSI
2016-01-30 00:39:43 +01:00
parent dde3dcf14d
commit b407512248
4 changed files with 18 additions and 4 deletions

View File

@@ -316,6 +316,8 @@ namespace VeraCrypt
{
ArgFilesystem = VolumeCreationOptions::FilesystemType::MacOsExt;
}
else if (str.IsSameAs (L"exFAT", false))
ArgFilesystem = VolumeCreationOptions::FilesystemType::exFAT;
#elif defined (TC_FREEBSD) || defined (TC_SOLARIS)
else if (str.IsSameAs (L"UFS", false))
ArgFilesystem = VolumeCreationOptions::FilesystemType::UFS;