1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-09-28 16:23:04 +02:00
cdf2018-principal/raspberrypi/board/robotech/cdfprincipal/rootfs_overlay/etc/extra.d/S40wifi
Geoffrey Frogeye 8f396be8cf Dongle Wi-Fi AR5523
Se déconnecte tout le temps, à tester avec buildroot 2018.2
2018-05-04 16:41:38 +02:00

39 lines
421 B
Bash
Executable file

#!/bin/sh
#
# Connect to Wi-Fi network
#
start() {
printf "Starting Wi-Fi connection: "
# modprobe brcmfmac
modprobe r8188eu
modprobe 8192cu
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 $?