mirror of
https://github.com/RobotechLille/cdf2018-principal
synced 2024-11-14 20:36:03 +01:00
38 lines
405 B
Bash
Executable file
38 lines
405 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Connect to Wi-Fi network
|
|
#
|
|
|
|
start() {
|
|
printf "Starting Wi-Fi connection: "
|
|
# modprobe brcmfmac
|
|
modprobe rtl8xxxu
|
|
modprobe ar5523
|
|
ifup wlan0
|
|
echo "OK"
|
|
}
|
|
|
|
stop() {
|
|
printf "Stopping Wi-Fi connection: "
|
|
ifdown wlan0
|
|
echo "OK"
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
stop
|
|
start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|