summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorjakub <jakub>2000-01-10 13:55:39 +0000
committerjakub <jakub>2000-01-10 13:55:39 +0000
commite72e153e1211696c216eb6f421aa25f8da717131 (patch)
tree787de2ef6bd6a93cd49178e3ef5affc66d5fe036 /textw
parentd55ba2575d2066451b02df4cc0eee25221b3f1f7 (diff)
downloadanaconda-e72e153e1211696c216eb6f421aa25f8da717131.tar.gz
anaconda-e72e153e1211696c216eb6f421aa25f8da717131.tar.xz
anaconda-e72e153e1211696c216eb6f421aa25f8da717131.zip
Misc sparc fixes.
Diffstat (limited to 'textw')
-rw-r--r--textw/silo.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/textw/silo.py b/textw/silo.py
index faa688ab5..07f953e61 100644
--- a/textw/silo.py
+++ b/textw/silo.py
@@ -51,7 +51,8 @@ class SiloAppendWindow:
class SiloWindow:
def __call__(self, screen, todo):
- if '/' not in todo.mounts.keys (): return INSTALL_NOOP
+ (mount, dev, fstype, format, size) = todo.fstab.mountList()[0]
+ if mount != '/': return INSTALL_NOOP
if todo.skipLilo: return INSTALL_NOOP
(bootpart, boothd, mbrpart) = todo.silo.getSiloOptions()