summaryrefslogtreecommitdiffstats
path: root/pyanaconda/platform.py
diff options
context:
space:
mode:
authord.marlin <dmarlin@redhat.com>2012-11-08 07:08:05 -0600
committerBrian C. Lane <bcl@redhat.com>2012-11-08 12:02:14 -0800
commita4bde644a006f6fc8e6fbf99e741493d3f963f97 (patch)
treeb063224b53c6a811303c0fb9f86cc4bed4343b0e /pyanaconda/platform.py
parent41037b654a3771fc3af3fc6498ff746ac9553652 (diff)
downloadanaconda-a4bde644a006f6fc8e6fbf99e741493d3f963f97.tar.gz
anaconda-a4bde644a006f6fc8e6fbf99e741493d3f963f97.tar.xz
anaconda-a4bde644a006f6fc8e6fbf99e741493d3f963f97.zip
Add very basic U-Boot support for ARM platforms
Add a very basic U-Boot bootloader class for ARM platforms. This addresses the following needs. - avoids using GRUB2 as a placeholder for the bootloader. - installs the required uboot-tools package by default. - ensures the boot/uboot partition is bootable. Signed-off-by: Brian C. Lane <bcl@redhat.com>
Diffstat (limited to 'pyanaconda/platform.py')
-rw-r--r--pyanaconda/platform.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/platform.py b/pyanaconda/platform.py
index 90c86dc20..b1c849b43 100644
--- a/pyanaconda/platform.py
+++ b/pyanaconda/platform.py
@@ -336,7 +336,7 @@ class Sparc(Platform):
class ARM(Platform):
_armMachine = None
- bootloaderClass = bootloader.GRUB2
+ bootloaderClass = bootloader.UBOOT
_boot_stage1_device_types = ["disk"]
_boot_mbr_description = N_("Master Boot Record")
_boot_descriptions = {"disk": _boot_mbr_description,