summaryrefslogtreecommitdiffstats
path: root/iw/xconfig_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-05-30 22:09:14 +0000
committerJeremy Katz <katzj@redhat.com>2002-05-30 22:09:14 +0000
commit7306e8d2077e30e9234a6d08d8dd29c63732e378 (patch)
tree84996c2a5a7451d69e380ee9d5fc0ca59588a37d /iw/xconfig_gui.py
parentb56f3b253a27034a0e456c26794cfa92f4402cb2 (diff)
downloadanaconda-7306e8d2077e30e9234a6d08d8dd29c63732e378.tar.gz
anaconda-7306e8d2077e30e9234a6d08d8dd29c63732e378.tar.xz
anaconda-7306e8d2077e30e9234a6d08d8dd29c63732e378.zip
more /mnt/sysimage surgery
Diffstat (limited to 'iw/xconfig_gui.py')
-rw-r--r--iw/xconfig_gui.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py
index 5ed077f23..a1b639c6b 100644
--- a/iw/xconfig_gui.py
+++ b/iw/xconfig_gui.py
@@ -65,7 +65,7 @@ class XCustomWindow (InstallWindow):
self.xconfig.setManualModes(newmodes)
try:
- self.xconfig.test (root="/mnt/sysimage/")
+ self.xconfig.test (root=self.instPath)
except RuntimeError:
### test failed window
pass
@@ -162,13 +162,16 @@ class XCustomWindow (InstallWindow):
self.display_desktop_pixmap(desktop)
# XCustomWindow tag="xcustom"
- def getScreen (self, xconfig, monitor, videocard, desktop, comps):
+ def getScreen (self, xconfig, monitor, videocard, desktop, comps,
+ instPath):
self.xconfig = xconfig
self.monitor = monitor
self.videocard = videocard
self.desktop = desktop
+ self.instPath = instPath
+
# create toplevel packing structure
self.box = gtk.VBox (gtk.FALSE)
self.box.set_border_width (5)