From 1ebbc475b96091044d7fead73ccef22e709d635b Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Thu, 22 Dec 2022 15:03:42 +0800 Subject: [PATCH] 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. --- rosenthal/utils/counter-stop.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/rosenthal/utils/counter-stop.scm b/rosenthal/utils/counter-stop.scm index 92fb7a2..a7804b0 100644 --- a/rosenthal/utils/counter-stop.scm +++ b/rosenthal/utils/counter-stop.scm @@ -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)))