summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/build/file-systems.scm2
-rw-r--r--gnu/system/file-systems.scm2
2 files changed, 3 insertions, 1 deletions
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index 1ff954583a7..d25b798b117 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -1312,6 +1312,8 @@ corresponds to the symbols listed in FLAGS."
(logior MS_STRICTATIME (loop rest)))
(('lazy-time rest ...)
(logior MS_LAZYTIME (loop rest)))
+ (('remount rest ...)
+ (logior MS_REMOUNT (loop rest)))
(('shared rest ...)
(loop rest))
(()
diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm
index f4086dd62b7..f83b67c4770 100644
--- a/gnu/system/file-systems.scm
+++ b/gnu/system/file-systems.scm
@@ -123,7 +123,7 @@
;; Note: Keep in sync with 'mount-flags->bit-mask'.
(let ((known-flags '(read-only
bind-mount no-suid no-dev no-exec
- no-atime no-diratime strict-atime lazy-time
+ no-atime no-diratime strict-atime lazy-time remount
shared)))
(lambda (flags)
"Return the subset of FLAGS that is invalid."