diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index c8d4d014ed..0f52351cf0 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -652,8 +652,8 @@ hardware-related operations as necessary when booting a Linux container." (define (operating-system-root-file-system os) "Return the root file system of OS." (find (match-lambda - (($ <file-system> _ _ "/") #t) - (_ #f)) + (($ <file-system> device title "/") #t) + (x #f)) (operating-system-file-systems os))) (define (operating-system-initrd-file os) |