forums.ps2dev.org Forum Index forums.ps2dev.org
Homebrew PS2, PSP & PS3 Development Discussions
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Installing the unstable but working Xv driver

 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> spu-medialib
View previous topic :: View next topic  
Author Message
unsolo



Joined: 16 Apr 2007
Posts: 155
Location: OSLO Norway

PostPosted: Sun Nov 04, 2007 9:25 am    Post subject: Installing the unstable but working Xv driver Reply with quote

WARNING
Your X can crash from this

first isntall latest spu-medialib following the link below

http://wiki.ps2dev.org/ps3:spu-medialib:install

then compile and install the driver as follows

Code:

svn co svn://svn.ps2dev.org/ps3ware/trunk/xf86-video-spu
cd xf86-video-spu
autoreconf -if && ./configure --prefix /usr && make && make install

Note* Replace --prefix /usr to wherever lib/xorg/ is

Then set up your Xorg.conf in /etc/x11/xorg.conf
Code:

Section "Module"
#       Load  "dbe"
        Load  "extmod"
#       Load  "glx"

#       Load  "record"
        Load  "freetype"
        Load  "type1"
#       Load  "dri"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "spu_fbdev"
        Option "ShadowFB" "false"
EndSection


Do not attempt to move the window.
By moving the window i mean resize the video in windowed mode and moving it around in X.
This is only known to be stable working with fullscreen off and on.
Still loads of bugs but im not very interested in solving all by my self
may be useless in 32 bit please fix it :)

cheers
Kristian
_________________
Don't do it alone.


Last edited by unsolo on Mon Nov 05, 2007 12:14 am; edited 1 time in total
Back to top
View user's profile Send private message
Warren



Joined: 24 Jan 2004
Posts: 175
Location: San Diego, CA

PostPosted: Sun Nov 04, 2007 11:07 pm    Post subject: Reply with quote

Quote:
Do not attempt to move the window only known to work with fullscreen off on..


Can you reword that sentence? I'm not sure what you're trying to say.
Back to top
View user's profile Send private message
unsolo



Joined: 16 Apr 2007
Posts: 155
Location: OSLO Norway

PostPosted: Mon Nov 05, 2007 12:16 am    Post subject: Reply with quote

clearer now ?
_________________
Don't do it alone.
Back to top
View user's profile Send private message
TimeZlicer



Joined: 05 Nov 2007
Posts: 6

PostPosted: Mon Nov 05, 2007 9:49 pm    Post subject: Reply with quote

Hi,

I have encountered a libspe2 not found problem while doing ./configure and was resolved by adding
/usr/lib/pkgconfig/libspe2.pc

with the following contents

prefix=$(prefix)
exec_prefix=$(exec_prefix)
libdir=$(libdir)
includedir=$(includedir)

Name: libspe2
Description: A wrapper library to adapt the JSRE SPU usage model to SPUFS
Version: 2.2.0
Requires:
Conflicts:
Libs: -L${libdir} -lrt -lpthread
Cflags: -I\${includedir}
Back to top
View user's profile Send private message
TimeZlicer



Joined: 05 Nov 2007
Posts: 6

PostPosted: Mon Nov 05, 2007 11:52 pm    Post subject: Reply with quote

prefix=$(prefix)
exec_prefix=$(exec_prefix)
libdir=$(libdir)
includedir=$(includedir)

Name: libspe2
Description: A wrapper library to adapt the JSRE SPU usage model to SPUFS
Version: 2.2.0
Requires:
Conflicts:
Libs: -L${libdir} -lrt -lpthread
Cflags: -I${includedir}
Back to top
View user's profile Send private message
unsolo



Joined: 16 Apr 2007
Posts: 155
Location: OSLO Norway

PostPosted: Tue Nov 06, 2007 4:42 am    Post subject: Reply with quote

what linux distribution is this ?
It doesn't reg libspe2.2 properly it seems

Quote:

prefix=$(prefix)
exec_prefix=$(exec_prefix)
libdir=$(libdir)
includedir=$(includedir)

Name: libspe2
Description: A wrapper library to adapt the JSRE SPU usage model to SPUFS
Version: 2.2.0
Requires:
Conflicts:
Libs: -L${libdir} -lrt -lpthread
Cflags: -I${includedir}

_________________
Don't do it alone.
Back to top
View user's profile Send private message
TimeZlicer



Joined: 05 Nov 2007
Posts: 6

PostPosted: Tue Nov 06, 2007 1:04 pm    Post subject: Reply with quote

fedora 7 on PS3

i installed from the RPM listed at
http://www.kernel.org/pub/linux/kernel/people/geoff/cell/CELL-Linux-CL_20071023-ADDON/doc/ApplicationProgrammingEnvironment.html

BTW I tried, and compiled successfully but X crashes when running mplayer.

Will post the error.log tonight.
Back to top
View user's profile Send private message
unsolo



Joined: 16 Apr 2007
Posts: 155
Location: OSLO Norway

PostPosted: Wed Nov 07, 2007 12:15 am    Post subject: Reply with quote

Here's a few tips.

I think its a 32 bit issue as i have heard of the same problem elsewhere.
try perhaps masking the devPrivate.ptr in Put Image in spu_video.c
somehow. it might help.

btw also make shure you are playing back something thats 624x352 and 1280x720 or similar just to se if its a format crash issue due to bad handling of alignement requirements inside the spu_video.c

cheers
_________________
Don't do it alone.
Back to top
View user's profile Send private message
TimeZlicer



Joined: 05 Nov 2007
Posts: 6

PostPosted: Wed Nov 07, 2007 9:22 pm    Post subject: Reply with quote

sorry, my programming is rusty...

I found this line, what am I suppose to do with devPrivate.ptr?

pPriv->Opointer[pPriv->currentBuffer]=mypixmap->devPrivate.ptr;


Thanks in advance!!!
Back to top
View user's profile Send private message
unsolo



Joined: 16 Apr 2007
Posts: 155
Location: OSLO Norway

PostPosted: Wed Nov 07, 2007 10:19 pm    Post subject: Reply with quote

Quote:

pPriv->Opointer[pPriv->currentBuffer]=mypixmap->devPrivate.ptr;


you could try changing it to
Code:

pPriv->Opointer[pPriv->currentBuffer] = ( ( ( (unsinged long long) mypixmap->devPrivate.ptr ) ) & ~ 15 ) & 0xFFFFFFFF;


Perhaps doing the same thing with the buf* might help as well but unless you plan to fix it i suggest you just sit back and wait :)

trying some known to work video resolutions might also clarify things as i mentioned in the previous post
_________________
Don't do it alone.
Back to top
View user's profile Send private message
Ocelot



Joined: 08 Dec 2007
Posts: 11

PostPosted: Sun Dec 30, 2007 2:35 am    Post subject: Reply with quote

i have tried to install the driver in ubuntu but when i type:
autoreconf -if && ./configure --prefix /usr && make && make install
in terminal it says that libspe2 is missing but a already installed it(libspe2)2 days ago.then i searched on google.de and found out that this problem was discovered a few weeks ago.unfortuantly no one replied and so i haven´t found a solution yet.
http://www.mail-archive.com/ubuntu-bugs@lists.ubuntu.com/msg565025.html
it seems that ubuntu doesn´t recognise libspe2. :(
Back to top
View user's profile Send private message
Ocelot



Joined: 08 Dec 2007
Posts: 11

PostPosted: Sun Dec 30, 2007 8:24 am    Post subject: Reply with quote

well never mind i have found a solution on this site.damn i should read careful.
Back to top
View user's profile Send private message
geodesico



Joined: 06 Dec 2007
Posts: 1

PostPosted: Tue Feb 05, 2008 8:03 am    Post subject: problems Reply with quote

Hi all! Need Help!!

I have a problem building the spu-medialib at the point ->>

[root@ps3-linux spu]# ./configure
checking for spu-elf-gcc... spu-elf-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether spu-elf-gcc accepts -g... yes
checking for spu-elf-gcc option to accept ISO C89... none needed
checking build system type... powerpc64-redhat-linux-gnu
checking host system type... Invalid configuration `spu-elf': machine `spu' not recognized
configure: error: /bin/sh ./../config.sub spu-elf failed


I'm Using PS3 2.10FW with YDL 5.0.2 with the Oficial CELL SDK from IBM nor the Toolchain from ps2dev... is this too relevant?

Thanks you Guys! Good Job There!!

Saludos desde La República de España!!
Back to top
View user's profile Send private message
xat



Joined: 26 Mar 2008
Posts: 2

PostPosted: Wed Mar 26, 2008 2:27 pm    Post subject: Reply with quote

Log:
Code:

MPlayer dev-SVN-r26010-4.1.3 (C) 2000-2008 MPlayer Team
AltiVec found
CPU: PowerPC
/usr/share/fonts/truetype/ttf-indic-fonts-core/MuktiNarrowBold.ttf doesn't look like a bitmap font $
Cannot load bitmap font: /usr/share/fonts/truetype/ttf-indic-fonts-core/MuktiNarrowBold.ttf
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support. You will not be able to use your remote control.

Playing [SS-Eclipse]_Clannad_-_01_(704x400_XviD)_[8DBA8169].avi.
AVI file format detected.
[aviheader] Video stream found, -vid 0
[aviheader] Audio stream found, -aid 1
VIDEO:  [XVID]  704x400  24bpp  23.976 fps  816.7 kbps (99.7 kbyte/s)
Clip info:
 Software: VirtualDubMod 1.5.10.1 (build 2366/release)
==========================================================================
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffodivx] vfm: ffmpeg (FFmpeg MPEG-4)
==========================================================================
==========================================================================
Opening audio decoder: [mp3lib] MPEG layer-2, layer-3
AUDIO: 48000 Hz, 2 ch, s16be, 160.0 kbit/10.42% (ratio: 20000->192000)
Selected audio codec: [mp3] afm: mp3lib (mp3lib MPEG layer-2, layer-3)
==========================================================================
AO: [oss] 48000Hz 2ch s16be (2 bytes per sample)
Starting playback...
VDec: vo config request - 704 x 400 (preferred colorspace: Planar YV12)
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is 1.76:1 - prescaling to correct movie aspect.
VO: [xv] 704x400 => 704x400 Planar YV12
A:   0.2 V:   0.0 A-V:  0.171 ct:  0.000   1/  1 ??% ??% ??,?% 0 0 ^[[J
A:   0.2 V:   0.0 A-V:  0.193 ct: -0.000   2/  2 ??% ??% ??,?% 1 0 ^[[J
A:   0.2 V:   0.1 A-V:  0.157 ct:  0.000   3/  3 ??% ??% ??,?% 2 0 ^[[J
A:   0.2 V:   0.1 A-V:  0.115 ct:  0.000   4/  4 ??% ??% ??,?% 2 0 ^[[J
A:   0.3 V:   0.2 A-V:  0.089 ct:  0.000   5/  5 ??% ??% ??,?% 2 0 ^[[J
A:   0.3 V:   0.2 A-V:  0.047 ct: -0.000   6/  6 ??% ??% ??,?% 2 0 ^[[J
A:   0.3 V:   0.3 A-V:  0.011 ct: -0.000   7/  7 ??% ??% ??,?% 2 0 ^[[J

MPlayer interrupted by signal 13 in module: flip_page
- MPlayer crashed. This shouldn't happen.
  It can be a bug in the MPlayer code _or_ in your drivers _or_ in your
  gcc version. If you think it's MPlayer's fault, please read
  DOCS/HTML/en/bugreports.html and follow the instructions there. We can't and
  won't help unless you provide this information when reporting a possible bug.


MPlayer interrupted by signal 1 in module: flip_page


Tested on xubuntu 7.10.
Back to top
View user's profile Send private message
xat



Joined: 26 Mar 2008
Posts: 2

PostPosted: Wed Mar 26, 2008 2:32 pm    Post subject: Reply with quote

Er, right. That's in conjunction with the settings in the original post. Only difference is this is a 32-bit env I'd assume? Also X does crash (not just mplayer).
Back to top
View user's profile Send private message
unsolo



Joined: 16 Apr 2007
Posts: 155
Location: OSLO Norway

PostPosted: Mon Mar 31, 2008 12:58 am    Post subject: Reply with quote

Feel free to commit .. my work priorities are elsewhere at the moment.. but i do plan to make this work some day..
_________________
Don't do it alone.
Back to top
View user's profile Send private message
Nismobeach



Joined: 16 Aug 2007
Posts: 9

PostPosted: Fri Jun 06, 2008 4:25 pm    Post subject: Reply with quote

Unsolo, I've finally had a chance to install this on my Xubuntu 7.10 box, and with the exception of one lock-up under VLC, everything seems to works pretty good.

I'm going to do my best to promote this on the psubuntu forums to hopefully get some additional development help for this project.

:)
Back to top
View user's profile Send private message
eric9



Joined: 08 Jun 2008
Posts: 2

PostPosted: Mon Jun 09, 2008 1:00 am    Post subject: Reply with quote

Well, last week I took the plunge and installed Ubuntu 7.10 on my PS3. I also built the toolchain, xf86-video-spu, and mplayer-vo from svn.

First I'd like to say: awesome job unsolo and other devs. I am totally blown away by the spu libraries and drivers you've built.

VLC (and mplayer -vo xv -fs) plays regular def media pretty well. I'm having a problem getting mplayer -vo ps3 -fs (from svn) to display anything, but when I use the mplayer-ps3 binary (mplayer-ps3 -vo ps3 -fs) from here: http://linux.yes.nu/PS3Ubuntu/ it works.

These packages are on their way to making my ps3 a full time replacement for my modded XBOX with XBMC (my previous preferred media player). And since its linux based, I can use my NFS server instead of SAMBA for fileshares, which is definitely good.

Anyways, I'd love to help. How do I get started contributing/where would be a good place to look?

eric9

PS thanks again devs for all your hard work, it is fantastic.
Back to top
View user's profile Send private message
Ocelot



Joined: 08 Dec 2007
Posts: 11

PostPosted: Tue Jun 10, 2008 10:33 pm    Post subject: Reply with quote

No progress?
Back to top
View user's profile Send private message
eric9



Joined: 08 Jun 2008
Posts: 2

PostPosted: Tue Jun 10, 2008 10:55 pm    Post subject: Reply with quote

Ocelot:
Sounds like a problem I had.

First of all, do you have both libspe2 and libspe2-dev installed?
Code:
# sudo aptitude install libspe2 libspe2-dev


My problem was that pkg-config couldnt find the LIBSPE2 module during the ./configure section. It was because I had installed libspe2-dev after I ran the aclocal and other autoconf commands. After I installed libspe2-dev, I re-ran all the autoconf tools (aclocal, autoconf, automake), and the ./configure worked fine for me.

Try running each of those commands individually, including the ./configure step, and post the actual error messages you received on this board.

eric9
Back to top
View user's profile Send private message
Ocelot



Joined: 08 Dec 2007
Posts: 11

PostPosted: Wed Jun 11, 2008 11:40 pm    Post subject: Reply with quote

eric9 wrote:
Ocelot:
Sounds like a problem I had.

First of all, do you have both libspe2 and libspe2-dev installed?
Code:
# sudo aptitude install libspe2 libspe2-dev


My problem was that pkg-config couldnt find the LIBSPE2 module during the ./configure section. It was because I had installed libspe2-dev after I ran the aclocal and other autoconf commands. After I installed libspe2-dev, I re-ran all the autoconf tools (aclocal, autoconf, automake), and the ./configure worked fine for me.

Try running each of those commands individually, including the ./configure step, and post the actual error messages you received on this board.

eric9

Thank you for your help but i don't have Ubuntu anymore since i'm still waiting for Ubuntu Hardy and my old Ubuntu doesn't boot anymore.
Back to top
View user's profile Send private message
ghost_zero



Joined: 09 Jan 2009
Posts: 1

PostPosted: Fri Jan 09, 2009 4:01 am    Post subject: Reply with quote

Hi,

I just would like to know if there is any news regarding updates for this driver?
Especially, I think someone should update the trunk to finally remove the "_" from the driver name because newer distribution versions aren't supporting the "_" in the driver name.

Also: I just got it to install on Ubuntu 8.10 (I also installed the newest spu-medialib) and it works BUT it doesn't get way faster on playing back 720p .mkv H.264 files. Probably because spu-medialib isn't yet supporting H.264 decoding and the few things that are already supported are probably not enough for this type of playback.
Also: Once spu-medialib supports this feature will the driver support it automatically or will there at least be an update to it?
(Regarding this I have a side-question:
How far is that feature?
I guess you don't have an approximate release date for it yet).

Also it is extremely unstable then, e.g. if I use VLC it is nearly instantly locking up the whole system (though I didn't do anything, even started the player maximized already) and with Totem it works but once I e.g. move the mouse the X-Server reboots.
Back to top
View user's profile Send private message
GT-Schorsch



Joined: 26 Mar 2009
Posts: 1

PostPosted: Thu Mar 26, 2009 10:33 pm    Post subject: Xv errors Reply with quote

Hello there,

I just installed the spu-accelerated Xv driver under Debian lenny using the Debian packages from http://people.debian.org/~seanius/ps3-experimental-packages. I got it working, well basically. I get wrong colors!

I'm using VDR and xineliboutput and thus the Xv driver for the video output. In some cases the OSD is green where it should be blue. Also, a greyscaled still image is shown in bright yellow (instead of white) and black. Things that should be green are green and things that should be yellow are yellow! Usually this OSD is done by a so called DVB full-featured card, but by using xineliboutput it is implemented in software also.

My xorg.conf looks like this:

Code:
Section "Files"
    FontPath    "/usr/share/X11/fonts/misc"
    # FontPath    "/usr/share/X11/fonts/cyrillic"
    FontPath    "/usr/share/X11/fonts/100dpi/:unscaled"
    FontPath    "/usr/share/X11/fonts/75dpi/:unscaled"
    FontPath    "/usr/share/X11/fonts/Type1"
    FontPath    "/usr/share/X11/fonts/100dpi"
    FontPath    "/usr/share/X11/fonts/75dpi"
    FontPath    "/usr/share/fonts/X11/misc"
    # path to defoma fonts
    FontPath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
    # Load    "bitmap"
    # Load    "ddc"
    # Load    "dri"
    Load    "extmod"
    Load    "freetype"
    # Load    "glx"
    # Load    "int10"
    # Load    "type1"
    # Load    "vbe"
EndSection

Section "InputDevice"
        Identifier      "Generic Keyboard"
        Driver          "kbd"
        Option          "XkbRules"      "xorg"
        Option          "XkbModel"      "pc105"
        Option          "XkbLayout"     "de"
        Option          "XkbVariant"    "nodeadkeys"
        Option          "XkbOptions"    "lv3:lwin_switch"
EndSection

Section "InputDevice"
    Identifier    "Configured Mouse"
    Driver        "mouse"
    Option        "CorePointer"
    Option        "Device"        "/dev/input/mice"
    Option        "Protocol"        "ExplorerPS/2"
    Option        "ZAxisMapping"        "4 5"
EndSection


Section "Device"
    Identifier    "Generic Video Card"
    Driver        "spufbdev"
    Option        "ShadowFB"        "false"
  # Option        "UseFBDev"        "true"
EndSection

Section "Monitor"
    Identifier    "Generic Monitor"
    Option        "IgnoreEDID"
    HorizSync    30-90
    VertRefresh    20-150
    ModeLine "720p" 73.825 1280 1320 1368 1640 720 722 724 751 +hsync +vsync
    DisplaySize    320 180
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Device        "Generic Video Card"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    DefaultFbBpp    32


    SubSection "Display"
        Viewport    0    0
        Depth        24
        FbBpp        32
        Modes        "1024x720" "1124x644"
    EndSubSection

    SubSection "Display"
        Depth        15
        Modes        "1024x720" "1024x768" "800x600" "640x480"
    EndSubSection

    SubSection "Display"
        Depth        16
        Modes        "576x384" "1024x768" "800x600" "640x480"
    EndSubSection

EndSection
Section "ServerLayout"
    Identifier    "Default Layout"
    Screen        "Default Screen"
    InputDevice    "Generic Keyboard"
    InputDevice    "Configured Mouse"
EndSection

Section "ServerFlags"
        Option  "AllowMouseOpenFail"
EndSection


Section "DRI"
    Mode    0666


and this is what xorg tells me:

Code:
VDR:/home/georg# xinit -e vdr-sxfe --video=xv --aspect=16:9 --fullscreen --width=1280 --height=720 --post=tvtime:method=Linear,cheap_mode=1,pulldown=0,use_progressive_frame_flag=1 xvdr+tcp://127.0.0.1

X: warning; process set to priority -1 instead of requested priority 0

X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.2-10)
Current Operating System: Linux Panzerwels 2.6.29-ps3.1 #2 SMP Tue Mar 24 13:08:55 CET 2009 ppc64
Build Date: 09 January 2009  03:09:36AM

        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Thu Mar 26 13:25:13 2009
(==) Using config file: "/etc/X11/xorg.conf"
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:          Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
>                   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:          Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
>                   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
Could not init font path element /usr/share/fonts/X11/cyrillic, removing from list!
[config/hal] couldn't initialise context: (null) ((null))
spu_yuv2argb_scaler: Starting Up


I found out type1 is obsolete, right? So I commented it out to not cause another error... (not found)

So how come? Any ideas anybody?

Thank you!

Greets GT-Schorsch
Back to top
View user's profile Send private message Visit poster's website
MaLDiTo_TeXuGo



Joined: 07 Nov 2009
Posts: 7

PostPosted: Sat Nov 07, 2009 7:24 am    Post subject: Error when configure xf86-spu Reply with quote

I gotta a problem compiling xf86-video-spu:
I downloaded from here:
svn co https://spu-medialib.svn.sourceforge.net/svnroot/spu-medialib spu-medialib

I enter the directory:
cd spu-medialib/trunk/xf86-video-spu
sudo autoreconf -if
sudo ./configure --prefix /usr

Then I got the error:
./configure: line 11878: syntax error near unexpected token `RANDR,'
./configure: line 11878: `XORG_DRIVER_CHECK_EXT(RANDR, randrproto)'

Any ideas? Do I have to install a toolchain or somethin?

BTW, I installed the speutils and spu-medialib and run the tile_effects example, sweet!
Unsolo, you r a genious!
Back to top
View user's profile Send private message
MaLDiTo_TeXuGo



Joined: 07 Nov 2009
Posts: 7

PostPosted: Sat Nov 07, 2009 7:51 am    Post subject: Problem solved... Reply with quote

My bad,
I google one more time and find that you have to install X Development modules.
On Ubuntu type:
apt-get install xorg-dev

Now I will modify xorg.conf and try.
Cross fingers!!!
Back to top
View user's profile Send private message
MaLDiTo_TeXuGo



Joined: 07 Nov 2009
Posts: 7

PostPosted: Sat Nov 07, 2009 8:57 am    Post subject: Cannot find libtiles.la Reply with quote

Im stuck again,
I was trying to compile:
sudo make
But the following appears:
make all-recursive
make[1]: Entering directory `/home/xonda/Desktop/xf86-video-spu/spu-medialib/trunk/xf86-video-spu'
Making all in man
make[2]: Entering directory `/home/xonda/Desktop/xf86-video-spu/spu-medialib/trunk/xf86-video-spu/man'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/xonda/Desktop/xf86-video-spu/spu-medialib/trunk/xf86-video-spu/man'
Making all in src
make[2]: Entering directory `/home/xonda/Desktop/xf86-video-spu/spu-medialib/trunk/xf86-video-spu/src'
/bin/bash ../libtool --tag=CC --mode=link gcc -I/usr/include/xorg -I/usr/include/pixman-1 -g -O2 -module -avoid-version -o spu_fbdev_drv.la -rpath /usr/lib/lib/xorg/modules/drivers spu_fbdev.lo spu_video.lo -lspu-medialib -lspe2 -lrt -lpthread
/bin/grep: /usr/local/lib/libtiles.la: No such file or directory
/bin/sed: can't read /usr/local/lib/libtiles.la: No such file or directory
libtool: link: `/usr/local/lib/libtiles.la' is not a valid libtool archive
make[2]: *** [spu_fbdev_drv.la] Error 1
make[2]: Leaving directory `/home/xonda/Desktop/xf86-video-spu/spu-medialib/trunk/xf86-video-spu/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/xonda/Desktop/xf86-video-spu/spu-medialib/trunk/xf86-video-spu'
make: *** [all] Error 2

Its searching for libtiles.la on /usr/local/lib, but it is in /usr/lib.
I dont know whatelse to do.
Does anyone know how can I compile and install the xf86-video-spu?
Back to top
View user's profile Send private message
MaLDiTo_TeXuGo



Joined: 07 Nov 2009
Posts: 7

PostPosted: Mon Nov 09, 2009 10:59 am    Post subject: Reply with quote

Well,
I compiled the xf86-video-spu, make && make install but...
When I try to init X environment, I get this:

(II) LoadModule: "spufbdev"
(II) Loading /usr/lib/xorg/modules/drivers//spufbdev_drv.so
(EE) LoadModule: Module spufbdev does not have a spufbdevModuleData data object.
(II) UnloadModule: "spufbdev"
(II) Unloading /usr/lib/xorg/modules/drivers//spufbdev_drv.so
(EE) Failed to load module "spufbdev" (invalid module, 0)
(EE) No drivers available.

Any ideas?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> spu-medialib All times are GMT + 10 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group