Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Add the "longnames" flag to the FAT filesystem mount command
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Moore committed Aug 21, 2013
1 parent e913299 commit dadf169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-qt4/pc-mounttray/menuItem.cpp
Expand Up @@ -186,7 +186,7 @@ void MenuItem::mountItem(){
//Create the fileystem specific command for mounting
QString fstype;
QString fsopts="";
if( filesystem == "FAT" ){ fstype = "mount -t msdosfs"; fsopts = "-o large,-m=644,-M=777"; }
if( filesystem == "FAT" ){ fstype = "mount -t msdosfs"; fsopts = "-o large,longnames,-m=644,-M=777"; }
else if(filesystem == "NTFS"){ fstype = "ntfs-3g"; }
else if(filesystem == "EXT"){ fstype = "mount -t ext2fs"; }
else if(filesystem == "CD9660"){ fstype = "mount -t cd9660"; }
Expand Down

0 comments on commit dadf169

Please sign in to comment.