am fad9b3eb: Merge "sdcard: Turn on noatime for fuse mounted sdcard"

* commit 'fad9b3ebb8f5966e2afd7ff65d78ecc3330aaa3e':
  sdcard: Turn on noatime for fuse mounted sdcard
diff --git a/sdcard/sdcard.c b/sdcard/sdcard.c
index 4d50bf0..39ce0eb 100644
--- a/sdcard/sdcard.c
+++ b/sdcard/sdcard.c
@@ -1869,7 +1869,8 @@
             "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;