Editing WLAN Access Point with PS3 Jupiter
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
=Introduction= | =Introduction= | ||
* WLAN AP driver for PS3 Jupiter (slim only) | * WLAN AP driver for PS3 Jupiter (slim only) | ||
=Features= | =Features= | ||
Line 9: | Line 7: | ||
* 802.11bg support | * 802.11bg support | ||
* Wireless Extension interface | * Wireless Extension interface | ||
* | * WEP, WPA1 and WPA2 support (not yet implemented) | ||
=PS3 Jupiter Driver= | =PS3 Jupiter Driver= | ||
Line 18: | Line 16: | ||
* You can compile it on PS3 Linux or cross-compile on a Linux PC | * You can compile it on PS3 Linux or cross-compile on a Linux PC | ||
<pre> | <pre> | ||
git clone git://gitorious.ps3dev.net/ps3linux/ps3jupiter.git | git clone git://gitorious.ps3dev.net/ps3linux/ps3jupiter.git | ||
cd ps3jupiter | cd ps3jupiter | ||
make KSRC_DIR=/home/glevand/kernel/linux-3.5. | make KSRC_DIR=/home/glevand/kernel/linux-3.5.3 ARCH=powerpc CROSS_COMPILE=powerpc64-linux- | ||
</pre> | </pre> | ||
Line 35: | Line 32: | ||
insmod ./ps3_jupiter.ko | insmod ./ps3_jupiter.ko | ||
insmod ./ps3_jupiter_ap.ko | insmod ./ps3_jupiter_ap.ko | ||
# Configure channel and SSID | # Configure channel and SSID | ||
Line 44: | Line 37: | ||
iwconfig wlan1 channel 6 | iwconfig wlan1 channel 6 | ||
iwconfig wlan1 essid wlan_rockz | iwconfig wlan1 essid wlan_rockz | ||
ifconfig wlan1 192.168.201.200 | ifconfig wlan1 192.168.201.200 | ||
Line 59: | Line 44: | ||
# Connect to the AP with a PC client and try to ping your AP | # Connect to the AP with a PC client and try to ping your AP | ||
</pre> | </pre> | ||
=Future Work= | =Future Work= | ||