[PATCH 3/3] Don't try to configure a bootloader for s390 disk image installs. (#994521)

David Lehman dlehman at redhat.com
Mon Oct 14 17:41:04 UTC 2013


---
 pyanaconda/kickstart.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pyanaconda/kickstart.py b/pyanaconda/kickstart.py
index 1fa5d60..562a7fa 100644
--- a/pyanaconda/kickstart.py
+++ b/pyanaconda/kickstart.py
@@ -264,6 +264,9 @@ class AutoPart(commands.autopart.F20_AutoPart):
 
 class Bootloader(commands.bootloader.F19_Bootloader):
     def execute(self, storage, ksdata, instClass):
+        if flags.imageInstall and blivet.arch.isS390():
+            self.location = "none"
+
         if self.location == "none":
             location = None
         elif self.location == "partition":
-- 
1.8.1.4



More information about the anaconda-patches mailing list