summaryrefslogtreecommitdiff
path: root/gnu/build/file-systems.scm
diff options
context:
space:
mode:
author宋文武 <iyzsong@gmail.com>2015-01-05 22:07:03 +0800
committer宋文武 <iyzsong@gmail.com>2015-01-05 22:24:00 +0800
commit9331ba5dd9dc2224b427d71f2ee56250463f4ef3 (patch)
treefbcc346e19355c6f25acd9983930041a015621ac /gnu/build/file-systems.scm
parent4379c35b73e912a42dcea7e89aae1e2edd9708cd (diff)
downloadguix-patches-9331ba5dd9dc2224b427d71f2ee56250463f4ef3.tar
guix-patches-9331ba5dd9dc2224b427d71f2ee56250463f4ef3.tar.gz
linux-boot: Make /etc/mtab a symlink to /proc/self/mounts.
Fixes <http://bugs.gnu.org/19491>. * gnu/build/linux-boot.scm (mount-root-file-system): Make /root/etc/mtab a symlink to /proc/self/mounts. * gnu/build/file-systems.scm (mount-file-system): Don't update /etc/mtab. * guix/build/syscalls.scm (mount, umount): Have #:update-mtab? default to #f.
Diffstat (limited to 'gnu/build/file-systems.scm')
-rw-r--r--gnu/build/file-systems.scm9
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index 84f58538fd..38e4851515 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -287,13 +287,6 @@ run a file system check."
(mount source mount-point type (mount-flags->bit-mask flags)
(if options
(string->pointer options)
- %null-pointer))
-
- ;; Update /etc/mtab.
- (mkdir-p (string-append root "/etc"))
- (let ((port (open-file (string-append root "/etc/mtab") "a")))
- (format port "~a ~a ~a ~a 0 0~%"
- source mount-point type (or options "rw"))
- (close-port port))))))
+ %null-pointer))))))
;;; file-systems.scm ends here