> --- a/platform.py > +++ b/platform.py > @@ -330,12 +330,13 @@ class IPSeriesPPC(PPC): > if not bootPart: > return errors > > - if bootPart.geometry.end * bootPart.geometry.device.sectorSize / (1024.0 * 1024) > 4096: > - errors.append(_("The boot partition must be within the first 4MB of the disk.")) > - > # All of the above just checks the PPC PReP boot partitions. We still > # need to make sure that whatever /boot is on also meets these criteria. > if req == self.bootDevice(): > + # However, this check only applies to prepboot. > + if bootPart.geometry.end * bootPart.geometry.device.sectorSize / (1024.0 * 1024) > 4096: > + errors.append(_("The boot partition must be within the first 4MB of the disk.")) > + Am I crazy or is this test actually checking that the end is not beyond 4096MB instead of 4MB? Dave _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list