diff --git a/storage/devicetree.py b/storage/devicetree.py
index 23a8e57..2eb8d0d 100644
--- a/storage/devicetree.py
+++ b/storage/devicetree.py
@@ -1313,7 +1313,7 @@ class DeviceTree(object):
# Now, if the device is a disk, see if there is a usable disklabel.
# If not, see if the user would like to create one.
- if device.partitionable:
+ if device.partitionable and not device.format.hidden:
self.handleUdevDiskLabelFormat(info, device)
if device.partitioned or self.isIgnored(info):
# If the device has a disklabel, or the user chose not to
--
1.6.5.2
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
12-09-2009, 06:40 PM
David Lehman
Skip disklabel handling for biosraid and multipath members.
diff --git a/storage/devicetree.py b/storage/devicetree.py
index 23a8e57..b6b688c 100644
--- a/storage/devicetree.py
+++ b/storage/devicetree.py
@@ -1313,7 +1313,8 @@ class DeviceTree(object):
# Now, if the device is a disk, see if there is a usable disklabel.
# If not, see if the user would like to create one.
- if device.partitionable:
+ format = getFormat(udev_device_get_format(info))
+ if device.partitionable and not format.hidden:
self.handleUdevDiskLabelFormat(info, device)
if device.partitioned or self.isIgnored(info):
# If the device has a disklabel, or the user chose not to
--
1.6.5.2
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list