summaryrefslogtreecommitdiff
path: root/gnu/build/file-systems.scm
diff options
context:
space:
mode:
authorrendaw <7e9wc56emjakcm@s.rendaw.me>2019-04-29 12:08:51 +0200
committerLudovic Courtès <ludo@gnu.org>2019-04-29 12:19:03 +0200
commit9d3053819dfd834a1c29a03427c41d8524b8a7d5 (patch)
tree079b362a7ffa3d2c8b6947d27740de16e49c3c12 /gnu/build/file-systems.scm
parent2f8198dfed1de935dfc60510a5514e5c289c3fc7 (diff)
downloadguix-patches-9d3053819dfd834a1c29a03427c41d8524b8a7d5.tar
guix-patches-9d3053819dfd834a1c29a03427c41d8524b8a7d5.tar.gz
file-systems: Support the 'no-atime' flag.
* guix/build/syscalls.scm (MS_NOATIME): New variable. * gnu/build/file-systems.scm (mount-flags->bit-mask): Support it. * doc/guix.texi (File Systems): Document it and add cross-references to the relevant documentation. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/build/file-systems.scm')
-rw-r--r--gnu/build/file-systems.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index c468144170..8bb10d574d 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -575,6 +575,8 @@ corresponds to the symbols listed in FLAGS."
(logior MS_NODEV (loop rest)))
(('no-exec rest ...)
(logior MS_NOEXEC (loop rest)))
+ (('no-atime rest ...)
+ (logior MS_NOATIME (loop rest)))
(()
0))))