> diff --git a/platform.py b/platform.py > index 072efe5..83188a8 100644 > --- a/platform.py > +++ b/platform.py > @@ -333,7 +333,14 @@ class IPSeriesPPC(PPC): > 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.")) > > - return errors > + # 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. > + try: > + req = self.anaconda.id.storage.mountpoints["/boot"] > + except KeyError: > + req = self.anaconda.id.storage.rootDevice > + > + return errors + self.checkBootRequest(req) > > def setDefaultPartitioning(self): > ret = PPC.setDefaultPartitioning(self) This patch was no good. Note the obvious infinite loop here. New one coming up. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list