diff --git a/sdcard/sdcard.c b/sdcard/sdcard.c index 4d50bf0d65157e16cb2f9029f84dbfd530882704..39ce0eb3e592c84bc38cf64781d1a0c2d216b13a 100644 --- a/sdcard/sdcard.c +++ b/sdcard/sdcard.c @@ -1869,7 +1869,8 @@ static int run(const char* source_path, const char* dest_path, uid_t uid, "fd=%i,rootmode=40000,default_permissions,allow_other,user_id=%d,group_id=%d", fd, uid, gid); - res = mount("/dev/fuse", dest_path, "fuse", MS_NOSUID | MS_NODEV | MS_NOEXEC, opts); + res = mount("/dev/fuse", dest_path, "fuse", MS_NOSUID | MS_NODEV | MS_NOEXEC | + MS_NOATIME, opts); if (res < 0) { ERROR("cannot mount fuse filesystem: %s\n", strerror(errno)); goto error;