diff options
author | 8p8c <cameltheman@gmail.com> | 2016-10-06 00:09:00 +0300 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-10-06 20:46:50 +0800 |
commit | 3126fd8820e8c30e27ef978d66dced8763d04905 (patch) | |
tree | bf26eea30c27c8da706a3790daa1f4a308abe28d /gnu/services/xorg.scm | |
parent | fb7dc6d6473920495d740e28901c4ce534f10bd8 (diff) | |
download | patches-3126fd8820e8c30e27ef978d66dced8763d04905.tar patches-3126fd8820e8c30e27ef978d66dced8763d04905.tar.gz |
services: xorg: Add ATI video driver to the default modules.
* gnu/services/xorg.scm (%default-xorg-modules): Add xf86-video-ati.
Signed-off-by: 宋文武 <iyzsong@gmail.com>
Diffstat (limited to 'gnu/services/xorg.scm')
-rw-r--r-- | gnu/services/xorg.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index d098d831e1..ccac677202 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -108,6 +108,7 @@ Section \"Files\" FontPath \"" font-adobe75dpi "/share/fonts/X11/75dpi\" ModulePath \"" xf86-video-vesa "/lib/xorg/modules/drivers\" ModulePath \"" xf86-video-fbdev "/lib/xorg/modules/drivers\" + ModulePath \"" xf86-video-ati "/lib/xorg/modules/drivers\" ModulePath \"" xf86-video-modesetting "/lib/xorg/modules/drivers\" ModulePath \"" xf86-video-cirrus "/lib/xorg/modules/drivers\" ModulePath \"" xf86-video-intel "/lib/xorg/modules/drivers\" @@ -145,6 +146,7 @@ EndSection (define %default-xorg-modules (list xf86-video-vesa xf86-video-fbdev + xf86-video-ati xf86-video-modesetting xf86-video-cirrus xf86-video-intel |