summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-03-21 00:09:53 +0000
committerJeremy Katz <katzj@redhat.com>2003-03-21 00:09:53 +0000
commitc29f0955045cdd02965a14300ce5e99364db2d1b (patch)
treed84a948b5288d9b0b9bd28649f608b8df9f18ea0 /installclass.py
parent720f69db5a6df4a3d6afe90ea228b5a90fe41333 (diff)
downloadanaconda-c29f0955045cdd02965a14300ce5e99364db2d1b.tar.gz
anaconda-c29f0955045cdd02965a14300ce5e99364db2d1b.tar.xz
anaconda-c29f0955045cdd02965a14300ce5e99364db2d1b.zip
merge taroon branch up until now. tagged as before-taroon-merge before and
will be tagged after-taroon-merge after. taroon at this point is tagged taroon-merge-point for where to base merges from in the future
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...