From 59e8f3c3accb51c9b7dc4e012f40b9235b317efc Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Sat, 8 Dec 2018 23:36:07 +0900 Subject: installer: parted: Use read-luks-partition-uuid instead of find-partition-by-luks-uuid. * gnu/installer/parted.scm (user-partition->mapped-device): Replace read-luks-partition-uuid by find-partition-by-luks-uuid, (user-partition->file-system): only compute uuid if the partition is not encrypted. --- gnu/installer/parted.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'gnu') diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index c56da60550..c7be24051d 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm @@ -23,7 +23,7 @@ (define-module (gnu installer parted) #:use-module (gnu system uuid) #:use-module ((gnu build file-systems) #:select (read-partition-uuid - find-partition-by-luks-uuid)) + read-luks-partition-uuid)) #:use-module (guix build syscalls) #:use-module (guix build utils) #:use-module (guix records) @@ -1203,8 +1203,9 @@ (define (user-partition->file-system user-partition) (mount-type (user-fs-type->mount-type fs-type)) (path (user-partition-path user-partition)) (upper-path (user-partition-upper-path user-partition)) - (uuid (uuid->string (read-partition-uuid path) - fs-type))) + ;; Only compute uuid if partition is not encrypted. + (uuid (or crypt-label + (uuid->string (read-partition-uuid path) fs-type)))) `(file-system (mount-point ,mount-point) (device ,@(if crypt-label @@ -1232,7 +1233,9 @@ (define (user-partition->mapped-device user-partition) (let ((label (user-partition-crypt-label user-partition)) (path (user-partition-path user-partition))) `(mapped-device - (source (uuid ,(uuid->string (read-partition-uuid path)))) + (source (uuid ,(uuid->string + (read-luks-partition-uuid path) + 'luks))) (target ,label) (type luks-device-mapping)))) -- cgit v1.2.3