I successfully upgraded to the latest test of hentges rom on my SL-5500.
all seems fine with that.
But I can't seem to get my socket LP wifi CF card to connect.
I've set up /etc/network/interfaces as directed by a previous post here about WPA, and edited wpa_supplicant as appropriate.
Am using WPA with TKIP encryption via a Linksys WRT54GC.
I created also /etc/default/wpa and added WPA_ENABLE=true to it, as well as putting wpa_supplicant.sh in /etc/init.d/ as suggested in a previous post.
# Wired or wireless interfaces
iface eth0 inet static
    up /etc/init.d/wpa_supplicant.sh start
    down /etc/init.d/wpa_supplicant.sh stop
    down changedns -r  192.168.0.1 
    up changedns -a  192.168.0.1 
    address 192.168.0.156
    netmask 255.255.255.0
    network 192.168.0.0
    gateway 192.168.0.1Above is what the entry in my /etc/network/interfaces has.
# This is a basic configuration for WPA with pre-shared keys (WPA-PSK)
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=1
ap_scan=1
network={
    ssid="****"
    scan_ssid=1
    proto=WPA
    key_mgmt=WPA-PSK
    pairwise=TKIP
    group=TKIP
    psk="*********"
    priority=0
}
Above is the wpa_supplicant.conf contents.
Any thoughts?
Thanks,
Kelly