From 9c1ddff7e303ecd93716d32b02f354f0eca9e240 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Fri, 24 Oct 2014 09:30:24 +0200 Subject: Linux: Support NTFS formatting of volume. We use mkfs.ntfs so it needs to be installed on the system. --- src/Main/TextUserInterface.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Main/TextUserInterface.cpp') diff --git a/src/Main/TextUserInterface.cpp b/src/Main/TextUserInterface.cpp index d83515f3..b7dffe5d 100644 --- a/src/Main/TextUserInterface.cpp +++ b/src/Main/TextUserInterface.cpp @@ -698,6 +698,7 @@ namespace VeraCrypt ShowInfo (L" 3) Linux Ext2"); filesystems.push_back (VolumeCreationOptions::FilesystemType::Ext2); ShowInfo (L" 4) Linux Ext3"); filesystems.push_back (VolumeCreationOptions::FilesystemType::Ext3); ShowInfo (L" 5) Linux Ext4"); filesystems.push_back (VolumeCreationOptions::FilesystemType::Ext4); + ShowInfo (L" 6) NTFS"); filesystems.push_back (VolumeCreationOptions::FilesystemType::NTFS); #elif defined (TC_MACOSX) ShowInfo (L" 3) Mac OS Extended"); filesystems.push_back (VolumeCreationOptions::FilesystemType::MacOsExt); #elif defined (TC_FREEBSD) || defined (TC_SOLARIS) @@ -786,6 +787,7 @@ namespace VeraCrypt case VolumeCreationOptions::FilesystemType::Ext4: fsFormatter = "mkfs.ext4"; break; case VolumeCreationOptions::FilesystemType::MacOsExt: fsFormatter = "newfs_hfs"; break; case VolumeCreationOptions::FilesystemType::UFS: fsFormatter = "newfs" ; break; + case VolumeCreationOptions::FilesystemType::NTFS: fsFormatter = "mkfs.ntfs"; break; default: throw ParameterIncorrect (SRC_POS); } -- cgit v1.2.3