diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-07-31 00:14:56 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-07-31 00:14:56 +0000 |
commit | 831930c4aaa63d029d48573b33a7c98586ede6ba (patch) | |
tree | 19437293bb2948338f9be020f43690c1afa780a9 /installclass.py | |
parent | b1d546977dbe8a2b7cb059ef834f186f19a2311f (diff) | |
download | anaconda-831930c4aaa63d029d48573b33a7c98586ede6ba.tar.gz anaconda-831930c4aaa63d029d48573b33a7c98586ede6ba.tar.xz anaconda-831930c4aaa63d029d48573b33a7c98586ede6ba.zip |
merge from taroon branch to head
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/installclass.py b/installclass.py index 8844a7dd3..a8ab8145b 100644 --- a/installclass.py +++ b/installclass.py @@ -153,7 +153,6 @@ class BaseInstallClass: if iutil.getArch() != "i386": dispatch.skipStep("bootdisk") - dispatch.skipStep("bootloader") # see if we need to write out a rescue boot floppy if iutil.getArch() == "i386": @@ -170,8 +169,7 @@ class BaseInstallClass: if not floppyDevices: dispatch.skipStep("bootdisk") - if (iutil.getArch() == "alpha" or iutil.getArch() == "ia64" or - iutil.getArch() == "sparc" or iutil.getArch() == "ppc"): + if iutil.getArch() != "i386" or iutil.getArch() != "x86_64": dispatch.skipStep("bootloader") # 'noupgrade' can be used on the command line to force not looking |