summaryrefslogtreecommitdiffstats
path: root/xf86config.py
diff options
context:
space:
mode:
authorjakub <jakub>1999-10-05 14:57:25 +0000
committerjakub <jakub>1999-10-05 14:57:25 +0000
commit5675a1501adf6356573db2096398b93490927599 (patch)
treea88d40d124c3481b6622316255a1af73c0ff0064 /xf86config.py
parentc1d82a2f87c8675e5296e8a7aea647297e98f301 (diff)
downloadanaconda-5675a1501adf6356573db2096398b93490927599.tar.gz
anaconda-5675a1501adf6356573db2096398b93490927599.tar.xz
anaconda-5675a1501adf6356573db2096398b93490927599.zip
Silo fixups, don't query videoRam size on SBUS and UPA, it will be bogus anyway,
remember DNS settings from first stage loader as defaults for second stage, wait a little bit longer so that X server can have time to get up.
Diffstat (limited to 'xf86config.py')
-rw-r--r--xf86config.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/xf86config.py b/xf86config.py
index aa9ed6c64..217b0ebd4 100644
--- a/xf86config.py
+++ b/xf86config.py
@@ -217,6 +217,9 @@ class XF86Config:
except:
pass
if not self.vidRam and self.device:
+ if self.server and len (self.server) >= 3 and self.server[0:3] == 'Sun':
+ # fbconProbe gives bogus video RAM reports on SBUS and UPA servers
+ return
try:
self.vidRam = "%d" % isys.fbconProbe("/dev/" + self.device)
except: