summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorAshish SHUKLA <ashish.is@lostca.se>2026-08-10 17:50:47 +0200
committerLudovic Courtès <ludo@gnu.org>2026-08-21 16:00:23 +0200
commit97d090c7d3f3c906d6e6291400e1c77d3ccfa6e2 (patch)
treea328adf8c737c136af172280c24c792f31e89481 /gnu/system
parent7f5aab5ef97702f57067270311eba95ac7b62e2b (diff)
file-systems: Expound '%pseudo-file-system-types'.
* gnu/system/file-systems.scm (%pseudo-file-system-types): Add "bpf", and "configfs". Signed-off-by: Ludovic Courtès <ludo@gnu.org> Merges: #10461
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/file-systems.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm
index 8e654394b00..fd9065d2f6d 100644
--- a/gnu/system/file-systems.scm
+++ b/gnu/system/file-systems.scm
@@ -375,8 +375,9 @@ TARGET in the other system."
375(define %pseudo-file-system-types 375(define %pseudo-file-system-types
376 ;; List of know pseudo file system types. This is used when validating file 376 ;; List of know pseudo file system types. This is used when validating file
377 ;; system definitions. 377 ;; system definitions.
378 '("binfmt_misc" "cgroup" "cgroup2" "debugfs" "devpts" "devtmpfs" "efivarfs" "fusectl" 378 '("binfmt_misc" "bpf" "cgroup" "cgroup2" "configfs" "debugfs" "devpts" "devtmpfs" "efivarfs"
379 "hugetlbfs" "overlay" "proc" "securityfs" "sysfs" "tmpfs" "tracefs" "virtiofs" "xenfs")) 379 "fusectl" "hugetlbfs" "overlay" "proc" "securityfs" "sysfs" "tmpfs" "tracefs" "virtiofs"
380 "xenfs"))
380 381
381(define %fuse-control-file-system 382(define %fuse-control-file-system
382 ;; Control file system for Linux' file systems in user-space (FUSE). 383 ;; Control file system for Linux' file systems in user-space (FUSE).