summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-09-12 20:51:40 +0000
committerJeremy Katz <katzj@redhat.com>2005-09-12 20:51:40 +0000
commit29652eef53cec2fc6e8d13917af5f2f1110499b3 (patch)
tree28f7ceaa9eecb1bc032c8295413285724d15909c /installclass.py
parent34c57e41de3f5e1929a93f57033a727b4c28bc6b (diff)
downloadanaconda-29652eef53cec2fc6e8d13917af5f2f1110499b3.tar.gz
anaconda-29652eef53cec2fc6e8d13917af5f2f1110499b3.tar.xz
anaconda-29652eef53cec2fc6e8d13917af5f2f1110499b3.zip
2005-09-12 Jeremy Katz <katzj@redhat.com>
* installclass.py (BaseInstallClass.setSteps): Nuke some dead steps. * dispatch.py (installSteps): Likewise. * gui.py (stepToClass): Likewise. * text.py (stepToClass): Likewise.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/installclass.py b/installclass.py
index fbad6fec4..8f2543bff 100644
--- a/installclass.py
+++ b/installclass.py
@@ -117,9 +117,6 @@ class BaseInstallClass:
dispatch.setStepList(
"language",
"keyboard",
-# "checkmonitorok",
-# "monitor",
-# "setsanex",
"welcome",
"findrootparts",
"betanag",
@@ -165,7 +162,6 @@ class BaseInstallClass:
"dopostaction",
"writexconfig",
"writeksconfig",
- "bootdisk",
"methodcomplete",
"copylogs",
"setfilecon",
@@ -178,15 +174,6 @@ class BaseInstallClass:
if iutil.getArch() != "s390":
dispatch.skipStep("zfcpconfig")
- if iutil.getArch() != "i386" or 1:
- dispatch.skipStep("bootdisk")
-
- # see if we need to write out a rescue boot floppy
- if iutil.getArch() == "i386":
- import floppy
- if not floppy.hasFloppyDevice():
- dispatch.skipStep("bootdisk")
-
if iutil.getArch() != "i386" and iutil.getArch() != "x86_64":
dispatch.skipStep("bootloader")
@@ -220,9 +207,6 @@ class BaseInstallClass:
dispatch.skipStep("keyboard", permanent = 1)
# dispatch.skipStep("mouse", permanent = 1)
dispatch.skipStep("handleX11pkgs", permanent = 1)
- dispatch.skipStep("videocard", permanent = 1)
- dispatch.skipStep("monitor", permanent = 1)
- dispatch.skipStep("xcustom", permanent = 1)
dispatch.skipStep("writexconfig", permanent = 1)
# This is called after the hdlist is read in.
@@ -238,12 +222,6 @@ class BaseInstallClass:
def setZFCP(self, id, devnum, scsiid, wwpn, scsilun, fcplun):
id.zfcp.fcpdevices.append( (devnum, scsiid, wwpn, scsilun, fcplun) )
- def getMakeBootdisk(self):
- return self.makeBootdisk
-
- def setMakeBootdisk(self, state):
- self.makeBootdisk = state
-
def setZeroMbr(self, id, zeroMbr):
id.partitions.zeroMbr = zeroMbr