From 979090f14647d6e6b0c0d399580c22cbf48b0fef Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 10 Mar 2015 09:20:34 +0000 Subject: init: resolve UUID=... devices for cryptsetup recent version of cryptsetup does not seem to work with UUID=... devices unless udev is used to create /dev/disk/by-uuid symlinks. We work around that by resolving UUID=... to the device. --- initramfs-init.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/initramfs-init.in b/initramfs-init.in index fd3e510..d687e64 100755 --- a/initramfs-init.in +++ b/initramfs-init.in @@ -251,7 +251,7 @@ start_cryptsetup() { modprobe dm-crypt if [ -n "$KOPT_cryptroot" ]; then modprobe dm-crypt - cryptsetup luksOpen "$KOPT_cryptroot" "$KOPT_cryptdm" + cryptsetup luksOpen $(resolve_dev "$KOPT_cryptroot") "$KOPT_cryptdm" fi } -- cgit v1.2.3