summaryrefslogtreecommitdiffstats
path: root/xserver.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-21 20:14:31 +0000
committerMatt Wilson <msw@redhat.com>1999-08-21 20:14:31 +0000
commit14a3f50119f0c2167b69c2535d4bd5b9a7076cac (patch)
tree43558eea9e1d02eaf9349b3499765739047f1582 /xserver.py
parenteaab0d3447fcc348a6c29cef7f8ad84d12b29a04 (diff)
downloadanaconda-14a3f50119f0c2167b69c2535d4bd5b9a7076cac.tar.gz
anaconda-14a3f50119f0c2167b69c2535d4bd5b9a7076cac.tar.xz
anaconda-14a3f50119f0c2167b69c2535d4bd5b9a7076cac.zip
fixed.
Diffstat (limited to 'xserver.py')
-rw-r--r--xserver.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/xserver.py b/xserver.py
index 2056b59ad..3bba61adb 100644
--- a/xserver.py
+++ b/xserver.py
@@ -184,6 +184,18 @@ Section "Screen"
EndSection
Section "Screen"
+ Driver "accel"
+ Device "Device"
+ Monitor "Monitor"
+ Subsection "Display"
+ Depth 8
+ Modes "640x480"
+ ViewPort 0 0
+ Virtual 640 480
+ EndSubsection
+EndSection
+
+Section "Screen"
Driver "fbdev"
Device "Device"
Monitor "Monitor"
@@ -197,6 +209,7 @@ EndSection
server = os.fork()
if (not server):
+ print "starting", serverPath
os.execv(serverPath, [serverPath, ':1', '-xf86config',
'/tmp/XF86Config', 'vt5'])
child = os.fork()