Playstation Portable (PSP)
From NAS-Central Buffalo - The Linkstation Wiki
(New page: {{Articles|Mediaserver}} right ===Nethostfs=== Using iR Shell 3.61 and CFW 3.52 m33-2 Nethostfs offers PC files to your PSP via infrastructure (or adhoc) WiFi. In order...) |
(→Nethostfs) |
||
| Line 14: | Line 14: | ||
get this version from here: http://aabb6467.hp.infoseek.co.jp/pspfiles/nethostfs_kurobox.zip | get this version from here: http://aabb6467.hp.infoseek.co.jp/pspfiles/nethostfs_kurobox.zip | ||
| - | + | Note: this is the ppc version, I'm not sure if you can't just 'make' the mips one and it work | |
Using nethostfs you can stream movies, music and more straight to your PSP. Convenient for 'backed-up' games. | Using nethostfs you can stream movies, music and more straight to your PSP. Convenient for 'backed-up' games. | ||
Revision as of 15:50, 30 August 2007
[[Image:<...>|right]]
Contents |
Nethostfs
Using iR Shell 3.61 and CFW 3.52 m33-2
Nethostfs offers PC files to your PSP via infrastructure (or adhoc) WiFi. In order for this function to work with an infrastructure network you need a properly working WiFi connection already setup in the Sony XMB. The next step is to set the server IP (your PC's local IP) in the iR Shell configurator.
Nethostfs
get this version from here: http://aabb6467.hp.infoseek.co.jp/pspfiles/nethostfs_kurobox.zip
Note: this is the ppc version, I'm not sure if you can't just 'make' the mips one and it work Using nethostfs you can stream movies, music and more straight to your PSP. Convenient for 'backed-up' games.
Features
- Network Streaming
Running nethostfs
To run nethostfs you will need to have a custom firmware (3.52 m33-2 is the latest at time of writing that works with iR Shell 3.61)
Installing nethostfs
This is the server that will allow the PSP to connect to your Linkstation. You can download the source code and patch required from this Japenese guys blog HERE. The source code will compile but not work (due to Big Endian?), so there's a patch too. Fortunately there is a pre-compiled binary in there that just works, so:
cd /tmp wget http://aabb6467.hp.infoseek.co.jp/pspfiles/nethostfs_kurobox.zip unzip nethostfs_kurobox.zip cd nethostfs_kurobox cp nethostfs /usr/bin
I've then just got a script to start it at boot.
pico /etc/init.d/nethostfs
Copy this to it:
#!/bin/sh
#
PATH=/usr/sbin:/usr/bin:/bin:${PATH}
export PATH
NETHOSTFS='/usr/bin/nethostfs'
PORT='7513'
case "$1" in
start)
echo -n "Starting nethostfs: "
$NETHOSTFS -p $PORT /mnt/share/PSPGames &
echo "done"
sleep 1
;;
stop)
echo -n "Shutting down nethostfs: "
$NETHOSTFS -p $PORT poweroff &
-- Or: kill `getpid $NETHOSTFS`
killall nethostfs
sleep 1
echo "done"
;;
restart)
echo -n "Restarting nethostfs: "
$0 stop
sleep 1
$0 start
;;
status)
echo "Status of nethostfs: "
ps auxw|grep nethostfs
;;
*)
echo "Usage: nethostfs {start|stop|restart|status}"
exit 1
esac
exit 0
Then link it:
cd /etc/rc2.d && ln -s /etc/init.d/nethostfs S99ps2client
cd /etc/rc6.d && ln -s /etc/init.d/nethostfs K99ps2client
cd /etc/rc0.d && ln -s /etc/init.d/nethostfs K99ps2client

