You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
29 lines
1.2 KiB
--- 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
|
|
|