Due to recent changes in udev_is_md_array, Intel BIOS RAID array members are wrongly identified as RAID arrays instead of as RAID array members, this causes the actual raid array to not be seen by anaconda. --- storage/udev.py | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/storage/udev.py b/storage/udev.py index 681cf24..02a54e7 100644 --- a/storage/udev.py +++ b/storage/udev.py @@ -151,7 +151,9 @@ def udev_device_is_dm(info): def udev_device_is_md(info): """ Return True if the device is a mdraid array device. """ - return info.has_key("MD_METADATA") + # isw raid set *members* have MD_METADATA set, but are not arrays! + return info.has_key("MD_METADATA") and \ + info.get("ID_FS_TYPE") != "isw_raid_member" def udev_device_is_cciss(info): """ Return True if the device is a CCISS device. """ -- 1.6.6.1 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list