Comment 28 for bug 21878

Revision history for this message
Sven Lilienthal (sven-lilienthal) wrote :

I have the same problems with a normal disk (/dev/hda1) as cryptroot. Introducing a "sleep 5" let me boot my system.

 # Make sure the cryptsource device is available
 if [ ! -e $cryptsource ]; then
  activate_vg $cryptsource
 fi

+ if [ ! -e $cryptsource ]; then
+ sleep 5;
+ fi

 if [ ! -e $cryptsource ]; then
  echo "cryptsetup: Source device $cryptsource not found"
  return 1
 fi