summaryrefslogtreecommitdiffstats
path: root/pyanaconda/platform.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-08-23 17:15:03 -0400
committerChris Lumens <clumens@redhat.com>2012-08-23 23:19:44 -0400
commitd3fdca83536ff0aadc9065451fbb3a264c0bf3bf (patch)
treea6a6256f29bb157fb93abac2ac964b709b6728b9 /pyanaconda/platform.py
parent179c9c29a8744c2f7f79ea014b6c5e8d7d629016 (diff)
downloadanaconda-d3fdca83536ff0aadc9065451fbb3a264c0bf3bf.tar.gz
anaconda-d3fdca83536ff0aadc9065451fbb3a264c0bf3bf.tar.xz
anaconda-d3fdca83536ff0aadc9065451fbb3a264c0bf3bf.zip
_bootloaderClass -> bootloaderClass for some platforms (#848173).
Diffstat (limited to 'pyanaconda/platform.py')
-rw-r--r--pyanaconda/platform.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyanaconda/platform.py b/pyanaconda/platform.py
index 127844eaa..ea5b92fa3 100644
--- a/pyanaconda/platform.py
+++ b/pyanaconda/platform.py
@@ -217,7 +217,7 @@ class EFI(Platform):
return 0
class MacEFI(EFI):
- _bootloaderClass = bootloader.MacEFIGRUB
+ bootloaderClass = bootloader.MacEFIGRUB
_boot_stage1_format_types = ["hfs+"]
_boot_efi_description = N_("Apple EFI Boot Partition")
@@ -234,7 +234,7 @@ class MacEFI(EFI):
class PPC(Platform):
_ppcMachine = iutil.getPPCMachine()
- _bootloaderClass = bootloader.GRUB2
+ bootloaderClass = bootloader.GRUB2
_boot_stage1_device_types = ["partition"]
@property
@@ -242,7 +242,7 @@ class PPC(Platform):
return self._ppcMachine
class IPSeriesPPC(PPC):
- _bootloaderClass = bootloader.IPSeriesGRUB2
+ bootloaderClass = bootloader.IPSeriesGRUB2
_boot_stage1_format_types = ["prepboot"]
_boot_stage1_max_end_mb = 10
_boot_prep_description = N_("PReP Boot Partition")
@@ -336,7 +336,7 @@ class Sparc(Platform):
class ARM(Platform):
_armMachine = None
- _bootloaderClass = bootloader.GRUB2
+ bootloaderClass = bootloader.GRUB2
_boot_stage1_device_types = ["disk"]
_boot_mbr_description = N_("Master Boot Record")
_boot_descriptions = {"disk": _boot_mbr_description,