diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-31 18:37:47 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-31 18:37:47 +0000 |
commit | f98b28c87489207f9b40869ea9fd1b73b1eff027 (patch) | |
tree | 5a9b6c46d7e930de9b66793e9fe66b888535cc0d /xf86config.py | |
parent | 1a0f339f53103feec1ec0b87702dab134f92810f (diff) | |
download | anaconda-f98b28c87489207f9b40869ea9fd1b73b1eff027.tar.gz anaconda-f98b28c87489207f9b40869ea9fd1b73b1eff027.tar.xz anaconda-f98b28c87489207f9b40869ea9fd1b73b1eff027.zip |
fixups
Diffstat (limited to 'xf86config.py')
-rw-r--r-- | xf86config.py | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/xf86config.py b/xf86config.py index 64fce893f..993633ae1 100644 --- a/xf86config.py +++ b/xf86config.py @@ -642,13 +642,30 @@ Section "Screen" EndSubsection EndSection -# The accelerated server - Section "Screen" - Driver "%(DRIVER)s" +# The accelerated svga server +Section "Screen" + Driver "svga" + Device "%(DEVICE)s" + Monitor "%(MONITOR)s" +""" % info + for depth in self.modes.keys (): + section = section + """ + Subsection "Display" + Depth %s + Modes """ % depth + for res in self.modes[depth]: + section = section + '"' + res + '" ' + section = section + """ + ViewPort 0 0 + EndSubsection +""" + section = section + """ +# Other accelerated servers +Section "Screen" + Driver "accel" Device "%(DEVICE)s" Monitor "%(MONITOR)s" """ % info -# for depth in self.depths: for depth in self.modes.keys (): section = section + """ Subsection "Display" |