Announcement

Collapse
No announcement yet.

Getting Open Source 3D graphics on R6XX/R7XX cards (NO FGLRX)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #51
    Here are all the files:



    Let me know if you need something else. I have no problem in reinstalling all the system or trying anything. I just need 3D acceleration in linux for my work! Thanks a lot!! (of course I could keep going with win7... but I thinks its time to make the leap)

    Comment


    • #52
      PLEASE NOTE: BE SURE TO CHANGE THE LIBDIR ACCORDINGLY!

      Problems with xorg log:

      (EE) RADEON(0): [dri] RADEONDRIGetVersion failed to open the DRM
      [dri] Disabling DRI.
      (II) [KMS] drm report modesetting isn't supported.
      (WW) Falling back to old probe method for vesa
      (WW) Falling back to old probe method for fbdev

      compile libdrm_radeon

      git clone git://anongit.freedesktop.org/mesa/drm && cd drm && make distclean && ./autogen.sh --prefix=/usr --libdir=/usr/lib64/or/usr/lib --enable-radeon-experimental-api && sudo make install

      now compile ati DDX

      git clone git://anongit.freedesktop.org/xorg/driver/xf86-video-ati && cd *ati && make distclean && ./autogen.sh --prefix=/usr --libdir=/usr/lib64/or/usr/lib && make && sudo make install && sudo ldconfig

      try that.

      Comment


      • #53
        Originally posted by Neo_The_User View Post
        PLEASE NOTE: BE SURE TO CHANGE THE LIBDIR ACCORDINGLY!

        Problems with xorg log:

        (EE) RADEON(0): [dri] RADEONDRIGetVersion failed to open the DRM
        [dri] Disabling DRI.
        (II) [KMS] drm report modesetting isn't supported.
        (WW) Falling back to old probe method for vesa
        (WW) Falling back to old probe method for fbdev

        compile libdrm_radeon

        git clone git://anongit.freedesktop.org/mesa/drm && cd drm && make distclean && ./autogen.sh --prefix=/usr --libdir=/usr/lib64/or/usr/lib --enable-radeon-experimental-api && sudo make install

        now compile ati DDX

        git clone git://anongit.freedesktop.org/xorg/driver/xf86-video-ati && cd *ati && make distclean && ./autogen.sh --prefix=/usr --libdir=/usr/lib64/or/usr/lib && make && sudo make install && sudo ldconfig

        try that.
        Hi, I had a problem while compiling libdrm_radeon:

        Code:
        make: *** No rule to make target `distclean'.  Stop.

        Comment


        • #54
          Originally posted by rmartinez View Post
          Hi, I had a problem while compiling libdrm_radeon:

          Code:
          make: *** No rule to make target `distclean'.  Stop.
          dont do the make distcleans then. same for -ati DDX. i thought you already had it cloned. sorry

          Comment


          • #55
            Originally posted by Neo_The_User View Post
            dont do the make distcleans then. same for -ati DDX. i thought you already had it cloned. sorry
            Hi Neo_The_User, I had this output error:

            Code:
            ./autogen.sh --prefix=/usr --libdir=/usr/lib64/or/usr/lib --enable-radeon-experimental-api && sudo make install
            Can't exec "libtoolize": No such file or directory at /usr/bin/autoreconf line 190.
            Use of uninitialized value $libtoolize in pattern match (m//) at /usr/bin/autoreconf line 190.
            autoreconf: Entering directory `.'
            autoreconf: configure.ac: not using Gettext
            autoreconf: running: aclocal 
            autoreconf: configure.ac: tracing
            autoreconf: configure.ac: not using Libtool
            autoreconf: running: /usr/bin/autoconf
            configure.ac:29: error: possibly undefined macro: AC_DISABLE_STATIC
                  If this token and others are legitimate, please use m4_pattern_allow.
                  See the Autoconf documentation.
            configure.ac:30: error: possibly undefined macro: AC_PROG_LIBTOOL
            autoreconf: /usr/bin/autoconf failed with exit status: 1

            Comment


            • #56
              @Neo_The_User
              There is what looks like an updated procedure on the X.Org wiki to get the drm-next source in one go:
              Code:
              git clone git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
              cd drm-2.6
              git checkout -b drm-next origin/drm-next
              I am trying this now - do I still need to change "drm-next" in the last line to "drm-linus"? I tried the procedure in your earlier post, but still got (different) merge conflicts.

              @martinez
              I think you probably need a package like xorg-x11-util-macros - see here (http://wiki.x.org/wiki/radeonhd#head...d71ee38109b876), para 11.2

              Comment


              • #57
                i think hes missing a tool called libtool

                ftp://ftp.gnu.org/gnu/libtool

                cheers mates!

                edit: post the conflicts for the drm-linus tree and ill fix it.

                Comment


                • #58
                  Originally posted by Neo_The_User View Post
                  i think hes missing a tool called libtool

                  ftp://ftp.gnu.org/gnu/libtool

                  cheers mates!

                  edit: post the conflicts for the drm-linus tree and ill fix it.
                  You were right, I needed "libtools", and also needed "pthread-stubs" & "xutils-dev".
                  So, for the "libdrm_radeon" compilation all went OK, but for the "ati DDX" compilation, I get this message while trying "sudo make install" inside the "xf86-video-ati" folder:
                  Code:
                  make: *** No rule to make target `install'.  Stop.
                  Any ideas? Do you need any output from the compilation?

                  Comment


                  • #59
                    Has autogen.sh no problems found? And don't Copy&Paste Commands!!!!

                    and on Ubuntu you can Compile and install the ddx from git with


                    Code:
                    git-clone git://anongit.freedesktop.org/git/xorg/driver/xf86-video-ati
                    cd xf86-video-ati
                    ./autogen.sh --prefix=/usr
                    make
                    sudo make install
                    Last edited by Nille; 20 October 2009, 07:11 AM.

                    Comment


                    • #60
                      autogen.sh is giving the following error:

                      Code:
                      ./configure: line 11526: syntax error near unexpected token `XINERAMA,'
                      ./configure: line 11526: `XORG_DRIVER_CHECK_EXT(XINERAMA, xineramaproto)'
                      I tried installing every package it had something to do with xinerama... But it didn't work. I know I'm missing something... Thanks!

                      Comment

                      Working...
                      X