Is this in /etc/conf.d/net the best way to set txpower automatically? postup also executes after net.lo and net.eth0 but I don't think it will actually execute the iwconfig command unless it's net.wlan0.
postup() {
if [[ ${IFACE} == "wlan0" ]] ; then
iwconfig wlan0 txpower 0
fi
return 0
}
- Grant

