Advertisement
Guest User

Untitled

a guest
Sep 1st, 2011
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. ps3rsx support tested on debian sid with glevand's 2.6.39-ga81e0a7-dirty:
  2. #########################################################################
  3. (as root)
  4.  
  5.  
  6. apt-get install xserver-xorg-dev
  7.  
  8.  
  9. 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)
  10. 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
  11. 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
  12. running kernel or you will have serious compile and module to kernel mismatches
  13.  
  14.  
  15.  
  16. cd /usr/src
  17.  
  18. git clone --depth=1 git://git.gitbrew.org/ps3/ps3linux/linux-2.6.git
  19.  
  20. cd linux-2.6
  21.  
  22. make -j2
  23.  
  24. make install
  25.  
  26. make modules_install
  27.  
  28. *reboot to new kernel you just built
  29.  
  30. cd /root
  31.  
  32. git clone http://mandos.homelinux.org/~glaurung/git/ps3rsx.git/
  33.  
  34. cd ps3rsx
  35.  
  36.  
  37.  
  38. cd /lib/modules/2.6.39-xxxxxxxxxxx-dirty/kernel/drivers/ps3 ## replace xxxxxxxxxxx with the right directory you are using
  39.  
  40. cp /root/ps3rsx/ps3rsx.ko .
  41.  
  42. insmod ps3rsx.ko
  43.  
  44.  
  45. cd /root
  46.  
  47. wget ftp://ftp.gx-mod.com/ps3/console/OS/ubuntu/ps3rsx-drivers/ps3rsx-1.0-1-2.6.23rc7.deb
  48.  
  49. mkdir ps3-x-drv
  50.  
  51. dpkg -x ps3*.deb /ps3-x-drv
  52.  
  53.  
  54.  
  55. cd /root/ps3-x-drv/usr/lib/xorg/modules/drivers
  56.  
  57. cp * /usr/lib/xorg/modules/drivers/
  58.  
  59. cd /root/ps3-x-drv/usr/share/doc/ps3rsx
  60.  
  61. mkdir /usr/share/doc/ps3rsx
  62.  
  63. cp * /usr/share/doc/ps3rsx/
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80. ###adjust X11 xorg.conf change
  81.  
  82. Driver "fbdev"
  83.  
  84. ###to
  85.  
  86. Driver "ps3"
  87.  
  88. ###add
  89.  
  90. Section "Extensions"
  91. Option "Composite" Enable"
  92. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement