--- platform.py | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/platform.py b/platform.py index a151de4..261e597 100644 --- a/platform.py +++ b/platform.py @@ -223,9 +223,11 @@ class EFI(Platform): disk = req.disk.format.partedDisk # Check that we've got a correct disk label. - if not disk.type in ["gpt", "msdos"]: - errors.append(_("%s must have a GPT or MSDOS disk label.") % req.disk.name) + if self.isEfi and disk.type != "gpt": + errors.append(_("%s must have a GPT disk label.") % req.disk.name) + if not self.isEfi and not iutil.isMactel() and disk.type != "msdos": + errors.append(_("%s must have an MSDOS disk label.") % req.disk.name) return errors def setDefaultPartitioning(self): -- 1.6.5.2 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list