Search found 6 matches

by iggyCeltic
Mon Nov 14, 2011 3:50 pm
Forum: Wifi Radio Project / Hacking the Asus WL-520gU
Topic: Anybody get the 520gU wireless (B43) to work with 2.6 kernel
Replies: 26
Views: 67050

Re: Anybody get the 520gU wireless (B43) to work with 2.6 ke

cat /etc/config/network #### VLAN configuration config switch eth0 option vlan0 "1 2 3 4 5*" option vlan1 "0 5" #### Loopback configuration config interface loopback option ifname "lo" option proto static option ipaddr 127.0.0.1 option netmask 255.0.0.0 #### LAN config...
by iggyCeltic
Fri Nov 11, 2011 10:33 am
Forum: Wifi Radio Project / Hacking the Asus WL-520gU
Topic: Anybody get the 520gU wireless (B43) to work with 2.6 kernel
Replies: 26
Views: 67050

Re: Anybody get the 520gU wireless (B43) to work with 2.6 ke

I got mine to work with the following setup in the /etc/config/wireless file.

Code: Select all

config 'wifi-iface'
	option 'device' 'wl0'
	option 'network' 'lan'
	option 'mode' 'sta'
	option 'ssid' 'SSID'
	option 'encryption' 'mixed-psk+tkip'
	option 'key'  'PASSWORD'
Not sure about your other error yet.
by iggyCeltic
Thu Nov 10, 2011 4:13 pm
Forum: Wifi Radio Project / Hacking the Asus WL-520gU
Topic: LastFM Support
Replies: 5
Views: 13478

Re: LastFM Support

First post updated with working code. If you use it let me know if you had to make any tweaks to it or any suggestions for updates. Currently I am looking for a way to be able to change the station on the fly. Also need it to scrobble the actual plays to last.fm. Figured I would share the success so...
by iggyCeltic
Tue Nov 08, 2011 10:47 am
Forum: Wifi Radio Project / Hacking the Asus WL-520gU
Topic: LastFM Support
Replies: 5
Views: 13478

Re: LastFM Support

Got the following working with bash not on the router. Looks like there is something that I am forgetting between switching from bash to ash. Any tips? Fixed that issue. Slight issue with calculating song durations (Last.fm duration tag isn't correct). Once I get that issue fixed will post the resu...
by iggyCeltic
Mon Nov 07, 2011 3:49 pm
Forum: Wifi Radio Project / Hacking the Asus WL-520gU
Topic: LastFM Support
Replies: 5
Views: 13478

Re: LastFM Support

If I can't get anything else working, that might be the route that I have to take. But currently want to try to get everything self contained on one machine. Especially since I know that once I get it done I will have someone request that I build one for them and don't want to force someone else to ...
by iggyCeltic
Sun Nov 06, 2011 7:53 pm
Forum: Wifi Radio Project / Hacking the Asus WL-520gU
Topic: LastFM Support
Replies: 5
Views: 13478

LastFM Support

Using the WebService::LastFM CPAN module I have been able to get URLs that working with mpd to stream last.fm playlists. Issue I am running into is that I have to copy the next track url into mpc after every song. Tried to PAR package the perl script that I have to play on my laptop, but the space ...