For openSUSE Factory users I have built xserver packages including the respective no-backfill patch: http://download.opensuse.org/reposit...nSUSE_Factory/
Remember that the kernel version in Factory is 2.6.31, so you need the Catalyst 9.10 beta driver from Ubuntu 9.10, which you can install with the help of this script written by kano:
Code:
#!/bin/sh
cd /usr/src
wget -N http://www2.ati.com/drivers/linux/ati-driver-installer-9-8-x86.x86_64.run
wget -N http://archive.ubuntu.com/ubuntu/pool/restricted/f/fglrx-installer/fglrx-installer_8.660.orig.tar.gz
DIR_OLD=fglrx.old
DIR_NEW=fglrx.new
rm -rf "$DIR_OLD" "$DIR_NEW"
mkdir "$DIR_OLD" "$DIR_NEW"
sh ati-driver-installer-9-8-x86.x86_64.run --extract "$DIR_OLD"
tar -C "$DIR_NEW" -zvxf fglrx-installer_8.660.orig.tar.gz
cp "$DIR_OLD"/* "$DIR_NEW"
cp -r "$DIR_OLD"/setup.data "$DIR_NEW"
cd "$DIR_NEW"
wget -qO- "http://phorogit.com/index.php?p=fglrx-packaging.git&dl=targz"|tar zxv
mv -v fglrx-packaging packages
rm -rf packages/ArchLinux
mkdir common
mv -v etc lib opt usr common
cp -r ../"$DIR_OLD"/packages/ATI packages
./ati-installer.sh 8.66 --install
I also opened a feature request to have these packages in a more prominent place: https://features.opensuse.org/307845.
When I find time, I will provide versions for openSUSE 11.1 as well.