ubuntu-eee-coders team mailing list archive
-
ubuntu-eee-coders team
-
Mailing list archive
-
Message #00965
Re: [Question #45813]: Wireless always on
Question #45813 on Ubuntu Eee changed:
https://answers.launchpad.net/ubuntu-eee/+question/45813
Status: Open => Solved
RWindsor confirmed that the question is solved:
Okay, really weird. I commented out the lines for modprobe and ifconfig
and now it works perfectly. Final code was
---------------------------------------------
#!/bin/sh
wlan_control=/proc/acpi/asus/wlan
WLANSTATE=$(cat $wlan_control)
case $WLANSTATE in
0)
echo 0 > $wlan_control
;;
1)
echo 1 > $wlan_control
;;
esac
--------------------------------------------
I'm not sure if the wlan/wlan_control does more than turn the device on
and the LED, maybe modprobe it for you, but this seems to work for me.
If this works for anyone else I'd like to hear it.
--
You received this question notification because you are a member of
Ubuntu Eee Coders, which is an answer contact for Ubuntu Eee.