summaryrefslogtreecommitdiffstats
path: root/videocard.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-08-10 00:31:46 +0000
committerMike Fulbright <msf@redhat.com>2001-08-10 00:31:46 +0000
commitc169fd5d81200929cb45ca15e0153df5a7644112 (patch)
tree8ff60b35aeb69a2c5e9b84318abb00d08e94aa68 /videocard.py
parent6e9d373c87269d1cf259fd8791da59a7a5dd7d31 (diff)
downloadanaconda-c169fd5d81200929cb45ca15e0153df5a7644112.tar.gz
anaconda-c169fd5d81200929cb45ca15e0153df5a7644112.tar.xz
anaconda-c169fd5d81200929cb45ca15e0153df5a7644112.zip
handle video cards which probe ok, but for some reason the native X server doesnt work, and we fallback to VGA. Need to remember to configure the probed card later (and hope it works?). Fixed bug # 51273
Diffstat (limited to 'videocard.py')
-rw-r--r--videocard.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/videocard.py b/videocard.py
index 65dcee6ce..6fdc0bb62 100644
--- a/videocard.py
+++ b/videocard.py
@@ -25,6 +25,11 @@ import os
from log import log
from translate import _
+Videocard_blacklist = ["Generic VGA compatible",
+ "Generic VGA16",
+ "Generic Mono",
+ "Generic FBDev"]
+
Video_cardslist = {}
def Video_cardsDBLookup(thecard):