30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
--- anaconda-21.48.22.56/pyanaconda/bootloader.py 2016-02-10 18:08:58.296322802 +0100
|
|
+++ anaconda-21.48.22.56/pyanaconda/bootloader.py 2016-02-10 18:11:07.476335720 +0100
|
|
@@ -1569,7 +1569,7 @@
|
|
rc = iutil.execInSysroot("grub2-mkconfig",
|
|
["-o", self.config_file])
|
|
if rc:
|
|
- raise BootLoaderError("failed to write boot loader configuration")
|
|
+ raise BootLoaderError("failed to write boot loader configuration [%s] (%s)" % (self.config_file,rc))
|
|
|
|
#
|
|
# installation
|
|
@@ -2017,7 +2017,7 @@
|
|
else:
|
|
self.updateNVRAMBootList()
|
|
|
|
- super(IPSeriesGRUB2, self).install(args=["--no-nvram"])
|
|
+ super(IPSeriesGRUB2, self).install(args=["--no-nvram","--force"])
|
|
|
|
# This will update the PowerPC's (ppc) bios boot devive order list
|
|
def updateNVRAMBootList(self):
|
|
@@ -2054,7 +2054,7 @@
|
|
|
|
rc = iutil.execWithRedirect("nvram", ["--update-config", update_value])
|
|
if rc:
|
|
- log.error("Failed to update new boot device order")
|
|
+ log.error("Failed to update new boot device order [%s] (%s)" % (update_value,rc))
|
|
|
|
#
|
|
# In addition to the normal grub configuration variable, add one more to set the size of the
|