Thank you for this we will look into it.
We were actually able to get it working for the default driver in the kernel. For anyone else using this card this is what boundary devices sent us and what we did.
"
You can unblock wlan by typing “rfkill unblock wlan”. Then use wpa_supplicant to connect to your WAP.
I edited /etc/wpa_supplicant.conf to have:
network={
ssid=”My wireless SSID”
psk=”my WPA password”
}
Then I “killall wpa_supplicant”
Then start “wpa_supplicant -B -iwlan0 -c/etc/wpa_supplicant.conf -Dnl80211″
Then I just statically set my IP and routes and the such. I was able to ping my machine from my Nitrogen6x over my wireless.
For convenience you can script this in one of the boot scripts so its all automatic. Let me know if you have any other questions
-Ian"
What we now do is the following
$ rfkill unblock wlan
$ ifconfig wlan0 up
$ wpa_passphrase essid passphrase
This returns;
network={
ssid=”My wireless SSID”
psk=”my WPA password”
}
Edit the wpa_supplicant.conf file with the info that the wpa_passphrase returns. we also add a few extra commands in the wpa_sufflicant.conf file so our file looks like the following.
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
update_config=1
network={
ssid="essid"
#psk="my passphrase"
psk=Hex number returned by wpa_passphrase
scan_ssid=1
proto=WPA RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
}
Then we run the following commands;
$ killall wpa_supplicant
$ wpa_supplicant -B -iwlan0 -c/etc/wpa_supplicant.conf -Dnl80211
$ udhcpc -i wlan0
Now we were able to ping google and other sites.