diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-10-20 21:20:36 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-10-20 23:07:37 +0200 |
commit | c0773455397746b10194bc14c7cef144f4095b65 (patch) | |
tree | 6dc4175cd49f54819d396634e1c5f00dd244bffb /gnu/build | |
parent | 6352e3a17b5978cf9af9e1668816d8f47ec85208 (diff) |
file-systems: Support the 'no-diratime' mount flag.
* gnu/build/file-systems.scm (mount-flags->bit-mask): Handle 'no-diratime'.
* doc/guix.texi (File Systems): Document it.
Diffstat (limited to 'gnu/build')
-rw-r--r-- | gnu/build/file-systems.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm index 0ed5dc5671..0d7ff99f17 100644 --- a/gnu/build/file-systems.scm +++ b/gnu/build/file-systems.scm @@ -1132,6 +1132,8 @@ corresponds to the symbols listed in FLAGS." (logior MS_NOEXEC (loop rest))) (('no-atime rest ...) (logior MS_NOATIME (loop rest))) + (('no-diratime rest ...) + (logior MS_NODIRATIME (loop rest))) (('strict-atime rest ...) (logior MS_STRICTATIME (loop rest))) (('lazy-time rest ...) |