wifi-reload: Refactored as functions.
This commit is contained in:
parent
eb3c995426
commit
0621b812ce
|
@ -51,26 +51,43 @@ B<bash>(1)
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
modules="iwl4965 iwl3945 iwldvm ath9k ath9k_common ath9k_hw ath ath3k brcmfmac rt73usb rt2x00lib cfg80211 mac80211"
|
modules="rt2500usb iwl4965 iwl3945 iwldvm ath9k ath9k_common ath9k_hw ath ath3k brcmfmac rt73usb rt2x00lib cfg80211 mac80211"
|
||||||
|
|
||||||
sudo killall wpa_supplicant
|
stop() {
|
||||||
sudo parallel -j0 --delay 0.03 --retries 50 modprobe -r ::: $modules
|
sudo killall wpa_supplicant
|
||||||
sudo killall -9 wpa_supplicant
|
PID=$(sudo NetworkManager 2>&1 | grep -Eo '[0-9]+')
|
||||||
parallel -j1 sudo modprobe ::: $modules
|
sudo kill $PID || sudo killall NetworkManager
|
||||||
sudo rfkill unblock all
|
sudo parallel -j1 --delay 0.03 --retries 50 modprobe -r ::: $modules
|
||||||
PID=$(sudo NetworkManager 2>&1 | grep -Eo '[0-9]+')
|
killall nm-applet || killall -9 nm-applet
|
||||||
sudo kill $PID || sudo killall NetworkManager
|
sudo killall -9 wpa_supplicant
|
||||||
sleep 1
|
sudo kill -9 $PID || sudo killall -9 NetworkManager
|
||||||
sudo kill -9 $PID
|
}
|
||||||
#sudo NetworkManager &
|
|
||||||
|
|
||||||
|
start() {
|
||||||
|
parallel -j1 sudo modprobe ::: $modules
|
||||||
|
sudo rfkill unblock all
|
||||||
|
sleep 1
|
||||||
|
#sudo service network-manager start
|
||||||
|
sudo NetworkManager &
|
||||||
|
#sudo /etc/init.d/network-manager restart
|
||||||
|
#sudo /etc/init.d/network-manager start
|
||||||
|
nm-applet 2>/dev/null &
|
||||||
|
}
|
||||||
|
|
||||||
|
config() {
|
||||||
|
IF=$1
|
||||||
|
sudo bash -c 'cat >> /etc/resolv.conf' < /etc/resolvconf/resolv.conf.d/head
|
||||||
|
#sudo iwconfig wls1 essid Turris
|
||||||
|
#sudo iwconfig wls1 essid Leif
|
||||||
|
sudo dhclient $IF &
|
||||||
|
sudo wpa_supplicant -Dwext -c/etc/wpa_supplicant.conf -i$IF -d &
|
||||||
|
}
|
||||||
|
|
||||||
|
stop
|
||||||
|
start
|
||||||
if tty -s ; then
|
if tty -s ; then
|
||||||
# STDIN is terminal
|
# STDIN is terminal
|
||||||
timeout 12 dmesg -Tw
|
true timeout 12 dmesg -Tw &
|
||||||
# timeout 12 forever dmesg | puniq
|
|
||||||
fi
|
fi
|
||||||
|
#config wlp3s0
|
||||||
#sudo bash -c 'cat >> /etc/resolv.conf' < /etc/resolvconf/resolv.conf.d/head
|
#config wlx0016e63a51cb
|
||||||
#sudo iwconfig wls1 essid Turris
|
|
||||||
#sudo dhclient wls1 &
|
|
||||||
#sudo wpa_supplicant -Dwext -c/etc/wpa_supplicant.conf -iwls1 -d &
|
|
||||||
|
|
Loading…
Reference in a new issue