summaryrefslogtreecommitdiff
path: root/gnu/system.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2018-05-18 10:11:17 +0200
committerLudovic Courtès <ludo@gnu.org>2018-05-19 00:14:52 +0200
commita48d34504181e2f14cef3a5514d2319e60453a79 (patch)
tree1b6bca3775aec90af3c48708d1aee47a1acb466f /gnu/system.scm
parentce9e684b8395fdd0c8217a2e4a1d2776f8ff5ea4 (diff)
downloadguix-patches-a48d34504181e2f14cef3a5514d2319e60453a79.tar
guix-patches-a48d34504181e2f14cef3a5514d2319e60453a79.tar.gz
file-systems: Do not export <file-system>.
* gnu/system/file-systems.scm (<file-system>): Do not export. * gnu/system.scm (operating-system-root-file-system): Use an accessor instead of 'match'.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r--gnu/system.scm5
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index 1cf00aafcd..1052e9355d 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -842,9 +842,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> device title "/") #t)
- (x #f))
+ (find (lambda (fs)
+ (string=? "/" (file-system-mount-point fs)))
(operating-system-file-systems os)))
(define (operating-system-initrd-file os)