[ltp] Re: radeon tv-out

Alex Deucher linux-thinkpad@linux-thinkpad.org
Fri, 10 Aug 2007 14:54:27 -0400


On 8/10/07, Nils <linuxuser@knabber.homelinux.net> wrote:
>
> >You are not using the randr-1.2 branch of the ati git tree, you are
> >using master. Once you've grabbed the ati git tree do:
>
> >git checkout randr-1.2
>
> >to switch to the randr branch.  then build as before.
>
> I do the following steps: (with no success)
> 1.) git-clone git://anongit.freedesktop.org/git/xorg/driver/xf86-video-ati
> 2.) sh autogen.sh
>
> error
>  ./configure: line 19998: syntax error near unexpected token `XINERAMA,'
>  ./configure: line 19998: `XORG_DRIVER_CHECK_EXT(XINERAMA, xineramaproto)'
> ??
>
> 3.) git checkout randr-1.2
> error: pathspec 'randr-1.2' did not match any file(s) known to git.
> Did you forget to 'git add'?
> ??
>
> Xrandr:
> 1.) git clone git://git.freedesktop.org/git/xorg/app/xrandr
> 2.) sh autogen.sh
> -> I have the xrandr binary, but no new ati driver.
>
>
> I think it's too complex for me :-(

It's not too bad.

1. First make sure you back up the existing radeon (radeon_drv.so) and
ati (ati_drv.so) drivers.
2. install the xorg-dev, mesa-dev, and xserver-dev packages for your distro
3. git-clone git://anongit.freedesktop.org/git/xorg/driver/xf86-video-ati
4. cd xf86-video-ati
5. git checkout randr-1.2
or
git checkout origin randr-1.2
depending on what version of git you are using
6. ./autogen.sh --prefix=/usr
7. make
8. sudo make install
or
make install as root

Alex