> > --- 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? You must be crazy. It's been this way since the beginning of time (c8c0190205336f69c1a94f890a28a3e040565a97 - 2003 is close enough) and you'd think we would have gotten a bug report about it by now. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list