Hi,
Currently / on lvm is not working because the udev rules test for KERNEL="dm-*"
which of course
will not be true for PV's, so PV's are not recognized and thus lvm does not
work.
The attached patch fixes this.
Regards,
Hans
diff --git a/modules.d/90lvm/64-lvm-vol_id.rules
b/modules.d/90lvm/64-lvm-vol_id.rules
index d4b5269..0ebf009 100644
--- a/modules.d/90lvm/64-lvm-vol_id.rules
+++ b/modules.d/90lvm/64-lvm-vol_id.rules
@@ -6,7 +6,6 @@
SUBSYSTEM!="block", GOTO="lvm_end"
ACTION!="add|change", GOTO="lvm_end"
-KERNEL!="dm-*", GOTO="lvm_end"
IMPORT{program}="vol_id --export $tempnode"
diff --git a/modules.d/90lvm/64-lvm.rules b/modules.d/90lvm/64-lvm.rules
index 3eddd07..7218862 100644
--- a/modules.d/90lvm/64-lvm.rules
+++ b/modules.d/90lvm/64-lvm.rules
@@ -6,7 +6,6 @@
SUBSYSTEM!="block", GOTO="lvm_end"
ACTION!="add|change", GOTO="lvm_end"
-KERNEL!="dm-*", GOTO="lvm_end"
IMPORT{program}="/sbin/blkid -o udev -p $tempnode"