guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: file-systems: Add %elogind-file-systems; add it to %base-file-sys


From: Mark H. Weaver
Subject: 01/03: file-systems: Add %elogind-file-systems; add it to %base-file-systems.
Date: Thu, 10 Sep 2015 23:49:55 +0000

mhw pushed a commit to branch master
in repository guix.

commit 14454f0bc55326897feffec9496d61d0fd1da8cb
Author: Mark H Weaver <address@hidden>
Date:   Thu Sep 3 16:58:08 2015 -0400

    file-systems: Add %elogind-file-systems; add it to %base-file-systems.
    
    * gnu/system/file-systems.scm (%elogind-file-systems): New variable.
      (%base-file-systems): Add %elogind-file-systems.
---
 gnu/system/file-systems.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm
index 003eb44..b177f93 100644
--- a/gnu/system/file-systems.scm
+++ b/gnu/system/file-systems.scm
@@ -50,6 +50,7 @@
             %devtmpfs-file-system
             %immutable-store
             %control-groups
+            %elogind-file-systems
 
             %base-file-systems
             %container-file-systems
@@ -258,6 +259,26 @@ UUID representation."
                '("cpuset" "cpu" "cpuacct" "memory" "devices" "freezer"
                  "blkio" "perf_event" "hugetlb")))))
 
+(define %elogind-file-systems
+  ;; We don't use systemd, but these file systems are needed for elogind,
+  ;; which was extracted from systemd.
+  (list (file-system
+          (device "none")
+          (mount-point "/run/systemd")
+          (type "tmpfs")
+          (check? #f)
+          (flags '(no-suid no-dev no-exec))
+          (options "mode=0755")
+          (create-mount-point? #t))
+        (file-system
+          (device "none")
+          (mount-point "/run/user")
+          (type "tmpfs")
+          (check? #f)
+          (flags '(no-suid no-dev no-exec))
+          (options "mode=0755")
+          (create-mount-point? #t))))
+
 (define %base-file-systems
   ;; List of basic file systems to be mounted.  Note that /proc and /sys are
   ;; currently mounted by the initrd.
@@ -265,6 +286,7 @@ UUID representation."
                 %pseudo-terminal-file-system
                 %shared-memory-file-system
                 %immutable-store)
+          %elogind-file-systems
           %control-groups))
 
 ;; File systems for Linux containers differ from %base-file-systems in that



reply via email to

[Prev in Thread] Current Thread [Next in Thread]