summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/installclass.py b/installclass.py
index 0a14e0151..343a24dc6 100644
--- a/installclass.py
+++ b/installclass.py
@@ -108,7 +108,6 @@ class BaseInstallClass:
"autopartition",
"autopartitionexecute",
"fdisk",
- "fdasd",
"partition",
"partitiondone",
"bootloadersetup",
@@ -154,18 +153,13 @@ class BaseInstallClass:
# XXX ugh, this badly needs some clean up
if iutil.getArch() == "x86_64":
dispatch.skipStep("bootdisk")
- dispatch.skipStep("fdasd", permanent = 1)
elif (iutil.getArch() == "alpha" or iutil.getArch() == "ia64" or
iutil.getArch() == "sparc" or iutil.getArch() == "ppc"):
dispatch.skipStep("bootdisk")
dispatch.skipStep("bootloader")
- dispatch.skipStep("fdasd", permanent = 1)
elif iutil.getArch() == "s390":
dispatch.skipStep("keyboard", permanent = 1)
dispatch.skipStep("mouse", permanent = 1)
- dispatch.skipStep("partitionmethod", permanent = 1)
- dispatch.skipStep("autopartition", permanent = 1)
- dispatch.skipStep("autopartitionexecute", permanent = 1)
dispatch.skipStep("fdisk", permanent = 1)
dispatch.skipStep("handleX11pkgs", permanent = 1)
dispatch.skipStep("videocard", permanent = 1)
@@ -173,8 +167,6 @@ class BaseInstallClass:
dispatch.skipStep("xcustom", permanent = 1)
dispatch.skipStep("writexconfig", permanent = 1)
dispatch.skipStep("bootdisk", permanent = 1)
- else:
- dispatch.skipStep("fdasd", permanent = 1)
# 'noupgrade' can be used on the command line to force not looking
# for partitions to upgrade. useful in some cases...