guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 1ab96d0d24919e656434cab2b6901df945a853ef
Author: Arjan Adriaanse <[email protected]>
AuthorDate: Sun Jul 19 20:18:23 2026 +0200
file-systems: Include "9p" in pseudo file system types.
* gnu/system/file-systems.scm (%pseudo-file-system-types): Add "9p".
Merges: https://codeberg.org/guix/guix/pulls/10053
Signed-off-by: Nguyễn Gia Phong <[email protected]>
---
gnu/system/file-systems.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm
index fd9065d2f6..8dae26ade6 100644
--- a/gnu/system/file-systems.scm
+++ b/gnu/system/file-systems.scm
@@ -375,9 +375,9 @@ 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" "bpf" "cgroup" "cgroup2" "configfs" "debugfs" "devpts"
"devtmpfs" "efivarfs"
- "fusectl" "hugetlbfs" "overlay" "proc" "securityfs" "sysfs" "tmpfs"
"tracefs" "virtiofs"
- "xenfs"))
+ '("9p" "binfmt_misc" "bpf" "cgroup" "cgroup2" "configfs" "debugfs"
+ "devpts" "devtmpfs" "efivarfs" "fusectl" "hugetlbfs" "overlay"
+ "proc" "securityfs" "sysfs" "tmpfs" "tracefs" "virtiofs" "xenfs"))
(define %fuse-control-file-system
;; Control file system for Linux' file systems in user-space (FUSE).