Displaying 1 result from an estimated 1 matches for "cea219e".
2006 Jul 05
0
[PATCH] Do LUKS detection later in fstype
...ion 
to the bottom of the list in fstype, we also need to move luks detection 
to the end of the list since a LUKS signature leftover could co-exist 
with a regular fs.
Regards,
David
-------------- next part --------------
diff --git a/usr/kinit/fstype/fstype.c b/usr/kinit/fstype/fstype.c
index cea219e..89203e1 100644
--- a/usr/kinit/fstype/fstype.c
+++ b/usr/kinit/fstype/fstype.c
@@ -236,19 +236,21 @@ struct imagetype {
  * LVM comes after all other filesystems since it's possible
  * that an old lvm signature is left on the disk if pvremove
  * is not used before creating the new fs.
+ *
+...