-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Tue, 27 Oct 2009, Hans de Goede wrote:
---
storage/partitioning.py | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/storage/partitioning.py b/storage/partitioning.py
index 1e2ee40..a5edd22 100644
--- a/storage/partitioning.py
+++ b/storage/partitioning.py
@@ -858,7 +858,11 @@ def allocatePartitions(disks, partitions):
partition = parted.Partition(disk=disklabel.partedDisk,
type=part_type,
geometry=new_geom)
- constraint = parted.Constraint(maxGeom=max_geom, minGeom=min_geom)
+ # DASD disklabels do not allow sector exact partitioning (#527104)
+ if _disk.type != 'dasd':
+ constraint = parted.Constraint(maxGeom=max_geom, minGeom=min_geom)
+ else:
+ constraint = disklabel.partedDevice.getConstraint()
disklabel.partedDisk.addPartition(partition=partition,
constraint=constraint)
log.debug("created partition %s of %dMB and added it to %s" %
Make sure this is applied to master as well as rhel6-branch.
- --
David Cantrell <dcantrell@xxxxxxxxxx>
Red Hat / Honolulu, HI
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAkrnUrMACgkQ5hsjjIy1VkkZnACgkZ2qXuDSthTWUeh6GxF+QUai
Xd8AoJSv96P5DfTH8aTYzXBk2rQviaVe
=KA97
-----END PGP SIGNATURE-----
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list