Sorry, I had a typo in mine. No need for that debug kernel now guys! Here ya go.
In /etc/rc.d/rc.local put:
Code:
echo 0 >/sys/bus/pci/devices/0000:01:00.0/enable
echo 1 >/sys/bus/pci/devices/0000:01:00.0/remove
/sbin/insmod /usr/local/lib/m11xr2hack.ko
/sbin/rmmod /usr/local/lib/m11xr2hack.ko
Make sure you blacklist nouveau:
Code:
echo blacklist nouveau >/etc/modprobe.d/blacklist-nouveau.conf
And rebuild your initrd after placing that blacklist file in modprobe.d:
Code:
/sbin/new-kernel-pkg --package kernel --mkinitrd --dracut --depmod --install $(uname -r)
And finally, build this hack module

You'll have to do this everytime you update your kernel:
Code:
make clean
make
mv m11xr2hack.ko /usr/local/lib
chmod 0400 /usr/local/lib/m11xr2hack.ko
See attached Makefile and m11xr2hack.c
-George