summaryrefslogtreecommitdiffstats
path: root/xsetup.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-11-26 21:16:03 +0000
committerMike Fulbright <msf@redhat.com>2002-11-26 21:16:03 +0000
commit73bbcffc222c509104c63305c5d6db9ef028a04a (patch)
tree92fb5261050a5ef4d3fe75e2911f4ee46975c073 /xsetup.py
parente35e7089199e88b14b3a60c815156f7f9a6565da (diff)
downloadanaconda-73bbcffc222c509104c63305c5d6db9ef028a04a.tar.gz
anaconda-73bbcffc222c509104c63305c5d6db9ef028a04a.tar.xz
anaconda-73bbcffc222c509104c63305c5d6db9ef028a04a.zip
fix writeKS() method
Diffstat (limited to 'xsetup.py')
-rw-r--r--xsetup.py19
1 files changed, 8 insertions, 11 deletions
diff --git a/xsetup.py b/xsetup.py
index 500372806..bb53b1bfc 100644
--- a/xsetup.py
+++ b/xsetup.py
@@ -22,6 +22,7 @@ class XSetup:
def __init__(self, hwstate):
self.skipx = 0
+ self.imposed_sane_default = 0
self.xhwstate = hwstate
#
@@ -35,11 +36,6 @@ class XSetup:
standalone = 0)
def writeKS(self, f, desktop=None):
- return
-
- #
- # this needs lots of work
- #
if self.skipx:
f.write("skipx\n")
return
@@ -61,17 +57,18 @@ class XSetup:
def getArgList(self, res, depth):
args = []
- vc = self.videocard
+ monitor = self.xhwstate.monitor
+ vc = self.xhwstate.videocard
- args = args + [ "--card", '"' + vc.shortDescription() + '"' ]
- args = args + [ "--videoram", vc.getVideoRam() ]
- args = args + [ "--hsync", self.monitor.getMonitorHorizSync() ]
- args = args + [ "--vsync", self.monitor.getMonitorVertSync() ]
+ args = args + [ "--card", '"' + vc.primaryCard().shortDescription() + '"' ]
+ args = args + [ "--videoram", vc.primaryCard().getVideoRam() ]
+ args = args + [ "--hsync", monitor.getMonitorHorizSync() ]
+ args = args + [ "--vsync", monitor.getMonitorVertSync() ]
# XXX this isn't really quite right, but it works for the way
# things are now
args = args + [ "--resolution", res ]
- args = args + [ "--depth", depth ]
+ args = args + [ "--depth", str(depth) ]
return args