Hmm. I remember something about the wifi vaguely from another thread.
is it the supplicant failing?
Quote:
# Wait for the driver to be loaded, otherwise the supplicant exits
# because of failing ioctl() calls.
i=0
while [ $i -lt 10 ]; do
# Check to see if the driver is ready
if is_wlan0_ready; then
wmiconfig -i wlan0 --setdbglogconfig --mmask=0xffff
break
else
sleep 2
fi
i=$(($i + 1))
done
[ $i -lt 10 ] # Exit with error if we timed out
end script
exec $SUP -t -c /etc/$SUP.conf -i $IF -d -s $ARGS
|