summaryrefslogtreecommitdiffstats
path: root/videocard.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-12-17 20:07:48 +0000
committerMike Fulbright <msf@redhat.com>2001-12-17 20:07:48 +0000
commit5f129fc8e0a0706414ce7b7ef35a5febc65adb64 (patch)
treebceb6d7eea45d8fb839078ef250278eca2ff38d0 /videocard.py
parent3364427d3e2c21853e0805b271c9586f111c1f1a (diff)
downloadanaconda-5f129fc8e0a0706414ce7b7ef35a5febc65adb64.tar.gz
anaconda-5f129fc8e0a0706414ce7b7ef35a5febc65adb64.tar.xz
anaconda-5f129fc8e0a0706414ce7b7ef35a5febc65adb64.zip
well XFree86 4.x fbdev reboots my machines when it runs, so reverting to use XFree86 3.x.x fbdev for now
Diffstat (limited to 'videocard.py')
-rw-r--r--videocard.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/videocard.py b/videocard.py
index 87a04aba6..0ec6a2534 100644
--- a/videocard.py
+++ b/videocard.py
@@ -170,11 +170,11 @@ class FrameBufferCard(VideoCard):
# This makes it use the XFree86 4.x fbdev
# also uncomment the code below in getXServer()
- card["DRIVER"] = "fbdev"
+# card["DRIVER"] = "fbdev"
#
# This makes is use the XFree 3.x.x fbdev
# also uncomment the code below in getXServer()
-# card["SERVER"] = "FBDev"
+ card["SERVER"] = "FBDev"
card["NAME"] = "VGA VESA Framebuffer"
@@ -184,11 +184,11 @@ class FrameBufferCard(VideoCard):
# This makes it use the XFree86 4.x fbdev
# also uncomment the code above in getCardData()
- return "XFree86"
+# return "XFree86"
#
# This makes is use the XFree 3.x.x fbdev
# also uncomment the code above in getCardData()
-# return "XF86_FBDev"
+ return "XF86_FBDev"
def isFrameBuffer(self):
return 1