Hey all,
I HAVE A SOLUTION!
Tested for a week now, prior to it after 4 days the bug would manifest. But thanks to people on #intel-gfx freenode we have workaround.
The solution is to set AccelMethod to "sna". However to day this rendering option is only available in the git repo, so you need to compile it. Here is a step by step instruction, and how to test that it works:
1. get the source of the drivers from git and compile it. you will need xorg's dev packages (You would be prompted if you don't have them installed at the autogen command):
Code:
git clone git://anongit.freedesktop.org/xorg/driver/xf86-video-intel
./autogen
make
2. install the packages, I recommend you use checkinstall, since it would be easy to remove once thease drivers do make it in to your debain-based distro:
Code:
#on debian systems, better than make install, if you dont know how to use checkinstall, just use "make install"
checkinstall
3. Now we need to set "sna" mode, so go this:
In the "Files" Section in /etc/X11/xorg.conf make sure you have local/lib/xorg/modules spesified like this:
Code:
ModulePath "/usr/local/lib/xorg/modules,/usr/lib/xorg/modules"
4. make sure you don't have the current intel drivers floating around:
apt-get remove xserver-xorg-video-intel
5. In the "Device" Section in /etc/X11/xorg.conf mark SNA option for rendering:
Code:
Option "AccelMethod" "sna"
6. After rebooting (because you want the new driver to get loaded), you can make sure you are running on the new AccelMethod by runniung this:
Code:
guy@Golem2: $ grep SNA /var/log/Xorg.0.log
[ 92.852] (II) intel(0): SNA compiled from 2.20.2-3-gfb38574
[ 93.415] (II) intel(0): SNA initialized with Ironlake backend
Please confirm this works (after giving your system a few days of uptime)
Bookmarks