diff options
author | Mike Fulbright <msf@redhat.com> | 2000-08-16 04:24:02 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-08-16 04:24:02 +0000 |
commit | 4c854d08f625139d1ac5460e3e00a70c4ad15aa1 (patch) | |
tree | 428e47db4de9a20ccf872f18b20697461afacdcd /xf86config.py | |
parent | aca4be21d45bb7fd7318961c59c2412a2b273c3e (diff) | |
download | anaconda-4c854d08f625139d1ac5460e3e00a70c4ad15aa1.tar.gz anaconda-4c854d08f625139d1ac5460e3e00a70c4ad15aa1.tar.xz anaconda-4c854d08f625139d1ac5460e3e00a70c4ad15aa1.zip |
make i810 DRI work by forcing 16M video RAM
Diffstat (limited to 'xf86config.py')
-rw-r--r-- | xf86config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xf86config.py b/xf86config.py index eaea9c14e..f4b51605c 100644 --- a/xf86config.py +++ b/xf86config.py @@ -850,6 +850,12 @@ class XF86Config: except: pass + # kludge to handle i810 displays which require at least 16 Meg + if (self.vidCards[self.primary].has_key("DRIVER") and + (self.vidCards[self.primary]["DRIVER"] == "i810")): + self.vidRam = "16384" + + def probeReport (self): probe = "" if self.vidCards: |