[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: file-systems: Expound '%pseudo-file-system-types'.
From: |
Ludovic Courtès |
Subject: |
01/01: file-systems: Expound '%pseudo-file-system-types'. |
Date: |
Sun, 29 Apr 2018 12:05:15 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit df1eaffc36c77d0bb3c55c68fa3c5d4c5d9b221f
Author: Ludovic Courtès <address@hidden>
Date: Sun Apr 29 17:40:03 2018 +0200
file-systems: Expound '%pseudo-file-system-types'.
Reported by Tobias Geerinckx-Rice <address@hidden>.
* gnu/system/file-systems.scm (%pseudo-file-system-types): Add
"debugfs", "efivarfs", "hugetlbfs", "overlay", and "securityfs".
---
gnu/system/file-systems.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm
index c0c6355..d2acd70 100644
--- a/gnu/system/file-systems.scm
+++ b/gnu/system/file-systems.scm
@@ -207,8 +207,8 @@ TARGET in the other system."
(define %pseudo-file-system-types
;; List of know pseudo file system types. This is used when validating file
;; system definitions.
- '("binfmt_misc" "cgroup" "devpts" "devtmpfs" "fusectl"
- "proc" "sysfs" "tmpfs"))
+ '("binfmt_misc" "cgroup" "debugfs" "devpts" "devtmpfs" "efivarfs" "fusectl"
+ "hugetlbfs" "overlay" "proc" "securityfs" "sysfs" "tmpfs"))
(define %fuse-control-file-system
;; Control file system for Linux' file systems in user-space (FUSE).