diff options
author | Jertzukka <Jertzukka@gmail.com> | 2024-06-03 16:57:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 15:57:46 +0200 |
commit | ea7489b93bca1476fd485982ebce8a1b11284ae9 (patch) | |
tree | 369f63a2ef47d4148a10660637be23f1fb0b460c /src/Main | |
parent | bd1e7726573e1834e9954d3b30c9bc255c96a840 (diff) | |
download | VeraCrypt-ea7489b93bca1476fd485982ebce8a1b11284ae9.tar.gz VeraCrypt-ea7489b93bca1476fd485982ebce8a1b11284ae9.zip |
FreeBSD: Support automatic detection and mounting of ext2/3/4, exFAT, NTFS filesystems (#1350)
Diffstat (limited to 'src/Main')
-rw-r--r-- | src/Main/CommandLineInterface.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Main/CommandLineInterface.cpp b/src/Main/CommandLineInterface.cpp index 2bbc73ea..17d7c147 100644 --- a/src/Main/CommandLineInterface.cpp +++ b/src/Main/CommandLineInterface.cpp @@ -347,6 +347,16 @@ namespace VeraCrypt #elif defined (TC_FREEBSD) || defined (TC_SOLARIS) else if (str.IsSameAs (L"UFS", false)) ArgFilesystem = VolumeCreationOptions::FilesystemType::UFS; + else if (str.IsSameAs (L"Ext2", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::Ext2; + else if (str.IsSameAs (L"Ext3", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::Ext3; + else if (str.IsSameAs (L"Ext4", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::Ext4; + else if (str.IsSameAs (L"NTFS", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::NTFS; + else if (str.IsSameAs (L"exFAT", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::exFAT; #endif else throw_err (LangString["UNKNOWN_OPTION"] + L": " + str); |