View Single Post
Posts: 28 | Thanked: 46 times | Joined on Dec 2014
#1757
I was able to get write access working by either mounting manually MyDocs using dmask=000 and fmask=000 options.
This is not correct solution.

I also tried using only option uid=29999 that seems to work as well.
This is correct one.

It does look like the mmc-mount script is not able to utilize any of the vfat-opts from mount-opts?
I think there are probably two bugs:

1. The uid=29999 was previously explicitly added by mmc-mount (the ke-recv component), it is not added any more. I think it could be re-added, because it may save many people from trouble.

2. It seems that /etc/default/mount-opts has options for "fat", not "vfat", so the options are never added to "vfat" (i.e. fat32) filesytem. And this is problem, because the options are no more explicitly added by mmc-mount. To fix it just add the following to /etc/default/mount-opts:
Code:
vfat_opts="$fat_opts"
Or just change "fat" to "vfat", if you are never going to use fat16.

(If you try "mount | grep MyDocs" this should show all options that were used when MyDocs was mounted?)
This doesn't show all options, rather try:
Code:
grep MyDocs /proc/mounts
 

The Following 5 Users Say Thank You to yarda For This Useful Post: