
Untitled
By: a guest on
Aug 12th, 2012 | syntax:
None | size: 1.66 KB | hits: 5 | expires: Never
ps3rsx support tested on debian sid with glevand's 2.6.39-ga81e0a7-dirty:
#########################################################################
(as root)
apt-get install xserver-xorg-dev
you must have this tree in order to build (with this build 2.6.39-xxxxxx-dirty) (make sure you move linux-2.6 to /usr/src/linux-2.6)
also it seems that the module will only insert with the running kernel of the /usr/src/linux-2.6 tree that it was built with
so if /usr/src/linux-2.6 is currently 2.6.39-gaxxx and you are using 2.6.39-g27xxxxx make sure your tree matches your currently
running kernel or you will have serious compile and module to kernel mismatches
cd /usr/src
git clone --depth=1 git://git.gitbrew.org/ps3/ps3linux/linux-2.6.git
cd linux-2.6
make -j2
make install
make modules_install
*reboot to new kernel you just built
cd /root
git clone http://mandos.homelinux.org/~glaurung/git/ps3rsx.git/
cd ps3rsx
cd /lib/modules/2.6.39-xxxxxxxxxxx-dirty/kernel/drivers/ps3 ## replace xxxxxxxxxxx with the right directory you are using
cp /root/ps3rsx/ps3rsx.ko .
insmod ps3rsx.ko
cd /root
wget ftp://ftp.gx-mod.com/ps3/console/OS/ubuntu/ps3rsx-drivers/ps3rsx-1.0-1-2.6.23rc7.deb
mkdir ps3-x-drv
dpkg -x ps3*.deb /ps3-x-drv
cd /root/ps3-x-drv/usr/lib/xorg/modules/drivers
cp * /usr/lib/xorg/modules/drivers/
cd /root/ps3-x-drv/usr/share/doc/ps3rsx
mkdir /usr/share/doc/ps3rsx
cp * /usr/share/doc/ps3rsx/
###adjust X11 xorg.conf change
Driver "fbdev"
###to
Driver "ps3"
###add
Section "Extensions"
Option "Composite" Enable"
EndSection