file-systems: Add %debug-file-system.
* gnu/system/file-systems.scm (%debug-file-system): New variable, (%base-file-systems): add it.master
parent
c55acb0732
commit
6bb07e91e1
|
@ -68,6 +68,7 @@
|
||||||
%pseudo-file-system-types
|
%pseudo-file-system-types
|
||||||
%fuse-control-file-system
|
%fuse-control-file-system
|
||||||
%binary-format-file-system
|
%binary-format-file-system
|
||||||
|
%debug-file-system
|
||||||
%shared-memory-file-system
|
%shared-memory-file-system
|
||||||
%pseudo-terminal-file-system
|
%pseudo-terminal-file-system
|
||||||
%tty-gid
|
%tty-gid
|
||||||
|
@ -368,6 +369,14 @@ TARGET in the other system."
|
||||||
(type "binfmt_misc")
|
(type "binfmt_misc")
|
||||||
(check? #f)))
|
(check? #f)))
|
||||||
|
|
||||||
|
(define %debug-file-system
|
||||||
|
(file-system
|
||||||
|
(type "debugfs")
|
||||||
|
(device "none")
|
||||||
|
(mount-point "/sys/kernel/debug")
|
||||||
|
(check? #f)
|
||||||
|
(create-mount-point? #t)))
|
||||||
|
|
||||||
(define %tty-gid
|
(define %tty-gid
|
||||||
;; ID of the 'tty' group. Allocate it statically to make it easy to refer
|
;; ID of the 'tty' group. Allocate it statically to make it easy to refer
|
||||||
;; to it from here and from the 'tty' group definitions.
|
;; to it from here and from the 'tty' group definitions.
|
||||||
|
@ -467,6 +476,7 @@ TARGET in the other system."
|
||||||
;; List of basic file systems to be mounted. Note that /proc and /sys are
|
;; List of basic file systems to be mounted. Note that /proc and /sys are
|
||||||
;; currently mounted by the initrd.
|
;; currently mounted by the initrd.
|
||||||
(list %pseudo-terminal-file-system
|
(list %pseudo-terminal-file-system
|
||||||
|
%debug-file-system
|
||||||
%shared-memory-file-system
|
%shared-memory-file-system
|
||||||
%immutable-store))
|
%immutable-store))
|
||||||
|
|
||||||
|
|
Reference in New Issue