Some logging of stuff I had to do to haxx0r ATI's driver to make it work. Even then it didn't work :(

Reference: [WWW] http://gentoo-wiki.com/index.php?title=HOWTO_ATI_Drivers&redirect=no

First get the damn thing, which is trouble enough in itself....

Hack the DETAILS so that the versions are right....

Try the cast and see if it has problems, it may not fail the cast, even if the driver doesn't get built successfully...

if it cannot find stuff and you have to add it from the kernel headers use delve:

delve -c ati_driver start config_loc
--haxx0r your sources---
delve -c ati_driver config_loc end

do that lots of times, and copy in functions from the kernel headers that it cannot seem to find

---

or you can do some voodoo with the xorg drivers extract xorg tarball in /usr/src and build the r300 mesa drivers by hand --- semi-insane instructions follow

cd xc/Extras/drm
bash # opens a subshell for sorcery's environment
. /etc/sorcery/config
./autogen.sh
make; make install
cd ../Mesa
make linux-dri
cd #to the dir with r300 in it
make # if possible

last edited 2006-03-15 17:02:53 by DavidKowis