Comment 3 for bug 1202955

Revision history for this message
Ebbex (eb4x) wrote : Re: (fakeraid) root device not activated during boot

I think I've traced it down to a problem with the logic in dmraid-activate

Raid_Name=$(dmraid -i -r -cr /dev/$Node_Name | grep -vi "No RAID disks" | grep -vi "formats discovered")
activate_array "$Raid_Name"

Here it tries to activate a subset of a raid10. (pdc_ebdeeaiceb-0, pdc_ebdeeaiceb-1) when it probably should try to activate the superset pdc_ebdeeaiceb

I solved my problem replacing the line with this
Raid_Name=$(dmraid -s -cr)

And now it boots!