summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/image.scm7
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/system/image.scm b/gnu/system/image.scm
index 7be6a796880..73686023a92 100644
--- a/gnu/system/image.scm
+++ b/gnu/system/image.scm
@@ -1034,7 +1034,12 @@ it can be used for bootloading."
(inherit
(operating-system-bootloader base-os))
(bootloader grub-mkrescue-bootloader))
- (operating-system-bootloader base-os)))))
+ (operating-system-bootloader base-os)))
+ (file-systems (cons (file-system
+ (mount-point "/")
+ (device "/dev/placeholder")
+ (type root-file-system-type))
+ file-systems-to-keep))))
(uuid (root-uuid os)))
(operating-system
(inherit os)