diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-21 20:14:31 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-21 20:14:31 +0000 |
commit | 14a3f50119f0c2167b69c2535d4bd5b9a7076cac (patch) | |
tree | 43558eea9e1d02eaf9349b3499765739047f1582 /xserver.py | |
parent | eaab0d3447fcc348a6c29cef7f8ad84d12b29a04 (diff) | |
download | anaconda-14a3f50119f0c2167b69c2535d4bd5b9a7076cac.tar.gz anaconda-14a3f50119f0c2167b69c2535d4bd5b9a7076cac.tar.xz anaconda-14a3f50119f0c2167b69c2535d4bd5b9a7076cac.zip |
fixed.
Diffstat (limited to 'xserver.py')
-rw-r--r-- | xserver.py | 13 |
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() |