diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-25 06:10:22 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-25 06:10:22 +0000 |
commit | 94c137cffce1e35e19d8ce93e10ed7ea3dc7d8be (patch) | |
tree | cf9aaf093b7958a44bce848fdf80dd022edbc259 /xserver.py | |
parent | 3b1dad109881db14ecfb8a6d06d386624c16df60 (diff) | |
download | anaconda-94c137cffce1e35e19d8ce93e10ed7ea3dc7d8be.tar.gz anaconda-94c137cffce1e35e19d8ce93e10ed7ea3dc7d8be.tar.xz anaconda-94c137cffce1e35e19d8ce93e10ed7ea3dc7d8be.zip |
turn off VGA16, it looks baddddd
Diffstat (limited to 'xserver.py')
-rw-r--r-- | xserver.py | 39 |
1 files changed, 9 insertions, 30 deletions
diff --git a/xserver.py b/xserver.py index 86058f8d4..ef4b1e7f8 100644 --- a/xserver.py +++ b/xserver.py @@ -86,17 +86,6 @@ def startX(resolution, nofbmode, video, monitor, mouse, keyboard): os.environ['DISPLAY'] = ':1' serverPath = None - #--see if framebuffer works on this card -# -# we're removing fb support -# -# fbavail = isys.fbinfo() -# -# if fbavail: -# attempt = 'FB' -# else: -# attempt = 'PROBED' - attempt = 'PROBED' failed = 1 @@ -104,17 +93,6 @@ def startX(resolution, nofbmode, video, monitor, mouse, keyboard): while next_attempt != 'END': card = None -# -# we're removing framebuffer support -# -# if attempt == 'FB': -# if fbavail and nofbmode == 0: -# print _("Attempting to start framebuffer based X server") -# card = FrameBufferCard() -# else: -# card = None -# -# next_attempt = 'PROBED' if attempt == 'PROBED': if video.primaryCard(): print _("Attempting to start native X server") @@ -132,13 +110,16 @@ def startX(resolution, nofbmode, video, monitor, mouse, keyboard): card = None else: card = None - next_attempt = 'VGA16' - elif attempt == 'VGA16': - # if no xserver then try falling back to VGA16 in no fb - card = VGA16Card() - - print _("Attempting to start VGA16 X server") next_attempt = 'END' +# +# Disabling VGA16 - does bad things with Xft currently +# +# elif attempt == 'VGA16': + # if no xserver then try falling back to VGA16 in no fb +# card = VGA16Card() +# +# print _("Attempting to start VGA16 X server") +# next_attempt = 'END' else: print "Got off end somehow!" break @@ -158,8 +139,6 @@ def startX(resolution, nofbmode, video, monitor, mouse, keyboard): except (RuntimeError, IOError): pass -# time.sleep(5) - attempt = next_attempt #--If original server isn't there...send them to text mode |