From 7508f56f1c32d5744f5c0af4164dc8c72f89d47a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 25 Oct 2010 20:46:36 +0200 Subject: [PATCH] xf86-video-nouveau: add and install configfile Signed-off-by: Stephan Raue --- .../config/xorg-nouveau.conf | 25 +++++++++++++++++++ .../x11/driver/xf86-video-nouveau/install | 3 +++ 2 files changed, 28 insertions(+) create mode 100644 packages/x11/driver/xf86-video-nouveau/config/xorg-nouveau.conf diff --git a/packages/x11/driver/xf86-video-nouveau/config/xorg-nouveau.conf b/packages/x11/driver/xf86-video-nouveau/config/xorg-nouveau.conf new file mode 100644 index 0000000000..1d7095cdf6 --- /dev/null +++ b/packages/x11/driver/xf86-video-nouveau/config/xorg-nouveau.conf @@ -0,0 +1,25 @@ +Section "ServerLayout" + Identifier "Layout0" + Screen 0 "Screen0" +EndSection + +Section "Monitor" + Identifier "Monitor0" + VendorName "Unknown" + ModelName "Unknown" + HorizSync 28.0 - 33.0 + VertRefresh 43.0 - 72.0 + Option "DPMS" +EndSection + +Section "Device" + Identifier "Device0" + Driver "nouveau" + VendorName "Nouveau" + Option "HWCursor" "on" + Option "GLXVBlank" "off" +EndSection + +Section "Extensions" + Option "Composite" "Disable" +EndSection diff --git a/packages/x11/driver/xf86-video-nouveau/install b/packages/x11/driver/xf86-video-nouveau/install index b514a03716..17478ff5e3 100755 --- a/packages/x11/driver/xf86-video-nouveau/install +++ b/packages/x11/driver/xf86-video-nouveau/install @@ -4,3 +4,6 @@ mkdir -p $INSTALL/$XORG_PATH_MODULES/drivers cp $PKG_BUILD/src/.libs/*_drv.so $INSTALL/$XORG_PATH_MODULES/drivers + +mkdir -p $INSTALL/etc/X11 + cp $PKG_DIR/config/*.conf $INSTALL/etc/X11