diff options
author | Peter Jones <pjones@redhat.com> | 2005-11-17 04:37:54 +0000 |
---|---|---|
committer | Peter Jones <pjones@redhat.com> | 2005-11-17 04:37:54 +0000 |
commit | 0905c726fdc067acd7d9363f3dd4c7ebfeb09b11 (patch) | |
tree | 1636de71c6b92b3d60d1225e6fba68b99625b42c /isys | |
parent | 46acfaabf3c0d44dfa346718729ecf0116554659 (diff) | |
download | anaconda-0905c726fdc067acd7d9363f3dd4c7ebfeb09b11.tar.gz anaconda-0905c726fdc067acd7d9363f3dd4c7ebfeb09b11.tar.xz anaconda-0905c726fdc067acd7d9363f3dd4c7ebfeb09b11.zip |
- don't do special handling for pdc raid
Diffstat (limited to 'isys')
-rw-r--r-- | isys/isys.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/isys/isys.py b/isys/isys.py index d3c3e446a..fe9e4e273 100644 --- a/isys/isys.py +++ b/isys/isys.py @@ -312,6 +312,8 @@ def hardDriveDict(): # the only raid devs like this are ide, so only worry about them if not dev.startswith("hd"): continue + # PJFIX right now, just don't do raid magic here at all + continue ret = _isys.hasIdeRaidMagic(dev) if ret is None: continue |