EDIT:
Try:
ndiswrapper -m
this should add ndiswrapper to startup if it isn't already
or just add ndiswrapper on its own line in /etc/modules
-and-
edit /etc/network/interfaces and add this:
iface eth0 inet dhcp
auto eth0
iface wlan0 inet dhcp
wireless-essid MYESSID
wireless-key MYWEPKEY
auto wlan0
If this doesn't work, try what i put below.
______________________________________________
Well, a easy solution would be to make a script do it on startup. Create a file in /etc/init.d, with any filename you want. In the file, put this down:
Code:
#!/bin/bash
iwconfig wlan0 essid YOURESSID
iwconfig wlan0 key WIRELESSKEY
dhcpcd wlan0
This should fix the problem of it not rembering your settings. It will reset it on bootup. I will try to see if there is another solution.
I am glad it worked mostly