diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-05-23 22:07:38 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-05-23 22:07:38 +0000 |
commit | 61e404dbbb661b0f7e2db9ada2a359a2cc7ce7c4 (patch) | |
tree | 62a67ea186a33a7589931b1225d1f82563af475a | |
parent | 1a576f5eacf02b16de73953c5755126168aca59a (diff) | |
download | anaconda-61e404dbbb661b0f7e2db9ada2a359a2cc7ce7c4.tar.gz anaconda-61e404dbbb661b0f7e2db9ada2a359a2cc7ce7c4.tar.xz anaconda-61e404dbbb661b0f7e2db9ada2a359a2cc7ce7c4.zip |
2005-05-23 Jeremy Katz <katzj@redhat.com>
* partedUtils.py (DiskSet.getLabels): Look for labels on all
fstypes.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | partedUtils.py | 5 |
2 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,8 @@ 2005-05-23 Jeremy Katz <katzj@redhat.com> + * partedUtils.py (DiskSet.getLabels): Look for labels on all + fstypes. + * loader2/modules.c (loadModule): usb-storage has reached new levels of awful and now doesn't enumerate the devices with anything approaching a reasonable speed. Add a sleep to wait for diff --git a/partedUtils.py b/partedUtils.py index 697aee90e..ccf26d055 100644 --- a/partedUtils.py +++ b/partedUtils.py @@ -565,10 +565,7 @@ class DiskSet: disk = self.disks[drive] func = lambda part: (part.is_active() and not (part.get_flag(parted.PARTITION_RAID) - or part.get_flag(parted.PARTITION_LVM)) - and part.fs_type - and (part.fs_type.name in ("ext2", - "ext3", "xfs"))) + or part.get_flag(parted.PARTITION_LVM))) parts = filter_partitions(disk, func) for part in parts: node = get_partition_name(part) |