am 463de48f: Merge change 2162 into donut
Merge commit '463de48fb05cb29388e7763f75f6cfa56a2f5cb1' * commit '463de48fb05cb29388e7763f75f6cfa56a2f5cb1': Mount SD card synchronous. This is an experimental change intended to
This commit is contained in:
commit
144a6d9bbf
|
@ -110,7 +110,7 @@ int vfat_mount(blkdev_t *dev, volume_t *vol, boolean safe_mode)
|
|||
LOG_VOL("vfat_mount(%d:%d, %s, %d):", dev->major, dev->minor, vol->mount_point, safe_mode);
|
||||
#endif
|
||||
|
||||
flags = MS_NODEV | MS_NOEXEC | MS_NOSUID | MS_DIRSYNC;
|
||||
flags = MS_NODEV | MS_NOEXEC | MS_NOSUID | MS_DIRSYNC | MS_SYNCHRONOUS;
|
||||
|
||||
if (vol->state == volstate_mounted) {
|
||||
LOG_VOL("Remounting %d:%d on %s, safe mode %d", dev->major,
|
||||
|
|
Loading…
Reference in New Issue