summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-01-06 15:00:40 +0000
committerMatt Wilson <msw@redhat.com>2000-01-06 15:00:40 +0000
commit77e10526955536dcc65b8fc484360a2e634f649e (patch)
tree3768427b6362cd60c99c1b4cb00f4aa1a5cf21a7 /installclass.py
parent2f5364beda5b899fccb1d4d95e378db0ae1a545b (diff)
downloadanaconda-77e10526955536dcc65b8fc484360a2e634f649e.tar.gz
anaconda-77e10526955536dcc65b8fc484360a2e634f649e.tar.xz
anaconda-77e10526955536dcc65b8fc484360a2e634f649e.zip
merge from Alpha/SPARC branch
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/installclass.py b/installclass.py
index 558600478..12e917aa6 100644
--- a/installclass.py
+++ b/installclass.py
@@ -10,7 +10,7 @@ FSEDIT_CLEAR_LINUX = (1 << 1)
FSEDIT_CLEAR_ALL = (1 << 2)
FSEDIT_USE_EXISTING = (1 << 3)
-import gettext_rh, os
+import gettext_rh, os, iutil
from xf86config import XF86Config
cat = gettext_rh.Catalog ("anaconda", "/usr/share/locale")
@@ -210,6 +210,10 @@ class InstallClass:
self.desktop = ""
self.raidList = []
+ if iutil.getArch () == "alpha":
+ self.addToSkipList("bootdisk")
+ self.addToSkipList("lilo")
+
# we need to be able to differentiate between this and custom
class DefaultInstall(InstallClass):