utils: %rosenthal-base-file-systems: Mount /run and /var/run as tmpfs.

* rosenthal/utils/counter-stop.scm (%rosenthal-base-file-systems): Mount /run
and /var/run as tmpfs.
This commit is contained in:
Hilton Chain 2022-12-22 15:03:42 +08:00
parent 43c39fa355
commit 1ebbc475b9
No known key found for this signature in database
GPG Key ID: 5E5AA665614917F7

View File

@ -112,6 +112,20 @@
(type "tmpfs")
(check? #f))
(file-system
(device "none")
(mount-point "/run")
(type "tmpfs")
(needed-for-boot? #t)
(check? #f))
(file-system
(device "none")
(mount-point "/var/run")
(type "tmpfs")
(needed-for-boot? #t)
(check? #f))
(delete %debug-file-system
%base-file-systems)))